/* ── Status Page ── */
.status-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: border-color 0.3s;
}
.status-item:hover { border-color: var(--accent-3); }
.status-item-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.status-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
}
.status-badge.operational { background: rgba(74,222,128,0.15); color: #4ade80; }
.status-badge.degraded   { background: rgba(251,191,36,0.15); color: #fbbf24; }
.status-badge.down       { background: rgba(248,113,113,0.15); color: #f87171; }
.status-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: currentColor;
}
.status-overall {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.status-overall-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.status-uptime-bar {
  height: 6px;
  background: var(--glass-border);
  border-radius: 3px;
  overflow: hidden;
  max-width: 400px;
  margin: 0.75rem auto 0;
}
.status-uptime-fill {
  height: 100%;
  background: #4ade80;
  border-radius: 3px;
  transition: width 1s ease;
}
