html:has(.app-bootstrap) {
  color-scheme: dark;
  background: Canvas;
}

html[data-theme='light']:has(.app-bootstrap) {
  color-scheme: light;
}

body:has(.app-bootstrap) {
  margin: 0;
}

.app-bootstrap {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  background: var(--bg, Canvas);
  color: var(--ink, CanvasText);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

.app-bootstrap__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.app-bootstrap__progress {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid color-mix(in srgb, currentColor 20%, transparent);
  border-top-color: currentColor;
  border-radius: 9999px;
  animation: app-bootstrap-spin 800ms linear infinite;
}

.app-bootstrap__brand {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  letter-spacing: -0.01em;
}

.app-bootstrap__label {
  display: block;
  margin-top: 0.125rem;
  color: color-mix(in srgb, currentColor 65%, transparent);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .app-bootstrap__progress {
    animation: none;
  }
}

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

