/* --------------------------------------------------
   THEME VARIABLES (Exact Colours)
-------------------------------------------------- */
:root {
  --bg: #0f172a;
  --bg2: #1f2937;
  --bg3: #020617;
  --header-bg: #111827;
  --border: #1f2937;
  --border-light: #374151;
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --accent: #3b82f6;
  --accent-light: #38bdf8;
  --danger: #ef4444;
  --radius: 8px;
}

/* --------------------------------------------------
   GLOBAL THEME
-------------------------------------------------- */
body {
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%);
  color: var(--text);
  font-family: system-ui, sans-serif;
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

.btn-outline:hover {
  background: #1e293b;
  color: var(--text);
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-secondary {
  background: var(--accent-light);
  color: #0f172a;
}

.btn-danger {
  background: var(--danger);
  color: white;
}

/* --------------------------------------------------
   CARDS
-------------------------------------------------- */
.card {
  background: var(--bg2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px;
}

.card-title {
  margin: 0 0 12px 0;
}

/* --------------------------------------------------
   EMPTY STATE
-------------------------------------------------- */
.empty {
  border: 1px dashed var(--border-light);
  padding: 14px;
  border-radius: 6px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(15, 23, 42, 0.5);
}

.empty-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.empty-main {
  margin: 0;
}

.empty-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}