.custom-slider-container {
    width: 100%;
    padding: 2rem;
    margin: 2rem 0;
}

.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    /* We'll update this color once you confirm the blue */
    background: linear-gradient(to right, #A0D0CB 0%, #A0D0CB 50%, #e0e0e0 50%, #e0e0e0 100%);
    outline: none;
    transition: all 0.3s ease-in-out;
    margin-bottom: 2rem;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    /* Update border color to match the blue */
    border: 2px solid #A0D0CB;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 0 12px;
}

.slider-label {
    text-align: center;
    font-size: 0.9rem;
    /* Updated to a neutral grey color */
    color: #ffffff;
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 0.5rem 0;
    width: 20%;
    font-weight: normal !important; /* Ensure text is never bold */
}

/* Text alignment for specific positions */
.slider-label[data-value="1"],
.slider-label[data-value="2"] {
    text-align: left;
}

.slider-label[data-value="3"] {
    text-align: center;
}

.slider-label[data-value="4"],
.slider-label[data-value="5"] {
    text-align: right;
}

.slider-label.active {
    color: #ffffff; /* Keep the same grey color */
    font-weight: bold;
    background: none;
}

/* Remove the markers section completely */
.slider-markers {
    display: none;
}