
.range-container {
    width: 80%;
    margin: 40px auto;
    position: relative;
    display: none;
}

.values-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #333;
}

.slider-track {
    position: absolute;
    top: 50px; /* Ajustar posición vertical de la barra resaltada */
    height: 5px;
    background: #ccc;
    width: 100%;
    border-radius: 5px;
}

input[type="range"] {
 
    width: 100%;
    background: transparent;
    position: absolute;
    top: 45px; /* Superponer los inputs sobre el track */
    pointer-events: none; /* Permite hacer clic "a través" de la parte no arrastrable */
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: all; /* Permite arrastrar el pulgar */
}

#min-range{
    display: none;
}