/* App-wide scrollbar -- hidden everywhere (content stays scrollable via wheel/
   touch/keyboard, the bar itself just isn't drawn). Any element that needs a
   visible, interactive scrollbar builds its own custom one out of divs/JS
   instead of relying on the browser's native bar (see #pricing-view's own
   scrollbar in library-assets for the pattern). */
*::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}
html {
    scrollbar-width: none;
}
