/**
 * Global: hide all scrollbars (vertical + horizontal).
 * Scrolling still works via wheel / trackpad / touch / keys.
 */

html,
body,
* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* legacy Edge / IE */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent !important;
}

/* OverlayScrollbars (AdminLTE etc.) */
.os-scrollbar,
.os-scrollbar-handle,
.os-scrollbar-track,
.os-scrollbar-horizontal,
.os-scrollbar-vertical {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
