/* ── Site-wide themed scrollbar ──
   Loaded on every page so scrollbars match the dark navy theme instead of the browser default.
   Page-specific rules (ticket chat, cart, terminal-mode) stay as they are — their selectors are
   more specific (scoped to a container/class) so they naturally win over this default. */

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(56, 177, 237, 0.45) rgba(255, 255, 255, 0.04);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
}

::-webkit-scrollbar-thumb {
    background: rgba(56, 177, 237, 0.45);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(56, 177, 237, 0.7);
}

::-webkit-scrollbar-corner {
    background: transparent;
}
