:root{
  --bg:#081018;
  --bg2:#101b26;
  --panel:#132231;
  --border:rgba(255,255,255,.10);
  --text:#e8f4ff;
  --muted:#9fb4c9;
  --accent:#35c4ff;
  --accent2:#7dffb3;
  --danger:#ff6b6b;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui,Segoe UI,Arial,sans-serif;
  background:linear-gradient(180deg,#071019,#0b1723);
  color:var(--text);
}
.topbar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:20px 24px;
  border-bottom:1px solid var(--border);
  background:rgba(0,0,0,.18);
}
.topbar h1{margin:0 0 6px;font-size:28px}
.topbar p{margin:0;color:var(--muted)}
.badge{
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--accent2);
  font-weight:700;
}
.shell{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  padding:24px;
}
.panel{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.panel h2{margin-top:0}
.panel h3{margin:20px 0 10px;font-size:16px}
label{
  display:block;
  margin:0 0 14px;
  font-size:14px;
  color:var(--muted);
}
input,select{
  width:100%;
  margin-top:6px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--bg2);
  color:var(--text);
}
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
button{
  padding:12px 16px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  background:var(--accent);
  color:#062033;
  font-weight:700;
}
button.secondary{
  background:#1a2b3b;
  color:var(--text);
  border:1px solid var(--border);
}
.status-wrap{
  margin-top:14px;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#0c1722;
}
pre{
  margin:0;
  white-space:pre-wrap;
  word-break:break-word;
  background:#0c1722;
  border:1px solid var(--border);
  border-radius:12px;
  padding:14px;
  color:#d7ecff;
  min-height:90px;
}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace}
.mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.mini-card{
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#0c1722;
}
.mini-label{
  color:var(--muted);
  font-size:12px;
  margin-bottom:6px;
}
@media (max-width: 920px){
  .shell{grid-template-columns:1fr}
  .grid,.mini-grid{grid-template-columns:1fr}
}
