* {
  box-sizing: border-box;
}

.status-page {
  margin: 0;
  min-height: 100vh;
  background: #0b141f;
  color: #dbe7f3;
  font-family: Arial, Helvetica, sans-serif;
  padding: 28px;
}

.status-header {
  margin-bottom: 24px;
}

.status-title {
  margin: 0;
  color: #66c0f4;
  font-size: 34px;
  font-weight: 800;
}

.status-subtitle {
  margin-top: 8px;
  color: #8ea4bb;
  font-size: 14px;
}

.status-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.status-card {
  background: #16202d;
  border: 1px solid #26384c;
  border-radius: 8px;
  padding: 16px;
}

.status-card-label {
  color: #8ea4bb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-card-value {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 800;
}

.status-card-time {
  color: #dbe7f3;
  font-size: 15px;
}

.status-ok {
  color: #66d17a;
}

.status-bad {
  color: #ff6b6b;
}

.status-wrap {
  overflow-x: auto;
}

.status-table {
  width: 100%;
  border-collapse: collapse;
  background: #16202d;
  border: 1px solid #26384c;
  border-radius: 8px;
  overflow: hidden;
}

.status-table-head-cell {
  padding: 12px;
  border-bottom: 1px solid #26384c;
  color: #8ea4bb;
  font-size: 12px;
  text-align: left;
  text-transform: uppercase;
}

.status-table-cell {
  padding: 12px;
  border-bottom: 1px solid #26384c;
  font-size: 14px;
  text-align: left;
}

.status-detail {
  color: #8ea4bb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.status-pill {
  display: inline-flex;
  min-width: 52px;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
}

.status-pill-ok {
  background: rgba(102, 209, 122, .14);
  color: #66d17a;
  border: 1px solid rgba(102, 209, 122, .35);
}

.status-pill-bad {
  background: rgba(255, 107, 107, .14);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, .35);
}

.status-code {
  color: #8ea4bb;
  margin-left: 8px;
}

@media (max-width: 700px) {
  .status-page {
    padding: 18px;
  }

  .status-summary {
    grid-template-columns: 1fr;
  }
}
