* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: #fafaf7;
  color: #1a1a1a;
  line-height: 1.6;
}
.container { max-width: 720px; margin: 0 auto; padding: 48px 24px; }
header { text-align: center; margin-bottom: 32px; }
h1 { font-size: 32px; color: #7c3aed; font-weight: 700; }
.last-check { font-size: 13px; color: #6b6b6b; margin-top: 8px; }

.overall {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  background: #dcfce7;
  color: #166534;
}
.overall.degraded { background: #fef3c7; color: #92400e; }
.overall.down { background: #fee2e2; color: #b91c1c; }
.overall.loading { background: #f1f5f9; color: #475569; }

.services { list-style: none; }
.services li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: white;
  border: 1px solid #e5e5e0;
  border-radius: 10px;
  margin-bottom: 10px;
  gap: 16px;
}
.services .svc-name {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #1a1a1a;
}
.services .svc-status {
  font-size: 13px;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block; margin-right: 10px;
  flex-shrink: 0;
}
.status-dot.up { background: #16a34a; }
.status-dot.down { background: #dc2626; }
.status-dot.unknown { background: #d4d4d0; }

footer {
  text-align: center;
  margin-top: 40px;
  color: #9b9b9b;
  font-size: 13px;
}
footer a { color: #7c3aed; text-decoration: none; }
footer a:hover { text-decoration: underline; }
