/* For Webkit browsers like Chrome, Safari, etc. */
*::-webkit-scrollbar { width: 8px; /* Set width of the scrollbar */ }
*::-webkit-scrollbar-track { background: #f1f1f1; /* Set the track background */ }
*::-webkit-scrollbar-thumb {
    background-color: lightgray; /* Set scrollbar color */
    border-radius: 4px; /* Rounded corners */
}
*::-webkit-scrollbar-thumb:hover { background-color: #b0b0b0; /* Change color when hovered */ }
/* For Firefox */
* {
    scrollbar-width: thin; /* Makes the scrollbar thin */
    scrollbar-color: lightgray #f1f1f1; /* First color is the thumb, second is the track */
}
select {
    background-color: #eee;
    border: none;
    padding: 10px 10px;
    border-radius: 4px;
    margin: 10px 0px 10px 0px;
}