/* Minimal styling for root web */
:root { --bg:#0b1020; --card:#121a2b; --border:#263148; --fg:#e8eefc; --muted:#aab8d8; --accent:#47a3ff; }
*{box-sizing:border-box}
body { margin:0; background:var(--bg); color:var(--fg); font-family: system-ui, Arial, sans-serif; }
a { color: var(--accent); text-decoration: none; }
.container { max-width: 980px; margin: 24px auto; padding: 0 16px; }
.nav { display:flex; gap:10px; align-items:center; padding:12px 0; }
.nav a { padding:8px 10px; border:1px solid var(--border); border-radius:8px; }
.card { background: var(--card); border:1px solid var(--border); border-radius:16px; padding:18px; }
label { display:block; margin:10px 0 6px; }
input, select, textarea { width:100%; padding:10px; border-radius:8px; border:1px solid var(--border); background:#0d1526; color:var(--fg); }
button { padding:10px 14px; border-radius:8px; border:0; background: var(--accent); color:#001a33; font-weight:600; cursor:pointer; }
.alert { padding:10px; border-radius:8px; margin:8px 0; }
.alert.error { background:#3a0b10; border:1px solid #7e1f2b; }
.alert.ok { background:#0f2e19; border:1px solid #1d6b3f; }
.table { width:100%; border-collapse:collapse; }
.table th, .table td { border-bottom:1px solid var(--border); padding:8px; text-align:left; vertical-align:top; }
.menu { display:flex; gap:10px; flex-wrap:wrap; }
.menu a { display:inline-block; padding:14px 16px; border:1px solid var(--border); background:#0d1526; border-radius:12px; }
.help { color: var(--muted); font-size: 0.95em; }
.badge { padding:2px 8px; border-radius:999px; background:#112038; border:1px solid var(--border); color:var(--muted); font-size:12px; }
