:root { --bg:#0b1220; --fg:#e5e7eb; --muted:#1f2937; --accent:#22c55e; }
* { box-sizing: border-box; }
body { margin:0; background:var(--bg); color:var(--fg); font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial; }
.container { max-width: 900px; margin: 0 auto; padding: 24px; display: grid; gap: 16px; }
h1 { margin: 0 0 8px; }
form { display: grid; gap: 12px; background:#0f172a; padding:16px; border-radius:12px; }
.grid { display:grid; gap:12px; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); }
label { display:grid; gap:6px; font-weight:600; }
input, select, textarea { background:#111827; color:var(--fg); border:1px solid #1f2937; border-radius:10px; padding:10px; }
button.primary { background:var(--accent); color:#052e16; border:0; border-radius:12px; padding:12px 16px; font-weight:800; cursor:pointer; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 10px; border-bottom: 1px solid #1f2937; }
.link { color:#93c5fd; text-decoration:none; }
#status { min-height: 24px; }