* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif;
  background: #0f172a;
  color: #e2e8f0;
}
.wrap { max-width: 960px; margin: 0 auto; padding: 24px; }
header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
h1, h2 { margin: 0 0 12px; }
.card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}
.login-card { max-width: 400px; margin: 80px auto; }
label { display: block; margin: 10px 0 6px; color: #94a3b8; font-size: 14px; }
input, textarea, button {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #475569;
  background: #0f172a;
  color: #f8fafc;
  font-size: 14px;
}
button, .btn {
  display: inline-block;
  margin-top: 12px;
  background: #2563eb;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  width: auto;
}
button.danger { background: #dc2626; }
.btn.secondary { background: #475569; }
.muted { color: #94a3b8; font-size: 13px; }
.alert { background: #7f1d1d; padding: 10px 12px; border-radius: 8px; margin-bottom: 12px; }
.alert.ok { background: #14532d; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { border-bottom: 1px solid #334155; padding: 10px 8px; text-align: left; }
code, pre.curl {
  background: #0f172a;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}
pre.curl { padding: 12px; overflow-x: auto; white-space: pre-wrap; }
form.inline { display: inline; }
.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.card-header-row h2 { margin-bottom: 0; }
.card-header-row form.inline button { margin-top: 0; }
code.small { font-size: 11px; color: #94a3b8; }
.muted.tiny { font-size: 11px; margin-top: 4px; }
.quota-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}
.quota-ok { background: #14532d; color: #bbf7d0; }
.quota-warn { background: #713f12; color: #fde68a; }
.quota-danger { background: #7f1d1d; color: #fecaca; }
.quota-unknown { background: #334155; color: #cbd5e1; }
.info td:first-child { width: 120px; color: #94a3b8; }
