/*
 * boot.css — tiny static stylesheet linked from index.html <head>.
 *
 * Loaded via <link> (CSP-clean) so it is available even when the SPA bundle
 * never runs (the <noscript> case). Keep this minimal: only styles that must
 * exist before/without the React bundle belong here. Everything else lives in
 * the Tailwind pipeline (src/styles/input.css).
 */

.noscript-banner {
  margin: 0;
  padding-block: 1rem;
  padding-inline: 1rem;
  text-align: center;
  font-family: system-ui, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1a1a1a;
  background: #fde68a;
}

@media (prefers-color-scheme: dark) {
  .noscript-banner {
    color: #fafafa;
    background: #78350f;
  }
}
