/* Thin Slider Design */
#ageSlider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
    outline: none;
    margin: 20px 0;
}

#ageSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #5C54A0;
    /* Project Primary Color */
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

#ageSlider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 6px rgba(92, 84, 160, 0.2);
}

/* Markers Style */
.age-markers {
    display: flex;
    justify-content: space-between;
    padding: 0 7px;
    margin-top: -30px;
    pointer-events: none;
}

.marker {
    width: 1px;
    height: 4px;
    background: #d1d5db;
}

/* Age Filter Header Styling */
#btnAgeToggle {
    transition: all 0.2s;
}

#btnAgeToggle:hover {
    opacity: 0.8;
}

#iconAgeReset {
    font-size: 10px;
    color: #8c85c7;
}

#btnAgeToggle:hover #iconAgeReset {
    color: #5C54A0;
}