#jobSatisfactionCalculatorWrapper {
    max-width: 600px; /* Maximum width of the calculator */
    margin: 0 auto; /* Centers the calculator */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: Adds shadow for better visibility */
}

#jobSatisfactionCalculator input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    transition: opacity .2s;
}

#jobSatisfactionCalculator input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #0C2372;
    cursor: pointer;
}

#jobSatisfactionCalculator input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #0C2372;
    cursor: pointer;
}

@media (max-width: 600px) {
    #jobSatisfactionCalculatorWrapper {
        width: 90%; /* Adjust width for smaller screens */
        padding: 10px;
    }
}
