.range-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0px;
    font-family: Arial, sans-serif;
}

/*label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}*/

.range-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 200px;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #2a7aa7;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

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

.value-display {
    font-size: 16px;
    font-weight: bold;
    color: #2a7aa7;
}

/* quitar borde */
#miscWeightDetail {
    border: none;
    padding: 7px;
}

.market-variation-type {
    display: flex;
    flex-direction: column; /* fuerza que los hijos se apilen verticalmente */
}

.market-variation-type small {
    font-size: .8em;  /* opcional: tamaño más pequeño */
    color: #666;          /* opcional: color gris tenue */
    margin-top: 2px;      /* separa del strong */
}


