/* Instant paint before Flutter loads — matches portal mint splash */
#medsahi-portal-splash {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e0f7f4;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#medsahi-portal-splash.medsahi-splash--dark {
  background: #121212;
}

#medsahi-portal-splash .medsahi-splash-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 28px;
}

#medsahi-portal-splash .medsahi-splash-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(13, 148, 136, 0.2);
  border-top-color: #0d9488;
  border-radius: 50%;
  animation: medsahi-spin 0.85s linear infinite;
}

#medsahi-portal-splash .medsahi-splash-label {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.02em;
}

#medsahi-portal-splash.medsahi-splash--dark .medsahi-splash-label {
  color: #9ca3af;
}

#medsahi-portal-splash.medsahi-splash--hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

@keyframes medsahi-spin {
  to { transform: rotate(360deg); }
}
