.owner-dropdown {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
    border-color: white;
    font-size: 12px;
    font-family: GothamRounded-Book !important;
}

.filter-sidebar {
    width: 250px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 35px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    right: 3%;
    background-color: #fff;
    overflow-y: auto;
    z-index: 999999;
}

.filter-header {
    background-color: #f0f0f0;
    padding: 10px 20px;
    margin-top: 0.5 rem;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
}

.filter-body {
    padding: 0px 20px 20px 20px;
}

.filter-sidebar .form-group {
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 1px solid rgba(217, 217, 217, 1);
}

/* Pour le premier groupe de formulaire, supprimer la bordure du haut */
.filter-sidebar .form-group:nth-child(-n + 2) {
    padding-top: 0;
    border-top: none;
}

.filter-sidebar .form-group label {
    font-family: GothamRounded-Book !important;
}

.filter-sidebar h5 {
    font-size: 15px;
    margin: 0;
}

.filter-sidebar .apply-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background: rgba(109, 144, 142, 1);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    margin-top: 20px;
}

.filter-sidebar .apply-btn:hover {
    background-color: #799595;
}

.filter-sidebar .close-btn {
    font-size: 18px;
    cursor: pointer;
}

.filter-sidebar .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-sidebar .section-title span {
    font-size: 13px;
}

.filter-sidebar .section-title .toggle-icon {
    font-size: 18px;
}

.filter-sidebar .section-content {
    display: none;
}

.filter-sidebar .section-content.active {
    display: block;
}

.filter-sidebar .section-content label {
    font-size: 12px;
}

.filter-sidebar .section-title .toggle-icon {
    transition: transform 0.3s;
}

.filter-sidebar .section-title.active .toggle-icon {
    transform: rotate(180deg);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.filter-tag {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 40px;
    color: white;
    background-color: #8aa5a5;
    font-family: GothamRounded-Book !important;
    font-size: 12px;
    cursor: pointer;
}

.clear-all {
    background: rgba(16, 40, 55, 1);
}

.clear-all span {
    text-decoration: underline;
}

.pagination-prev.disabled {
    display: none;
}