/* Public status page only - keeps the admin panel's look untouched. */

body.status-page {
  background:
    linear-gradient(rgba(8, 10, 14, 0.8), rgba(8, 10, 14, 0.85)),
    url('/img/status-bg.webp') center center / cover no-repeat fixed;
  min-height: 100vh;
}

body.status-page .topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

body.status-page .topbar h1 {
  grid-column: 2;
  text-align: center;
}

body.status-page .topbar-spacer {
  grid-column: 1;
}

body.status-page .topbar-actions {
  grid-column: 3;
  justify-self: end;
}

