/* Loader estatico do index.html (antes do bundle). Arquivo publico — G6/CSP. */
#boot-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #f8fafc;
  transition: opacity 300ms ease;
}

#boot-loader.boot-hidden {
  opacity: 0;
  pointer-events: none;
}

.boot-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #cbd5e1;
  border-top-color: #0891b2;
  border-radius: 9999px;
  animation: boot-spin 700ms linear infinite;
}

.boot-text {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 13px;
  color: #64748b;
}

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