/* Global (non-scoped) app-level CSS — for rules that need to reach outside any
   single component's own render tree, like <body> itself, which Blazor CSS
   isolation can never tag since nothing renders it. */

/* Locks background scroll while the account panel (Layout/MainLayout.razor) is
   open — toggled via wwwroot/js/account-menu.js's faSetScrollLocked, called
   from MainLayout.razor's SetAccountModalOpenAsync. */
body.fa-scroll-locked {
    overflow: hidden;
}
