:root{
  --bg:#0b1220;
  --panel:#0f1a2e;
  --muted:#a7b3c9;
  --text:#eef3ff;
  --line:rgba(255,255,255,.10);
  --good:#2ea043;
  --warn:#d29922;
  --bad:#d14b4b;
  --shadow:0 18px 45px rgba(0,0,0,.35);
  --radius:18px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: radial-gradient(900px 600px at 15% 10%, rgba(31,111,235,.16), transparent 60%),
              radial-gradient(900px 600px at 85% 20%, rgba(209,75,75,.12), transparent 60%),
              var(--bg);
}
a{color:inherit}
.wrap{max-width:1200px;margin:0 auto;padding:18px}
.topbar{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:12px 14px;
  box-shadow:var(--shadow);
}
.topbar strong{letter-spacing:.2px}
.btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  padding:10px 12px;border-radius:14px;
  cursor:pointer;font-weight:800;
  text-decoration:none;display:inline-flex;gap:8px;align-items:center;
}
.btn.good{background:rgba(46,160,67,.18);border-color:rgba(46,160,67,.25)}
.btn.bad{background:rgba(209,75,75,.18);border-color:rgba(209,75,75,.25)}
.grid{
  margin-top:14px;
  display:grid;grid-template-columns: 380px 1fr;gap:12px;
}
@media (max-width: 980px){ .grid{grid-template-columns:1fr} }
.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(15,26,46,.98), rgba(15,26,46,.92));
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:14px;
}
.card h2{margin:0 0 10px;font-size:16px}
label{font-size:12px;color:var(--muted)}
input,select,textarea{
  width:100%;
  padding:10px 12px;
  margin-top:6px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
textarea{min-height:90px;resize:vertical}
.row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media (max-width: 520px){ .row{grid-template-columns:1fr} }
.small{color:var(--muted);font-size:12px;line-height:1.45;margin-top:8px}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
}
.table th, .table td{
  padding:10px 12px;
  border-top:1px solid var(--line);
  text-align:left;
  vertical-align:top;
  font-size:13px;
}
.table th{border-top:0;color:var(--muted);background:rgba(0,0,0,.16);font-weight:900}
.pill{
  display:inline-flex;align-items:center;
  padding:6px 10px;border-radius:999px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.16);
  font-weight:800;font-size:12px;
}
.pill.good{border-color:rgba(46,160,67,.28);background:rgba(46,160,67,.16)}
.pill.warn{border-color:rgba(210,153,34,.28);background:rgba(210,153,34,.16)}
.pill.bad{border-color:rgba(209,75,75,.28);background:rgba(209,75,75,.16)}
.actions{display:flex;gap:8px;flex-wrap:wrap}
hr{border:0;border-top:1px solid var(--line);margin:12px 0}
.notice{
  border:1px dashed rgba(255,255,255,.18);
  background:rgba(0,0,0,.12);
  padding:10px 12px;border-radius:16px;
  color:var(--muted);font-size:12px;line-height:1.5
}
