
/* Dark theme polish */
:root {
  --bg-body: #0b0f17;
  --bg-card: #111827;
  --bg-panel: #0e131d;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2937;
  --accent: #60a5fa;
}

body {
  background: var(--bg-body);
  color: var(--text);
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.form-control, .form-select, .form-check-input, .btn {
  border-radius: .75rem;
}
.btn-primary { background-color: var(--accent); border-color: var(--accent); }
.btn-outline-light { color: var(--text); border-color: var(--border); }
.table { color: var(--text); }
.table thead th { color: var(--muted); }
.badge.text-bg-secondary { background: #374151; color: #e5e7eb; }

/* Replacing inline styles with classes */
.panel-dark { background: var(--bg-panel); }
.minh-180 { min-height: 180px; }
.minh-200 { min-height: 200px; }
.minh-240 { min-height: 240px; }
.rounded-12 { border-radius: .75rem; }

.scrollbox { height: 200px; overflow: auto; }
.scrollbox-240 { height: 240px; overflow: auto; }

.border-dark { border: 1px solid var(--border); }

/* Hover helpers */
.table tbody tr:hover { background: rgba(255,255,255,0.02); }

/* Drag state */
.opacity-50 { opacity: .5; }
