/* Staff Portal Common Styles */

/* Hide scrollbars but keep scrolling functional */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Ensure body/html can still scroll */
html, body {
    overflow-y: auto;
}
