:root {
  --bg: #0b0e14;
  --card: #111827;
  --muted: #94a3b8;
  --text: #e5e7eb;
  --border: #1f2937;
  --btn: #2563eb;
  --btn2: #334155;
  --err: #ef4444;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
}
.wrap { max-width: 1100px; margin: 28px auto; padding: 0 16px; }
.top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.title { font-size: 20px; font-weight: 700; }
.sub { color: var(--muted); font-size: 13px; margin-top: 4px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin: 12px 0; }
.row { display: flex; align-items: center; gap: 10px; }
.row-space { justify-content: space-between; }
.h { font-weight: 700; }
.input {
  background: #0f172a;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 10px;
  border-radius: 10px;
  min-width: 260px;
}
.btn {
  background: var(--btn);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}
.btn-muted { background: var(--btn2); }
.err { color: var(--err); min-height: 18px; margin: 8px 0 0; font-size: 13px; }
.table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 13px; }
.table th, .table td { border-top: 1px solid var(--border); padding: 10px 8px; text-align: left; vertical-align: top; }
.table th { color: var(--muted); font-weight: 700; }
.k { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; font-size: 12px; }
.note { color: var(--muted); font-size: 12px; margin-top: 10px; }

