/* Custom scrollbar for WebKit browsers */
#custom-select-options::-webkit-scrollbar {
    width: 8px; /* Width of the entire scrollbar */
    height: 8px; /* Height of the entire scrollbar for horizontal scrolling */
}

#custom-select-options::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color of the track */
    border-radius: 10px; /* Rounded corners */
}

#custom-select-options::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners */
    border: 1px solid #f1f1f1; /* Padding around the scrollbar thumb */
}

#custom-select-options::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Color when hovering over the scrollbar thumb */
}

/* Custom scrollbar for Firefox */
#custom-select-options {
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: #888 #f1f1f1; /* Thumb and track color */
}

/* Hide scrollbar arrows in WebKit browsers */
#custom-select-options::-webkit-scrollbar-button {
    display: none; /* Hides the scrollbar buttons (arrows) */
    visibility: hidden;
}


/* Remove the spinner arrows in Chrome, Safari, and Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove the spinner arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* Remove the spinner arrows in Edge */
input[type="number"]::-ms-expand {
    display: none;
}
