/* Tiny /admin first paint — loads before the 1MB SPA so Auth0 error
   callbacks are never a blank white #root. Replaced when React mounts. */
.sp-admin-boot {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
  background: #f4f7f8;
  color: #142028;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
}
.sp-admin-boot__card {
  width: min(23rem, 100%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #d5e0e6;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgb(20 32 40 / 8%);
}
.sp-admin-boot__card h1 {
  margin: 0;
  font-size: 1.15rem;
}
.sp-admin-boot__note {
  margin: 0;
  color: #5c6b75;
  font-size: 0.85rem;
  line-height: 1.45;
}
.sp-admin-boot__err {
  margin: 0;
  color: #b3261e;
  font-size: 0.82rem;
}
.sp-admin-boot__btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background: #0d7a6b;
  color: #fff;
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  font-weight: 600;
}
