/* Hide scrollbars for mobile devices only */
@media (max-width: 1023px) {
  /* Temporarily disabled to debug scrolling issue */
  /*
  html, body, main, div {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar,
  main::-webkit-scrollbar,
  div::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
  }
  */
}

/* Always hide mobile navigation scrollbar */
.navbar-links {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  overflow: -moz-scrollbars-none !important;
}

.navbar-links::-webkit-scrollbar {
  width: 0 !important;
  display: none !important;
}
