.survey-question { 
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
}

input[type="range"] { 
    width: 100%; 
    background:var(--primary-color);
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

input[type="range"]:hover {
    opacity: 1;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background:var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background:var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
}

#results { 
    display: none; 
    background-color: #e9ecef; 
    padding: 25px;
}

@media print {
    body * { visibility: hidden; }
    #results, #results * { visibility: visible; }
    #results { 
        position: absolute; 
        left: 0; 
        top: 0; 
        width: 100%; 
    }
}
