:root { --accent:#1f6feb; --border:#e5e7eb; --muted:#6b7280; --stuck:#b91c1c; }
* { box-sizing: border-box; }
body { font-family: system-ui, sans-serif; margin: 0; color: #111; }
header { display:flex; justify-content:space-between; align-items:center; padding:16px 24px; border-bottom:1px solid var(--border); }
.toolbar { display:flex; gap:12px; align-items:center; padding:16px 24px; flex-wrap:wrap; }
.btn, button { background:var(--accent); color:#fff; border:0; border-radius:6px; padding:8px 14px; cursor:pointer; font-size:14px; }
button:disabled { opacity:.4; cursor:not-allowed; }
table { width:100%; border-collapse:collapse; }
th, td { text-align:left; padding:10px 24px; border-bottom:1px solid var(--border); font-size:14px; }
.status-STUCK { color:var(--stuck); font-weight:600; }
.status-FORWARDED { color:var(--muted); }
.kill { margin-left:auto; font-size:14px; }
