/* cri-noscroll — hide scrollbars site-wide while keeping scroll functional.
 * Shipped 2026-08-03 per Chris' ask. Applies to every scrollable region: the
 * page itself and any nested overflow: auto/scroll containers. */

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

*::-webkit-scrollbar,
*::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-track {
    display: none !important;     /* Chromium / WebKit */
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}
