:root {
  color-scheme: light;
  --ink: #17211b;
  --muted: #607068;
  --line: #d9e0dc;
  --panel: #ffffff;
  --bg: #f6f8f4;
  --accent: #2f7d4f;
  --accent-dark: #215d3b;
  --warn: #9c5b18;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}
.shell { width: min(1180px, calc(100vw - 32px)); margin: 0 auto; padding: 28px 0 40px; }
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.eyebrow { margin: 0 0 4px; color: var(--accent-dark); font-size: 13px; font-weight: 700; text-transform: uppercase; }
h1, h2 { margin: 0; letter-spacing: 0; }
h1 { font-size: 36px; }
h2 { font-size: 17px; }
.link { color: var(--accent-dark); font-weight: 700; text-decoration: none; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 22px 0; }
.panel, .status { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; }
.panel { display: grid; gap: 12px; padding: 18px; }
.panel-copy { margin: -2px 0 2px; min-height: 48px; color: var(--muted); font-size: 13px; line-height: 1.55; }
label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 650; }
input, select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 8px 12px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}
button:disabled { opacity: .58; cursor: progress; }
.status { padding: 18px; }
.status-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.message { min-height: 24px; color: var(--warn); font-size: 14px; }
.current { margin-bottom: 12px; color: var(--muted); font-size: 14px; overflow-wrap: anywhere; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { border-top: 1px solid var(--line); padding: 10px 8px; text-align: left; vertical-align: top; }
th { color: var(--muted); font-size: 12px; text-transform: uppercase; }
.badge {
  display: inline-block;
  min-width: 82px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e9f2ec;
  color: var(--accent-dark);
  text-align: center;
  font-size: 12px;
  font-weight: 750;
}
.error { color: #9f2f2f; }
@media (max-width: 780px) {
  .topbar { align-items: start; flex-direction: column; }
  .grid { grid-template-columns: 1fr; }
  table { display: block; overflow-x: auto; white-space: nowrap; }
}
