/* Styles for the pre-Blazor shell and the error strip. Kept out of the shared
   library because they must work before any component has rendered. */

.boot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  min-height: 100dvh;
  color: var(--ink-muted);
}

.boot-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--weight-semibold);
  color: var(--ink);
}

.boot-mark {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sm);
  background: var(--primary);
}

.boot-text {
  font-size: var(--text-sm);
}

#blazor-error-ui {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: var(--z-toast);
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--danger-soft);
  color: var(--ink);
  border-top: 1px solid var(--danger);
  font-size: var(--text-sm);
}

#blazor-error-ui .reload {
  text-decoration: underline;
  color: var(--ink);
}

#blazor-error-ui .dismiss {
  margin-left: auto;
  font-size: var(--text-lg);
  line-height: 1;
  color: var(--ink-muted);
}
