html,
body,
#root {
  min-height: 100%;
  margin: 0;
}

.runtime-status {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #f8fafc;
}

.runtime-status p {
  margin: 0;
  color: #475569;
  font-size: 14px;
}

.runtime-status section {
  max-width: 420px;
  padding: 24px;
  text-align: center;
}

.runtime-status h1 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.runtime-status button {
  margin-top: 18px;
  border: 1px solid #0f172a;
  border-radius: 6px;
  background: #0f172a;
  color: #fff;
  padding: 9px 14px;
  font: inherit;
  cursor: pointer;
}

.runtime-loader {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 3px solid #dbe4ee;
  border-top-color: #0f172a;
  animation: runtime-spin 0.8s linear infinite;
}

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