.saad-page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #0d1f18;
  color: #f5f0e6;
  font-family: "Almarai", "IBM Plex Sans Arabic", sans-serif;
}

.saad-page-loader__card {
  text-align: center;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(0, 0, 0, 0.35);
}

.saad-page-loader__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d4af37;
  animation: saad-pulse 1s ease-in-out infinite;
  margin-bottom: 0.75rem;
}

@keyframes saad-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.saad-page-error {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: #1a0f0f;
  color: #fff5f5;
  font-family: "Almarai", sans-serif;
  text-align: center;
}

.saad-page-error a {
  color: #d4af37;
}

/* لا نخفي اللوحة أثناء التحميل — كان يسبب شاشة بيضاء إذا تأخر JS */
body.dash-booting #dash-app {
  opacity: 0.35;
  pointer-events: none;
}

body.dash-ready #dash-app[hidden],
body.dash-ready #dash-gate[hidden] {
  display: none !important;
}
