/* Hide owner pages until auth state is resolved (guests must not see dashboard UI). */
html.owner-gate-pending body {
  visibility: hidden;
}

html.owner-gate-pending #authGate {
  visibility: visible;
}

html.owner-gate-pending #authGate[hidden] {
  display: block !important;
}

html.staff-gate-pending body {
  display: none !important;
}

html.auth-session-gate-pending body {
  display: none !important;
}
