#privateModeText, #offlineNotificationBar {
    display: none;
}

/* ── ACEM brand look (matches the Vue member portal) ──────────────────────────────
   Fira Sans base typography + warm off-white page background. The Fluent theme
   (src/lib/acem-theme.ts) applies the font/colours inside the app; these globals cover
   the document shell, pre-hydration paint, and any non-Fluent surfaces. */
html, body {
    margin: 0;
    font-family: "Fira Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 300;
    background: #f6f6f4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Slim, neutral scrollbars (Vue portal). */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #d6d6d3; }
::-webkit-scrollbar-thumb:hover { background: #c2c2bf; }
