/**
 * Hidden scrollbars — activation-server (admin + portal + all nested scroll areas).
 * Wheel, touch, keyboard, and programmatic scroll still work.
 */
html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

:where(
  *,
  *::before,
  *::after
) {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

:where(*::-webkit-scrollbar) {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}
