.category-filter {
    padding: 0.6rem;
    margin: 3rem;
    border: 1px solid black;
    border-radius: 35px;
}
.category-dropdowns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    font-size: 1.75rem;
}
.custom-dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-btn {
    background-color: white;
    color: #818893;
    padding: 10px;
    border: 1px solid #D9D9D9;
    border-radius: 32px;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
}
.dropdown-btn:after{
    font-family: "FontAwesome";
    content: " \f078";
}
.dropdownshow {
    color: black !important;
}
.dropdown-btn.dropdownshow:after {
    font-family: "FontAwesome";
    content: " \f077" !important;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px; 
    border: 1px solid #ddd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 10;
}
.dropdown-content label {
    display: block;
    padding: 5px;
    cursor: pointer;
}
.dropdown-content label:hover {
    background-color: #f1f1f1;
}
.show {
    display: block;
}
#filter-btn {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 35px;
    padding: 10px 15px;
    cursor: pointer;
    margin-left: 10px;
}
#load-more-btn {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background: #37B34A;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}
#load-more-btn:after {
    font-family: "FontAwesome";
    content: " \f078";
    margin-left: 1rem;
    padding: 0.2rem;
}
.progression {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 3rem 0;
}
.progress-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    height: 3px;
    background: #ddd;
    margin: 10px 0;
    position: relative;
}
#progress-indicator {
    height: 150%;
    background: black;
    width: 0%;
    border-radius: 3px;
}
#post-counter {
    text-align: center;
}
.totalpage {
    color: #ddd;
}

@media screen and (min-width: 768px) {
    .category-dropdowns {
            display: flex;
            flex-direction: row;
            gap: 10px;
            justify-content: flex-end;
            font-size: 1rem;
        }
}
