body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #0b1020;
  color: #e5e7eb;
}
.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}
.sidebar {
  background: #111827;
  border-right: 1px solid #1f2937;
  padding: 20px;
}
.brand {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}
.muted {
  color: #9ca3af;
  font-size: 13px;
}
.main {
  padding: 20px;
}
.card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
}
.row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
input, select, button, textarea {
  border-radius: 8px;
  border: 1px solid #374151;
  background: #0f172a;
  color: #e5e7eb;
  padding: 10px;
}
button {
  background: #4f46e5;
  border: none;
  cursor: pointer;
  font-weight: 600;
}
button.secondary {
  background: #374151;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
th, td {
  border-bottom: 1px solid #1f2937;
  padding: 10px 8px;
  text-align: left;
}
th {
  color: #9ca3af;
  font-weight: 600;
}
.status-pill {
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  display: inline-block;
}
.status-active { background: #064e3b; color: #6ee7b7; }
.status-suspended { background: #7f1d1d; color: #fca5a5; }
.hidden { display: none !important; }
.danger { color: #fca5a5; }
