/* Estilos del contenedor */
.container {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    max-width: 500px;
}

/* Estilos del label */
label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

/* Estilos del input range */
input[type="range"] {
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
    border: none;
}

/* Estilos de la imagen */
#miImagen {
    width: 1px;
    height: 1px;
    display: block;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
