/**
 * Admin lock — hide SPA until session verified.
 */
html.eco-admin-blocked #root {
  display: none !important;
}

html.eco-admin-checking #root {
  display: none !important;
}

html.eco-admin-checking::before {
  content: "جاري التحقق من الصلاحيات…";
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6fb;
  color: #0a1f44;
  font-family: "Cairo", Tahoma, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
