/* Independent of the application bundle: this must work before React loads. */
#startup-status {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f9fdff;
  color: #00336b;
  font: 16px/1.5 system-ui, sans-serif;
}

#startup-status .startup-card {
  box-sizing: border-box;
  width: min(100%, 420px);
  padding: 32px;
  border: 1px solid #dce8f0;
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 48px -32px #00336b;
}

#startup-status h1 { margin: 0 0 12px; font-size: 22px; }
#startup-status p { margin: 0 0 20px; color: #4c6b8a; }
#startup-status button {
  border: 0;
  border-radius: 12px;
  padding: 12px 20px;
  background: #00336b;
  color: white;
  font: inherit;
  cursor: pointer;
}
#startup-status button:focus-visible { outline: 3px solid #024c97; outline-offset: 4px; }
#startup-status button[hidden] { display: none; }
#startup-status noscript { display: block; }
