/* Global stylesheet additions: hide native scrollbars but keep content scrollable */
/* Apply site-wide via /style.css referenced from pages */

/* Internet Explorer and Edge */
html, body {
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
}

/* WebKit browsers (Chrome, Safari, Opera) - hide all element scrollbars */
*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

/* Ensure scrollable overflow behavior is preserved */
html, body {
  overflow: auto;
}

/* Small accessibility note: if you rely on visible scrollbars for affordance,
   consider providing an alternative visible indicator (focus styles, progress, etc.). */
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}