/* Slider Track Styling */
.colored-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, #C8DBFC, #E4CCE3, #FFBECA);
    border-radius: 5px;
    outline: none;
    transition: background 0.15s ease-in-out;
}

.colored-slider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #C8DBFC, #E4CCE3, #FFBECA);
}

.colored-slider::-moz-range-track {
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #C8DBFC, #E4CCE3, #FFBECA);
}

/* Slider Thumb Styling */
.colored-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background-color: #4CAF50;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ffffff;
}

.colored-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background-color: #4CAF50;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ffffff;
}

/* Style for Displaying the Slider Value */
.slider-value {
    font-weight: bold;
    color: #333;
    margin-left: 10px;
}
.form-range::-webkit-slider-thumb {
    background: #fff !important;
    border: solid 3px #000 !important;
}