:root {
  --boot-bg: hsl(210 45% 98%);
  --boot-fg: hsl(215 19% 31%);
  --boot-muted: hsl(215 19% 31% / 0.72);
  --boot-border: hsl(215 19% 31% / 0.18);
  --boot-surface: hsl(0 0% 100%);
}

.boot-fallback {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, sans-serif;
  background: var(--boot-bg);
  color: var(--boot-fg);
}

.boot-fallback__panel {
  max-width: 32rem;
  padding: 1.5rem;
  text-align: center;
  line-height: 1.5;
}

.boot-fallback__message {
  color: var(--boot-muted);
  font-size: 0.9375rem;
}

.boot-fallback__button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--boot-border);
  border-radius: 0.5rem;
  background: var(--boot-surface);
  color: var(--boot-fg);
  cursor: pointer;
  font: inherit;
}
