body {
    font-family: 'Work Sans', sans-serif;
    background-color: #f7fafc;
}
/* Custom styles for the slider thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 20px; height: 20px;
    background: #000;
    cursor: pointer;
    border-radius: 50%;
    border: 4px solid #ffcc00;
}
input[type="range"]::-moz-range-thumb {
    width: 20px; height: 20px;
    background: #000;
    cursor: pointer;
    border-radius: 50%;
    border: 4px solid #ffcc00;
}
/* Custom styles for the slider track */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 5px;
    outline: none;
}
