/* Browse page specific styles */

/* Age range select styling for browse page */
.browse-age-select {
    background: white !important;
    color: black !important;
    border: 2px solid #ddd !important;
}

.browse-age-select option {
    background: white !important;
    color: black !important;
}

.distance-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.distance-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.distance-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
}

.distance-display {
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
    color: var(--primary);
}