/* assets/admin.css - minimal, accessible-first */
:root { --bg:#0b1220; --card:#101a30; --muted:#9fb3c8; --text:#e6eef8; --accent:#4da3ff; --danger:#ff6b6b; --success:#4cd07d; }
* { box-sizing: border-box; }
body { margin:0; font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Helvetica,Arial,sans-serif; background:var(--bg); color:var(--text); }
.container { max-width: 980px; margin: 32px auto; padding: 0 16px; }
h1 { font-size: 1.6rem; margin: 0 0 1rem; }
.topbar { display:flex; justify-content:space-between; align-items:center; padding:12px 16px; background:var(--card); position:sticky; top:0; border-bottom:1px solid #223; }
.topbar nav a { margin-left: 12px; color: var(--accent); text-decoration: none; }
form { background: var(--card); padding:16px; border-radius: 12px; }
label { display:block; font-size:.9rem; margin:10px 0 6px; color:#cfe0f5; }
input, textarea, select, button { width:100%; padding:10px 12px; border-radius:10px; border:1px solid #2a3550; background: #0d1528; color: var(--text); }
textarea { resize: vertical; }
button { background: var(--accent); color:#062244; font-weight:600; border:none; cursor:pointer; }
button.link { background:transparent; color:var(--accent); border:none; padding:0; width:auto; }
button.danger, .link.danger { background: var(--danger); color:white; }
.alert { padding:12px; border-radius:10px; margin:12px 0; }
.alert.error { background:#3b1c28; color:#ffc5d3; border:1px solid #6a233b; }
.alert.success { background:#12331f; color:#b6f5ca; border:1px solid #2c6a44; }
.muted { color: var(--muted); }
.filters { margin-bottom:16px; }
.table { width:100%; border-collapse: collapse; background: var(--card); border-radius:12px; overflow:hidden; }
.table th, .table td { padding:12px; border-bottom:1px solid #223; text-align:left; vertical-align:top; }
.grid2 { display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inline { display:inline-block; }
.actions { margin-top: 12px; display:flex; gap:8px; }
@media (max-width:640px){
  .grid2 { grid-template-columns: 1fr; }
}
