/**
 * When wallet auth is enabled and the user has no valid session, hide classic shell chrome
 * so only the ranked workspace (wallet login / gate) is visible.
 */
/* Legacy shell header / tab bar removed from DOM; keep rules for older cached HTML if any. */
body.beaglei-shell--auth-locked > header.shell-header {
  display: none !important;
}

body.beaglei-shell--auth-locked #main-tab-bar {
  display: none !important;
}

body.beaglei-shell--auth-locked nav.decision-dashboard-strip {
  display: none !important;
}

body.beaglei-shell--auth-locked #beaglei-fallback-nav {
  display: none !important;
}

body.beaglei-shell--auth-locked .tab-panel:not(#tab-ranked) {
  display: none !important;
}

body.beaglei-shell--auth-locked #tab-ranked {
  display: block !important;
}

body.beaglei-shell--auth-locked #tab-ranked.tab-panel {
  min-height: calc(100vh - 120px);
}

body.beaglei-shell--auth-locked footer.app-footer {
  display: none !important;
}

