
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #33cccc, #33cccc);
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

input[type="range"]:hover {
    opacity: 1;
}

/* Thumb/handle styling */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background-color: white;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #33cccc;
    cursor: pointer;
}

/* Distance value styling */
#distance-value {
    font-size: 20px;
    color: white;
    margin-top: 15px;
}
#distance-value:after {
    content: ' km';
}

/* Distance value styling */
#distance-value_Adress{
    font-size: 20px;
    color: white;
    margin-top: 15px;
}
#distance-value_Adress:after {
    content: ' km';
}
