/* ========================================
   JezMatt Adventures - Scrollbar Styles
   ======================================== */

/* Global Scrollbar Hide while allowing scrolling */
html, body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

/* Specific elements that might have internal scrolling */
.bg-charcoal-800, 
main, 
aside, 
nav, 
section, 
div {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.bg-charcoal-800::-webkit-scrollbar,
main::-webkit-scrollbar,
aside::-webkit-scrollbar,
nav::-webkit-scrollbar,
section::-webkit-scrollbar,
div::-webkit-scrollbar {
    display: none;
}