/* Advanced filters styling */
.advanced-filters-container {
    margin-top: 20px;
    border-top: 1px solid #e5e5e5;
    padding-top: 10px;
}

.advanced-filters-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    font-weight: 600;
    color: #333;
}

.advanced-filters-toggle:hover {
    color: #0073aa;
}

.advanced-filters-label {
    font-size: 16px;
}

.advanced-filters-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
}

.advanced-filters-icon svg {
    width: 100%;
    height: 100%;
}

.advanced-filters-content.hidden {
    display: none;
}

.advanced-filters-content {
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

/* Highlight important filters */
.important-filter .filter-header {
    font-weight: bold;
}

/* Style differences between important and extra filters */
.extra-filter {
    opacity: 0.9;
}

.filter-container {
    margin-bottom: 10px;
}