/* ===================================================
   RADIO COCKPIT — Gedeeld stylesheet (krant.css)
   =================================================== */

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  transition: background 0.3s;
}

[data-bs-theme="dark"] body {
  background: radial-gradient(ellipse at top left, #0f172a 0%, #020617 100%) fixed;
  color: #f1f5f9;
}
[data-bs-theme="light"] body {
  background: radial-gradient(ellipse at top left, #60a5fa 0%, #a5b4fc 100%) fixed;
  color: #0f172a;
}

/* ── Navigatiebalk ── */
.top-nav {
  margin: 10px 16px;
  border-radius: 18px;
  backdrop-filter: blur(15px);
  padding: 8px 18px;
}
[data-bs-theme="dark"] .top-nav {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
[data-bs-theme="light"] .top-nav {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 2px 14px rgba(0,0,0,0.12);
}

.nav-link {
  font-weight: 500;
  border-radius: 10px;
  padding: 7px 12px !important;
  transition: 0.15s;
  font-size: 0.88rem;
}
[data-bs-theme="dark"] .nav-link          { color: rgba(255,255,255,0.60) !important; }
[data-bs-theme="dark"] .nav-link:hover    { color: #fff !important; background: rgba(255,255,255,0.08); }
[data-bs-theme="dark"] .nav-link.active   { color: #fff !important; background: rgba(255,255,255,0.08); font-weight: 700; }
[data-bs-theme="light"] .nav-link         { color: rgba(0,0,0,0.60) !important; }
[data-bs-theme="light"] .nav-link:hover   { color: #000 !important; background: rgba(0,0,0,0.06); }
[data-bs-theme="light"] .nav-link.active  { color: #000 !important; background: rgba(0,0,0,0.08); font-weight: 700; }

/* ── Kaarten ── */
.glass, .glass-card {
  backdrop-filter: blur(20px);
  border-radius: 22px;
}
[data-bs-theme="dark"] .glass,
[data-bs-theme="dark"] .glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
[data-bs-theme="light"] .glass,
[data-bs-theme="light"] .glass-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.panel {
  border-radius: 20px;
  padding: 24px;
}
[data-bs-theme="dark"] .panel {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.07);
}
[data-bs-theme="light"] .panel {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

/* ── Knoppen ── */
.ctrl-btn {
  border-radius: 12px !important;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 14px;
  border: none;
  transition: 0.12s;
  white-space: nowrap;
}
.ctrl-btn:active { transform: scale(0.94); }

[data-bs-theme="dark"] .btn-ghost {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12) !important;
}
[data-bs-theme="dark"] .btn-ghost:hover { background: rgba(255,255,255,0.13); color: #fff; }
[data-bs-theme="light"] .btn-ghost {
  background: rgba(0,0,0,0.05);
  color: rgba(0,0,0,0.70);
  border: 1px solid rgba(0,0,0,0.12) !important;
}
[data-bs-theme="light"] .btn-ghost:hover { background: rgba(0,0,0,0.10); color: #000; }

[data-bs-theme="dark"] .btn-danger-soft {
  background: rgba(239,68,68,0.10); color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.20) !important;
}
[data-bs-theme="dark"] .btn-danger-soft:hover { background: rgba(239,68,68,0.20); }
[data-bs-theme="light"] .btn-danger-soft {
  background: rgba(239,68,68,0.08); color: #dc2626;
  border: 1px solid rgba(239,68,68,0.28) !important;
}
[data-bs-theme="light"] .btn-danger-soft:hover { background: rgba(239,68,68,0.15); }

.btn-theme {
  border-radius: 12px !important;
  font-size: 0.88rem;
  padding: 7px 12px;
  transition: 0.12s;
  border: 1px solid rgba(99,102,241,0.30) !important;
}
[data-bs-theme="dark"] .btn-theme { background: rgba(99,102,241,0.12); color: #a5b4fc; }
[data-bs-theme="light"] .btn-theme { background: rgba(99,102,241,0.10); color: #4f46e5; }
.btn-theme:hover { opacity: 0.80; }

/* ── Formulieren ── */
[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
  background: #1e293b !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: #f1f5f9 !important;
  border-radius: 10px !important;
}
[data-bs-theme="dark"] .form-control::placeholder { color: rgba(255,255,255,0.25) !important; }
[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
  box-shadow: 0 0 0 2px rgba(59,130,246,0.35) !important;
  border-color: rgba(59,130,246,0.5) !important;
}
[data-bs-theme="light"] .form-control,
[data-bs-theme="light"] .form-select {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  color: #0f172a !important;
  border-radius: 10px !important;
}
[data-bs-theme="light"] .form-control::placeholder { color: rgba(0,0,0,0.35) !important; }
[data-bs-theme="light"] .form-control:focus,
[data-bs-theme="light"] .form-select:focus {
  box-shadow: 0 0 0 2px rgba(59,130,246,0.25) !important;
  border-color: rgba(59,130,246,0.5) !important;
}
.search-input { border-radius: 50px !important; padding: 0.7rem 1.5rem !important; }

[data-bs-theme="dark"] .form-check-input { background-color: #1e293b; border-color: rgba(255,255,255,0.20); }
[data-bs-theme="light"] .form-check-input { background-color: #f8fafc; border-color: rgba(0,0,0,0.25); }
.form-check-input:checked { background-color: #3b82f6 !important; border-color: #3b82f6 !important; }

/* ── Tabellen ── */
[data-bs-theme="dark"] .table { --bs-table-bg: transparent; color: #e2e8f0; }
[data-bs-theme="dark"] .table thead th {
  color: rgba(255,255,255,0.40); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08); padding: 10px 12px;
}
[data-bs-theme="dark"] .table tbody td { border-bottom: 1px solid rgba(255,255,255,0.04); padding: 12px; vertical-align: middle; }
[data-bs-theme="dark"] .table tbody tr:hover td { background: rgba(255,255,255,0.02); }

[data-bs-theme="light"] .table { --bs-table-bg: transparent; color: #0f172a; }
[data-bs-theme="light"] .table thead th {
  color: rgba(0,0,0,0.50); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid rgba(0,0,0,0.08); padding: 10px 12px;
}
[data-bs-theme="light"] .table tbody td { border-bottom: 1px solid rgba(0,0,0,0.04); padding: 12px; vertical-align: middle; }
[data-bs-theme="light"] .table tbody tr:hover td { background: rgba(0,0,0,0.02); }

/* ── Badges ── */
.badge-actief {
  background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.30);
  border-radius: 20px; padding: 3px 12px; font-size: 0.78rem; font-weight: 600;
}
.badge-uit, .badge-inactief {
  background: rgba(239,68,68,0.10); border: 1px solid rgba(239,68,68,0.25);
  border-radius: 20px; padding: 3px 12px; font-size: 0.78rem; font-weight: 600;
}
[data-bs-theme="dark"] .badge-actief { color: #4ade80; }
[data-bs-theme="dark"] .badge-uit,
[data-bs-theme="dark"] .badge-inactief { color: #f87171; }
[data-bs-theme="light"] .badge-actief { color: #16a34a; }
[data-bs-theme="light"] .badge-uit,
[data-bs-theme="light"] .badge-inactief { color: #dc2626; }

/* ── Status badges ── */
.status-badge { border-radius: 20px; padding: 4px 12px; font-size: 0.75rem; font-weight: 700; border: 1px solid; transition: 0.3s; white-space: nowrap; }
.s-on  { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.35); color: #4ade80; }
.s-off { background: rgba(239,68,68,0.10); border-color: rgba(239,68,68,0.25); color: #f87171; }
.s-unk { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.4); }
[data-bs-theme="light"] .s-on  { color: #16a34a; }
[data-bs-theme="light"] .s-off { color: #dc2626; }
[data-bs-theme="light"] .s-unk { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.10); color: rgba(0,0,0,0.45); }

/* ── Modals ── */
[data-bs-theme="dark"] .modal-content { background: #1e293b; border: 1px solid rgba(255,255,255,0.10); border-radius: 20px; }
[data-bs-theme="light"] .modal-content { background: #ffffff; border: 1px solid rgba(0,0,0,0.10); border-radius: 20px; }

/* ── Paginering ── */
[data-bs-theme="dark"] .page-link { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.10); color: #e2e8f0; }
[data-bs-theme="dark"] .page-link:hover { background: rgba(255,255,255,0.10); color: #fff; }
[data-bs-theme="dark"] .page-item.active .page-link { background: #3b82f6; border-color: #3b82f6; }
[data-bs-theme="dark"] .page-item.disabled .page-link { background: rgba(255,255,255,0.02); color: rgba(255,255,255,0.30); }
[data-bs-theme="light"] .page-link { background: #fff; border-color: rgba(0,0,0,0.12); color: #0f172a; }
[data-bs-theme="light"] .page-link:hover { background: #f1f5f9; color: #000; }
[data-bs-theme="light"] .page-item.active .page-link { background: #3b82f6; border-color: #3b82f6; color: #fff; }
[data-bs-theme="light"] .page-item.disabled .page-link { background: #f8fafc; color: rgba(0,0,0,0.30); }

/* ── Nieuws textarea ── */
.news-editor { min-height: 380px; resize: vertical; font-family: inherit; line-height: 1.7; font-size: 0.92rem; }

/* ── Rich text editor ── */
.rte-toolbar { border-radius: 10px 10px 0 0; padding: 6px 10px; display: flex; gap: 4px; }
[data-bs-theme="dark"] .rte-toolbar { background: #1e293b; border: 1px solid rgba(255,255,255,0.08); border-bottom: none; }
[data-bs-theme="light"] .rte-toolbar { background: #f8fafc; border: 1px solid rgba(0,0,0,0.12); border-bottom: none; }
.rte-btn { background: none; border: none; font-weight: 800; font-size: 0.9rem; padding: 3px 9px; border-radius: 6px; cursor: pointer; transition: 0.15s; }
[data-bs-theme="dark"] .rte-btn { color: rgba(255,255,255,0.50); }
[data-bs-theme="dark"] .rte-btn:hover { background: rgba(255,255,255,0.10); color: #fff; }
[data-bs-theme="light"] .rte-btn { color: rgba(0,0,0,0.60); }
[data-bs-theme="light"] .rte-btn:hover { background: rgba(0,0,0,0.08); color: #000; }
.rte-content { border-radius: 0 0 10px 10px !important; min-height: 140px; padding: 12px; font-size: 0.92rem; outline: none; line-height: 1.6; }
[data-bs-theme="dark"] .rte-content { background: #1e293b !important; border: 1px solid rgba(255,255,255,0.08) !important; color: #f1f5f9; }
[data-bs-theme="dark"] .rte-content:empty:before { content: attr(data-placeholder); color: rgba(255,255,255,0.25); pointer-events: none; }
[data-bs-theme="dark"] .rte-content:focus { box-shadow: 0 0 0 2px rgba(59,130,246,0.35); border-color: rgba(59,130,246,0.5) !important; }
[data-bs-theme="light"] .rte-content { background: #fff !important; border: 1px solid rgba(0,0,0,0.12) !important; color: #0f172a; }
[data-bs-theme="light"] .rte-content:empty:before { content: attr(data-placeholder); color: rgba(0,0,0,0.30); pointer-events: none; }
[data-bs-theme="light"] .rte-content:focus { box-shadow: 0 0 0 2px rgba(59,130,246,0.25); border-color: rgba(59,130,246,0.5) !important; }

/* ── Overige ── */
.section-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
[data-bs-theme="dark"] .section-label { color: rgba(255,255,255,0.35); }
[data-bs-theme="light"] .section-label { color: rgba(0,0,0,0.45); }

hr { margin: 12px 0; }
[data-bs-theme="dark"] hr { border-color: rgba(255,255,255,0.07); }
[data-bs-theme="light"] hr { border-color: rgba(0,0,0,0.08); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
[data-bs-theme="dark"] ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.10); border-radius: 4px; }
[data-bs-theme="light"] ::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }

/* ── Login pagina ── */
.login-card {
  backdrop-filter: blur(25px);
  border-radius: 35px;
  max-width: 450px; width: 100%;
  padding: 3rem;
}
[data-bs-theme="dark"] .login-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
[data-bs-theme="light"] .login-card {
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

/* ============================================================
   QUEUE.HTML — Specifieke stijlen
   ============================================================ */

/* Now Playing art */
.now-art {
  width: 72px; height: 72px;
  object-fit: cover; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  flex-shrink: 0;
}
[data-bs-theme="light"] .now-art { border-color: rgba(0,0,0,0.10); }

/* Pulse dot (live indicator) */
.pulse-dot {
  width: 8px; height: 8px; background: #ef4444;
  border-radius: 50%; display: inline-block;
  animation: ck-pulse 1.5s infinite;
}
@keyframes ck-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }

/* Track info */
.track-artist { font-size: 1rem; font-weight: 700; line-height: 1.2; }
.track-title  { font-size: 0.85rem; margin-top: 2px; }
.track-album  { font-size: 0.73rem; margin-top: 1px; }
[data-bs-theme="dark"]  .track-title  { color: rgba(255,255,255,0.55); }
[data-bs-theme="dark"]  .track-album  { color: rgba(255,255,255,0.30); }
[data-bs-theme="light"] .track-title  { color: rgba(0,0,0,0.55); }
[data-bs-theme="light"] .track-album  { color: rgba(0,0,0,0.35); }

/* Progress bar */
.prog-bar { height: 4px; border-radius: 4px; overflow: hidden; margin: 10px 0 4px; cursor: pointer; }
[data-bs-theme="dark"]  .prog-bar { background: rgba(255,255,255,0.10); }
[data-bs-theme="light"] .prog-bar { background: rgba(0,0,0,0.10); }
.prog-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #6366f1, #a855f7); transition: width 0.5s linear; }
.prog-times { display: flex; justify-content: space-between; font-size: 0.72rem; }
[data-bs-theme="dark"]  .prog-times { color: rgba(255,255,255,0.35); }
[data-bs-theme="light"] .prog-times { color: rgba(0,0,0,0.40); }

/* Player control buttons */
.btn-play  { background: #16a34a !important; color: #fff !important; }
.btn-play:hover  { background: #15803d !important; }
.btn-stop  { background: #dc2626 !important; color: #fff !important; }
.btn-stop:hover  { background: #b91c1c !important; }
.btn-pause { background: #d97706 !important; color: #fff !important; }
.btn-pause:hover { background: #b45309 !important; }
.btn-mode  { background: rgba(99,102,241,0.12) !important; color: #a5b4fc !important; border: 1px solid rgba(99,102,241,0.25) !important; }
.btn-mode:hover { background: rgba(99,102,241,0.22) !important; color: #c7d2fe !important; }
[data-bs-theme="light"] .btn-mode { color: #4f46e5 !important; }

/* Divider */
.divider-v { width: 1px; background: rgba(255,255,255,0.08); align-self: stretch; margin: 0 4px; }
[data-bs-theme="light"] .divider-v { background: rgba(0,0,0,0.08); }

/* Queue list */
.queue-card { padding: 18px 20px; display: flex; flex-direction: column; height: 100%; }
.queue-scroll { overflow-y: auto; flex: 1; padding-right: 4px; }
.q-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 12px; transition: 0.15s; }
[data-bs-theme="dark"]  .q-item:hover { background: rgba(255,255,255,0.05); }
[data-bs-theme="light"] .q-item:hover { background: rgba(0,0,0,0.04); }
.q-num { min-width: 20px; text-align: right; font-size: 0.75rem; font-weight: 600; }
[data-bs-theme="dark"]  .q-num { color: rgba(255,255,255,0.30); }
[data-bs-theme="light"] .q-num { color: rgba(0,0,0,0.35); }
.q-art { width: 36px; height: 36px; object-fit: cover; border-radius: 7px; flex-shrink: 0; }
[data-bs-theme="dark"]  .q-art { border: 1px solid rgba(255,255,255,0.08); }
[data-bs-theme="light"] .q-art { border: 1px solid rgba(0,0,0,0.08); }
.q-artist { font-size: 0.83rem; font-weight: 600; line-height: 1.2; }
.q-title  { font-size: 0.75rem; }
[data-bs-theme="dark"]  .q-title { color: rgba(255,255,255,0.45); }
[data-bs-theme="light"] .q-title { color: rgba(0,0,0,0.50); }
.q-dur { font-size: 0.72rem; white-space: nowrap; margin-left: auto; }
[data-bs-theme="dark"]  .q-dur { color: rgba(255,255,255,0.30); }
[data-bs-theme="light"] .q-dur { color: rgba(0,0,0,0.40); }
.q-actions { display: flex; gap: 4px; flex-shrink: 0; }
.q-act-btn { border-radius: 7px; padding: 4px 8px; font-size: 0.78rem; transition: 0.12s; cursor: pointer; }
[data-bs-theme="dark"]  .q-act-btn { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); color: rgba(255,255,255,0.50); }
[data-bs-theme="dark"]  .q-act-btn:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.25); }
[data-bs-theme="light"] .q-act-btn { background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.12); color: rgba(0,0,0,0.55); }
[data-bs-theme="light"] .q-act-btn:hover { background: rgba(0,0,0,0.10); color: #000; }
.q-act-del { background: rgba(239,68,68,0.08) !important; border-color: rgba(239,68,68,0.18) !important; color: rgba(248,113,113,0.7) !important; }
.q-act-del:hover { background: rgba(239,68,68,0.20) !important; color: #f87171 !important; }
.q-new { opacity: 0; transform: translateY(-4px); transition: opacity 0.3s ease, transform 0.3s ease; }
.q-new.q-visible { opacity: 1; transform: translateY(0); }

/* Carts */
.carts-card { padding: 18px 16px; }
.cart-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }
.cart-btn { border-radius: 11px; font-weight: 700; font-size: 0.95rem; padding: 10px 0; text-align: center; cursor: pointer; transition: 0.12s; }
[data-bs-theme="dark"]  .cart-btn { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.20); color: #fbbf24; }
[data-bs-theme="dark"]  .cart-btn:hover { background: rgba(245,158,11,0.18); border-color: rgba(245,158,11,0.40); }
[data-bs-theme="light"] .cart-btn { background: rgba(245,158,11,0.10); border: 1px solid rgba(245,158,11,0.30); color: #b45309; }
[data-bs-theme="light"] .cart-btn:hover { background: rgba(245,158,11,0.20); }
.cart-btn:active { transform: scale(0.91); }

/* DJ Feedback */
#djFeedback { font-size: 0.82rem; min-height: 1.4em; }

/* ============================================================
   SONGS.HTML — Specifieke stijlen
   ============================================================ */

.album-art {
  width: 44px; height: 44px;
  object-fit: cover; border-radius: 8px;
}
[data-bs-theme="dark"]  .album-art { border: 1px solid rgba(255,255,255,0.08); }
[data-bs-theme="light"] .album-art { border: 1px solid rgba(0,0,0,0.08); }

.bulk-bar { border-radius: 16px; padding: 12px 20px; }
[data-bs-theme="dark"]  .bulk-bar { background: rgba(59,130,246,0.10); border: 1px solid rgba(59,130,246,0.30); }
[data-bs-theme="light"] .bulk-bar { background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.25); }

.btn-action { border-radius: 12px; padding: 5px 12px; font-size: 0.8rem; }

/* ── Login: wachtwoord toggle ── */
.password-wrapper {
  position: relative;
}
.password-wrapper .form-control {
  padding-right: 44px !important;
}
.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  border-radius: 6px;
  transition: 0.15s;
}
[data-bs-theme="dark"]  .password-toggle { color: rgba(255,255,255,0.40); }
[data-bs-theme="dark"]  .password-toggle:hover { color: rgba(255,255,255,0.80); }
[data-bs-theme="light"] .password-toggle { color: rgba(0,0,0,0.40); }
[data-bs-theme="light"] .password-toggle:hover { color: rgba(0,0,0,0.80); }

/* ── Login: inlogknop ── */
.btn-login {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border: none;
  border-radius: 14px !important;
  padding: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s;
}
.btn-login:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-login:active { transform: scale(0.97); }

/* ── Stap badges (nieuws.html) ── */
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  font-weight: 700; font-size: 0.8rem; transition: 0.3s;
}
[data-bs-theme="dark"] .step-badge.idle    { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.40); border: 1px solid rgba(255,255,255,0.14); }
[data-bs-theme="dark"] .step-badge.loading { background: rgba(59,130,246,0.20); color: #60a5fa; border: 1px solid rgba(59,130,246,0.40); }
[data-bs-theme="dark"] .step-badge.ok      { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.35); }
[data-bs-theme="dark"] .step-badge.error   { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.30); }
[data-bs-theme="light"] .step-badge.idle    { background: rgba(0,0,0,0.07); color: rgba(0,0,0,0.60); border: 1px solid rgba(0,0,0,0.18); }
[data-bs-theme="light"] .step-badge.loading { background: rgba(59,130,246,0.15); color: #2563eb; border: 1px solid rgba(59,130,246,0.40); }
[data-bs-theme="light"] .step-badge.ok      { background: rgba(34,197,94,0.15); color: #16a34a; border: 1px solid rgba(34,197,94,0.35); }
[data-bs-theme="light"] .step-badge.error   { background: rgba(239,68,68,0.12); color: #dc2626; border: 1px solid rgba(239,68,68,0.30); }

/* ── Light mode tekst fixes (nieuws.html) ── */
[data-bs-theme=light] .glass-card .text-white { color: #0f172a !important; }
[data-bs-theme=light] .glass-card .opacity-25 { opacity: 1 !important; color: rgba(0,0,0,0.40) !important; }
[data-bs-theme=light] .glass-card .opacity-50 { opacity: 1 !important; color: rgba(0,0,0,0.55) !important; }
[data-bs-theme=light] .glass-card h2 { color: #0f172a !important; }
[data-bs-theme=light] .glass-card small { color: rgba(0,0,0,0.60) !important; }
[data-bs-theme=light] .model-selector { color: #0f172a !important; }
[data-bs-theme=light] .model-selector label { color: #0f172a !important; }
[data-bs-theme=light] .model-selector .opacity-50 { color: rgba(0,0,0,0.60) !important; }
/* Alert-meldingen verfijnde styling per modus */
/* Donker: helder/wit tekst op gekleurde achtergrond - blijft hetzelfde */
/* Licht: donkere tekst voor leesbaarheid op lichte achtergronden */

[data-bs-theme="dark"] .alert.alert-success {
  background: linear-gradient(180deg, rgba(34,197,94,0.18), rgba(22,101,52,0.25)) !important;
  border: 1px solid rgba(34,197,94,0.40) !important;
  color: #bbf7d0 !important;
}
[data-bs-theme="dark"] .alert.alert-info {
  background: linear-gradient(180deg, rgba(0,180,255,0.18), rgba(0,90,150,0.25)) !important;
  border: 1px solid rgba(0,180,255,0.40) !important;
  color: #bae6fd !important;
}
[data-bs-theme="dark"] .alert.alert-warning {
  background: linear-gradient(180deg, rgba(245,158,11,0.18), rgba(180,83,9,0.25)) !important;
  border: 1px solid rgba(245,158,11,0.40) !important;
  color: #fed7aa !important;
}
[data-bs-theme="dark"] .alert.alert-danger {
  background: linear-gradient(180deg, rgba(239,68,68,0.18), rgba(127,29,29,0.25)) !important;
  border: 1px solid rgba(239,68,68,0.40) !important;
  color: #fecaca !important;
}

[data-bs-theme="light"] .alert.alert-success {
  background: linear-gradient(180deg, #ecfdf5, #d1fae5) !important;
  border: 1px solid rgba(22,163,74,0.40) !important;
  color: #15803d !important;
}
[data-bs-theme="light"] .alert.alert-info {
  background: linear-gradient(180deg, #f0f9ff, #e0f2fe) !important;
  border: 1px solid rgba(0,180,255,0.40) !important;
  color: #075985 !important;
}
[data-bs-theme="light"] .alert.alert-warning {
  background: linear-gradient(180deg, #fefce8, #fef3c7) !important;
  border: 1px solid rgba(245,158,11,0.40) !important;
  color: #92400e !important;
}
[data-bs-theme="light"] .alert.alert-danger {
  background: linear-gradient(180deg, #fef2f2, #fee2e2) !important;
  border: 1px solid rgba(239,68,68,0.40) !important;
  color: #b91c1c !important;
}

/* text-white class binnen alerts: overrul niet in lichte modus */
[data-bs-theme="light"] .alert.text-white { color: inherit !important; }
[data-bs-theme="light"] .alert.text-white * { color: inherit; }
[data-bs-theme=light] .btn-info.text-white { color: #fff !important; }
[data-bs-theme=light] .error-detail { color: #b91c1c !important; }

/* ── Tekstselectie lichtmodus ── */
[data-bs-theme="light"] ::selection { background: #1e3a8a; color: #fff; }
[data-bs-theme="dark"]  ::selection { background: rgba(99,102,241,0.5); color: #fff; }

/* ============================================================
   ATMOSPHERIC REFRESH — site look & feel (HETALLERBESTE)
   Cyaan + paars accenten, aurora-achtergrond, soepele animaties
   ============================================================ */

/* === Site-aurora achtergrond === */
[data-bs-theme="dark"] body {
  background:
    radial-gradient(900px 500px at 20% 15%, rgba(0,180,255,0.16), transparent 60%),
    radial-gradient(800px 500px at 80% 80%, rgba(124,58,237,0.13), transparent 60%),
    linear-gradient(180deg, #090c2e 0%, #060814 100%) fixed !important;
}
[data-bs-theme="light"] body {
  background:
    radial-gradient(900px 500px at 20% 15%, rgba(0,180,255,0.20), transparent 60%),
    radial-gradient(800px 500px at 80% 80%, rgba(124,58,237,0.16), transparent 60%),
    linear-gradient(180deg, #e8f0ff 0%, #f5f7ff 100%) fixed !important;
}

/* === Drijvende aurora overlay === */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
  animation: krantAurora 45s ease-in-out infinite;
  will-change: transform;
}
[data-bs-theme="dark"] body::after {
  background:
    radial-gradient(50% 35% at 18% 22%, rgba(0,180,255,0.12), transparent 65%),
    radial-gradient(48% 33% at 82% 78%, rgba(124,58,237,0.16), transparent 65%);
}
[data-bs-theme="light"] body::after {
  background:
    radial-gradient(50% 35% at 18% 22%, rgba(0,140,200,0.12), transparent 65%),
    radial-gradient(48% 33% at 82% 78%, rgba(99,80,200,0.10), transparent 65%);
}
@keyframes krantAurora {
  0%, 100% { transform: translate(0, 0)        scale(1); }
  33%      { transform: translate(2.5%, -1.5%) scale(1.04); }
  66%      { transform: translate(-1.8%, 1.8%) scale(0.96); }
}

/* === Soepele transitions overal === */
.glass, .glass-card, .panel, .top-nav,
.ctrl-btn, .btn, .nav-link, .login-card,
.form-control, .form-select,
.q-item, .q-act-btn, .cart-btn,
.step-badge, .badge-actief, .badge-uit, .badge-inactief, .status-badge,
.page-link, .modal-content {
  transition:
    transform   220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow  220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    background-color 220ms ease,
    color 180ms ease,
    opacity 220ms ease !important;
}

/* === Card entrance animatie === */
@keyframes krantCardFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.glass, .glass-card, .panel, .login-card {
  animation: krantCardFadeUp 600ms cubic-bezier(0.2, 0.85, 0.25, 1) backwards;
}

/* === Verfijnde glasmorphism met cyaan rand-highlight === */
.glass, .glass-card { position: relative; }
[data-bs-theme="dark"] .glass,
[data-bs-theme="dark"] .glass-card {
  background: rgba(13, 17, 56, 0.48) !important;
  border: 1px solid rgba(0, 180, 255, 0.10) !important;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;
}
[data-bs-theme="dark"] .glass::before,
[data-bs-theme="dark"] .glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0,180,255,0.30) 30%,
    rgba(124,58,237,0.30) 70%,
    transparent);
  pointer-events: none;
  border-radius: inherit;
}

/* === Hover-lifts === */
[data-bs-theme="dark"] .glass:hover,
[data-bs-theme="dark"] .glass-card:hover {
  box-shadow:
    0 24px 70px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(0,180,255,0.18),
    0 0 28px rgba(0,180,255,0.08) !important;
}
[data-bs-theme="light"] .glass:hover,
[data-bs-theme="light"] .glass-card:hover {
  box-shadow:
    0 12px 36px rgba(0,0,0,0.16),
    inset 0 0 0 1px rgba(0,140,200,0.20) !important;
}

/* === Primary + Info buttons -> site cyaan-paars gradient === */
.btn-primary,
.btn-info {
  background: linear-gradient(135deg, #00b4ff 0%, #7c3aed 100%) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0,180,255,0.28) !important;
}
.btn-primary:hover,
.btn-info:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,180,255,0.42) !important;
  opacity: 1;
  color: #fff !important;
}

/* === Btn-login: site-stijl === */
.btn-login {
  background: linear-gradient(135deg, #00b4ff 0%, #7c3aed 100%) !important;
  box-shadow: 0 4px 16px rgba(0,180,255,0.30) !important;
}
.btn-login:hover {
  box-shadow: 0 6px 22px rgba(0,180,255,0.45) !important;
}

/* === Btn-theme naar site cyaan === */
.btn-theme {
  border: 1px solid rgba(0,180,255,0.30) !important;
}
[data-bs-theme="dark"] .btn-theme {
  background: rgba(0,180,255,0.10) !important;
  color: #00b4ff !important;
}
[data-bs-theme="light"] .btn-theme {
  background: rgba(0,180,255,0.08) !important;
  color: #0088cc !important;
}
.btn-theme:hover {
  background: rgba(0,180,255,0.20) !important;
  opacity: 1;
}

/* === Form focus rings naar cyaan === */
[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus,
[data-bs-theme="dark"] .rte-content:focus {
  box-shadow: 0 0 0 3px rgba(0,180,255,0.25) !important;
  border-color: rgba(0,180,255,0.55) !important;
}
[data-bs-theme="light"] .form-control:focus,
[data-bs-theme="light"] .form-select:focus,
[data-bs-theme="light"] .rte-content:focus {
  box-shadow: 0 0 0 3px rgba(0,140,200,0.18) !important;
  border-color: rgba(0,140,200,0.55) !important;
}

/* === Checkboxen / radios in cyaan === */
.form-check-input:checked {
  background-color: #00b4ff !important;
  border-color: #00b4ff !important;
}
.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(0,180,255,0.22) !important;
  border-color: rgba(0,180,255,0.55) !important;
}

/* === Paginering active in cyaan-paars === */
.page-item.active .page-link {
  background: linear-gradient(135deg, #00b4ff, #7c3aed) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 3px 10px rgba(0,180,255,0.30) !important;
}

/* === Progress fill in site-gradient === */
.prog-fill {
  background: linear-gradient(90deg, #00b4ff, #7c3aed) !important;
}

/* === Pulse dot naar cyaan-paars (i.p.v. rood) === */
/* (laat de bestaande .pulse-dot rood blijven - is "LIVE" indicator) */

/* === Tabel hover === */
[data-bs-theme="dark"] .table tbody tr:hover td {
  background: rgba(0,180,255,0.05) !important;
}
[data-bs-theme="light"] .table tbody tr:hover td {
  background: rgba(0,180,255,0.04) !important;
}

/* === Nav-link active in cyaan accent === */
[data-bs-theme="dark"] .nav-link.active {
  background: rgba(0,180,255,0.12) !important;
  color: #00b4ff !important;
}
[data-bs-theme="light"] .nav-link.active {
  background: rgba(0,180,255,0.10) !important;
  color: #0088cc !important;
}

/* === Modern dunne scrollbars met cyaan === */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
[data-bs-theme="dark"] ::-webkit-scrollbar-thumb {
  background: rgba(0,180,255,0.22) !important;
  border-radius: 4px;
  transition: background 200ms ease;
}
[data-bs-theme="dark"] ::-webkit-scrollbar-thumb:hover {
  background: rgba(0,180,255,0.42) !important;
}
[data-bs-theme="light"] ::-webkit-scrollbar-thumb {
  background: rgba(0,140,200,0.28) !important;
  border-radius: 4px;
}
[data-bs-theme="light"] ::-webkit-scrollbar-thumb:hover {
  background: rgba(0,140,200,0.48) !important;
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,180,255,0.30) transparent;
}
[data-bs-theme="light"] * {
  scrollbar-color: rgba(0,140,200,0.35) transparent;
}

/* === Tekstselectie === */
[data-bs-theme="dark"] ::selection {
  background: rgba(0,180,255,0.45);
  color: #fff;
}
[data-bs-theme="light"] ::selection {
  background: rgba(0,140,200,0.32);
  color: #003a55;
}

/* === RTE toolbar focus cyaan === */
[data-bs-theme="dark"] .rte-btn:hover {
  background: rgba(0,180,255,0.15) !important;
  color: #00b4ff !important;
}
[data-bs-theme="light"] .rte-btn:hover {
  background: rgba(0,180,255,0.10) !important;
  color: #0088cc !important;
}

/* === Q-act-btn hover cyaan === */
[data-bs-theme="dark"] .q-act-btn:hover {
  background: rgba(0,180,255,0.15) !important;
  color: #00b4ff !important;
  border-color: rgba(0,180,255,0.30) !important;
}
[data-bs-theme="light"] .q-act-btn:hover {
  background: rgba(0,180,255,0.08) !important;
  color: #0088cc !important;
}

/* === Modal verfijning === */
[data-bs-theme="dark"] .modal-content {
  background: rgba(13, 17, 56, 0.96) !important;
  border: 1px solid rgba(0,180,255,0.15) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
}
[data-bs-theme="light"] .modal-content {
  border: 1px solid rgba(0,180,255,0.18) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18) !important;
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  body::after { animation: none !important; }
  .glass, .glass-card, .panel, .login-card { animation: none !important; }
  .glass, .glass-card, .panel, .top-nav,
  .ctrl-btn, .btn, .nav-link,
  .form-control, .form-select,
  .q-item, .q-act-btn, .cart-btn {
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   LICHTE MODUS — verfijnde knoppen
   ============================================================ */

/* === Algemene control button === */
[data-bs-theme="light"] .ctrl-btn {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  color: #1e293b;
  font-weight: 600;
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
[data-bs-theme="light"] .ctrl-btn:hover {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border-color: rgba(0, 180, 255, 0.35) !important;
  color: #0088cc;
  box-shadow:
    0 4px 12px rgba(0, 180, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

/* === Ghost button === */
[data-bs-theme="light"] .btn-ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.85) 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  color: #475569 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
[data-bs-theme="light"] .btn-ghost:hover {
  background: linear-gradient(180deg, rgba(0,180,255,0.06) 0%, rgba(124,58,237,0.04) 100%) !important;
  border-color: rgba(0, 180, 255, 0.35) !important;
  color: #0088cc !important;
  box-shadow: 0 3px 10px rgba(0, 180, 255, 0.14);
  transform: translateY(-1px);
}

/* === Danger soft === */
[data-bs-theme="light"] .btn-danger-soft {
  background: linear-gradient(180deg, #fff5f5 0%, #ffe9e9 100%) !important;
  border: 1px solid rgba(239, 68, 68, 0.28) !important;
  color: #dc2626 !important;
  box-shadow: 0 1px 3px rgba(239, 68, 68, 0.10);
}
[data-bs-theme="light"] .btn-danger-soft:hover {
  background: linear-gradient(180deg, #fee2e2 0%, #fecaca 100%) !important;
  border-color: rgba(239, 68, 68, 0.45) !important;
  color: #b91c1c !important;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25);
  transform: translateY(-1px);
}

/* === Thema-toggle button === */
[data-bs-theme="light"] .btn-theme {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.10) 0%, rgba(124, 58, 237, 0.08) 100%) !important;
  border: 1px solid rgba(0, 180, 255, 0.28) !important;
  color: #0088cc !important;
  box-shadow:
    0 2px 6px rgba(0, 180, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
[data-bs-theme="light"] .btn-theme:hover {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.18) 0%, rgba(124, 58, 237, 0.15) 100%) !important;
  box-shadow:
    0 4px 14px rgba(0, 180, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
  opacity: 1;
}

/* === Speler-knoppen: Play, Stop, Pauze === */
[data-bs-theme="light"] .btn-play {
  background: linear-gradient(180deg, #34d399 0%, #16a34a 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(22, 163, 74, 0.50) !important;
  box-shadow:
    0 4px 12px rgba(22, 163, 74, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
  font-weight: 700;
}
[data-bs-theme="light"] .btn-play:hover {
  background: linear-gradient(180deg, #22c55e 0%, #15803d 100%) !important;
  box-shadow:
    0 6px 18px rgba(22, 163, 74, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
  transform: translateY(-1px);
}

[data-bs-theme="light"] .btn-stop {
  background: linear-gradient(180deg, #f87171 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(220, 38, 38, 0.50) !important;
  box-shadow:
    0 4px 12px rgba(220, 38, 38, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
  font-weight: 700;
}
[data-bs-theme="light"] .btn-stop:hover {
  background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%) !important;
  box-shadow:
    0 6px 18px rgba(220, 38, 38, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
  transform: translateY(-1px);
}

[data-bs-theme="light"] .btn-pause {
  background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(217, 119, 6, 0.50) !important;
  box-shadow:
    0 4px 12px rgba(245, 158, 11, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
  font-weight: 700;
}
[data-bs-theme="light"] .btn-pause:hover {
  background: linear-gradient(180deg, #f59e0b 0%, #b45309 100%) !important;
  box-shadow:
    0 6px 18px rgba(245, 158, 11, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
  transform: translateY(-1px);
}

/* === Mode-button (AutoDJ, Assisted, Input) === */
[data-bs-theme="light"] .btn-mode {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, rgba(168, 85, 247, 0.10) 100%) !important;
  border: 1px solid rgba(124, 58, 237, 0.28) !important;
  color: #6d28d9 !important;
  font-weight: 600;
  box-shadow:
    0 2px 6px rgba(124, 58, 237, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}
[data-bs-theme="light"] .btn-mode:hover {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.15) 0%, rgba(168, 85, 247, 0.18) 100%) !important;
  border-color: rgba(124, 58, 237, 0.42) !important;
  color: #5b21b6 !important;
  box-shadow:
    0 4px 14px rgba(124, 58, 237, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-1px);
}

/* === Cart-buttons (orange jingles) === */
[data-bs-theme="light"] .cart-btn {
  background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%) !important;
  border: 1px solid rgba(245, 158, 11, 0.35) !important;
  color: #b45309 !important;
  box-shadow:
    0 2px 6px rgba(245, 158, 11, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-weight: 700;
}
[data-bs-theme="light"] .cart-btn:hover {
  background: linear-gradient(180deg, #fde68a 0%, #fcd34d 100%) !important;
  border-color: rgba(245, 158, 11, 0.55) !important;
  color: #92400e !important;
  box-shadow:
    0 4px 14px rgba(245, 158, 11, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* === Queue-action button === */
[data-bs-theme="light"] .q-act-btn {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  color: #475569 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  font-weight: 600;
}
[data-bs-theme="light"] .q-act-btn:hover {
  background: linear-gradient(180deg, rgba(0,180,255,0.06) 0%, rgba(0,180,255,0.10) 100%) !important;
  border-color: rgba(0, 180, 255, 0.35) !important;
  color: #0088cc !important;
  box-shadow: 0 3px 10px rgba(0, 180, 255, 0.14);
}
[data-bs-theme="light"] .q-act-del {
  background: linear-gradient(180deg, #fff5f5 0%, #ffe9e9 100%) !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
  color: #dc2626 !important;
}
[data-bs-theme="light"] .q-act-del:hover {
  background: linear-gradient(180deg, #fee2e2 0%, #fecaca 100%) !important;
  border-color: rgba(239, 68, 68, 0.45) !important;
  color: #b91c1c !important;
  box-shadow: 0 3px 10px rgba(239, 68, 68, 0.22);
}

/* === Bootstrap outline-buttons (in event.html: Run, etc.) === */
[data-bs-theme="light"] .btn-outline-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.15) !important;
  color: #475569 !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
[data-bs-theme="light"] .btn-outline-secondary:hover {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%) !important;
  color: #0f172a !important;
  border-color: rgba(15, 23, 42, 0.25) !important;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.10);
  transform: translateY(-1px);
}

[data-bs-theme="light"] .btn-outline-warning {
  background: linear-gradient(180deg, #fefce8 0%, #fef9c3 100%) !important;
  border: 1px solid rgba(202, 138, 4, 0.35) !important;
  color: #a16207 !important;
  box-shadow: 0 1px 3px rgba(202, 138, 4, 0.10);
}
[data-bs-theme="light"] .btn-outline-warning:hover {
  background: linear-gradient(180deg, #fef9c3 0%, #fef08a 100%) !important;
  border-color: rgba(202, 138, 4, 0.55) !important;
  color: #854d0e !important;
  box-shadow: 0 4px 14px rgba(202, 138, 4, 0.30);
  transform: translateY(-1px);
}

[data-bs-theme="light"] .btn-outline-success {
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%) !important;
  border: 1px solid rgba(22, 163, 74, 0.35) !important;
  color: #15803d !important;
  box-shadow: 0 1px 3px rgba(22, 163, 74, 0.10);
}
[data-bs-theme="light"] .btn-outline-success:hover {
  background: linear-gradient(180deg, #dcfce7 0%, #bbf7d0 100%) !important;
  border-color: rgba(22, 163, 74, 0.55) !important;
  color: #166534 !important;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.28);
  transform: translateY(-1px);
}

[data-bs-theme="light"] .btn-outline-danger {
  background: linear-gradient(180deg, #fff5f5 0%, #ffe9e9 100%) !important;
  border: 1px solid rgba(239, 68, 68, 0.35) !important;
  color: #b91c1c !important;
  box-shadow: 0 1px 3px rgba(239, 68, 68, 0.10);
}
[data-bs-theme="light"] .btn-outline-danger:hover {
  background: linear-gradient(180deg, #fee2e2 0%, #fecaca 100%) !important;
  border-color: rgba(239, 68, 68, 0.55) !important;
  color: #991b1b !important;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.28);
  transform: translateY(-1px);
}

[data-bs-theme="light"] .btn-outline-light {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  color: #1e293b !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
[data-bs-theme="light"] .btn-outline-light:hover {
  background: linear-gradient(180deg, rgba(0,180,255,0.08) 0%, rgba(0,180,255,0.12) 100%) !important;
  border-color: rgba(0, 180, 255, 0.35) !important;
  color: #0088cc !important;
  box-shadow: 0 3px 12px rgba(0, 180, 255, 0.16);
  transform: translateY(-1px);
}

/* === Paginering === */
[data-bs-theme="light"] .page-link {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  color: #475569 !important;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
[data-bs-theme="light"] .page-link:hover {
  background: linear-gradient(180deg, rgba(0,180,255,0.05) 0%, rgba(0,180,255,0.10) 100%) !important;
  border-color: rgba(0, 180, 255, 0.30) !important;
  color: #0088cc !important;
  box-shadow: 0 3px 8px rgba(0, 180, 255, 0.15);
}
[data-bs-theme="light"] .page-item.active .page-link {
  box-shadow: 0 4px 12px rgba(0, 180, 255, 0.30) !important;
}

/* === Press/Active state — alle knoppen === */
[data-bs-theme="light"] .ctrl-btn:active,
[data-bs-theme="light"] .btn:active,
[data-bs-theme="light"] .cart-btn:active,
[data-bs-theme="light"] .q-act-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06) !important;
}

/* === Disabled state === */
[data-bs-theme="light"] .btn:disabled,
[data-bs-theme="light"] .ctrl-btn:disabled {
  opacity: 0.50;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================================
   LICHTE MODUS — Bootstrap badges + icoon-actieknoppen
   ============================================================ */

/* === Bootstrap badges met gradient + glow === */
[data-bs-theme="light"] .badge.bg-success {
  background: linear-gradient(180deg, #4ade80 0%, #16a34a 100%) !important;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 11px;
  box-shadow:
    0 2px 5px rgba(22, 163, 74, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
[data-bs-theme="light"] .badge.bg-warning {
  background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%) !important;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 11px;
  box-shadow:
    0 2px 5px rgba(245, 158, 11, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
[data-bs-theme="light"] .badge.bg-danger {
  background: linear-gradient(180deg, #f87171 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 11px;
  box-shadow:
    0 2px 5px rgba(220, 38, 38, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
[data-bs-theme="light"] .badge.bg-primary,
[data-bs-theme="light"] .badge.bg-info {
  background: linear-gradient(180deg, #38bdf8 0%, #0088cc 100%) !important;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 11px;
  box-shadow:
    0 2px 5px rgba(0, 180, 255, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* === Donker thema badges - subtielere verfijning === */
[data-bs-theme="dark"] .badge.bg-success {
  background: linear-gradient(180deg, #22c55e 0%, #15803d 100%) !important;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-weight: 700;
  font-size: 0.78rem;
}
[data-bs-theme="dark"] .badge.bg-warning {
  background: linear-gradient(180deg, #f59e0b 0%, #b45309 100%) !important;
  color: #fff !important;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-weight: 700;
  font-size: 0.78rem;
}
[data-bs-theme="dark"] .badge.bg-danger {
  background: linear-gradient(180deg, #ef4444 0%, #991b1b 100%) !important;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-weight: 700;
  font-size: 0.78rem;
}

/* === Btn-outline-primary (Edit icon) lichte modus === */
[data-bs-theme="light"] .btn-outline-primary {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%) !important;
  border: 1px solid rgba(0, 180, 255, 0.40) !important;
  color: #0088cc !important;
  box-shadow: 0 1px 3px rgba(0, 180, 255, 0.12);
}
[data-bs-theme="light"] .btn-outline-primary:hover {
  background: linear-gradient(180deg, rgba(0,180,255,0.10) 0%, rgba(0,180,255,0.18) 100%) !important;
  border-color: rgba(0, 180, 255, 0.60) !important;
  color: #0066aa !important;
  box-shadow: 0 4px 14px rgba(0, 180, 255, 0.28);
  transform: translateY(-1px);
}

/* === btn-outline-primary donker thema === */
[data-bs-theme="dark"] .btn-outline-primary {
  background: rgba(0, 180, 255, 0.08) !important;
  border: 1px solid rgba(0, 180, 255, 0.30) !important;
  color: #38bdf8 !important;
}
[data-bs-theme="dark"] .btn-outline-primary:hover {
  background: rgba(0, 180, 255, 0.18) !important;
  border-color: rgba(0, 180, 255, 0.55) !important;
  color: #7dd3fc !important;
  box-shadow: 0 4px 14px rgba(0, 180, 255, 0.25);
  transform: translateY(-1px);
}

/* === Icon-only actie-knoppen (.btn-action): vierkant en compact === */
.btn-action {
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.92rem !important;
  border-radius: 10px !important;
  flex-shrink: 0;
  font-weight: 600;
}
.btn-action i {
  margin: 0 !important;
  line-height: 1;
}

/* Actie-icoontjes lift bij hover */
.btn-action:hover { transform: translateY(-1px) scale(1.03); }
.btn-action:active { transform: translateY(0) scale(0.95); }

/* ============================================================
   DONKERE MODUS - verfijnde knoppen (matchen lichte modus)
   ============================================================ */

/* === Algemene control button === */
[data-bs-theme="dark"] .ctrl-btn {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
[data-bs-theme="dark"] .ctrl-btn:hover {
  background: linear-gradient(180deg, rgba(0, 180, 255, 0.18) 0%, rgba(0, 180, 255, 0.08) 100%);
  border-color: rgba(0, 180, 255, 0.45) !important;
  color: #7dd3fc;
  box-shadow:
    0 4px 14px rgba(0, 180, 255, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transform: translateY(-1px);
}

/* === Ghost button === */
[data-bs-theme="dark"] .btn-ghost {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.85) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: rgba(255, 255, 255, 0.80) !important;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
[data-bs-theme="dark"] .btn-ghost:hover {
  background: linear-gradient(180deg, rgba(0, 180, 255, 0.18) 0%, rgba(124, 58, 237, 0.10) 100%) !important;
  border-color: rgba(0, 180, 255, 0.45) !important;
  color: #7dd3fc !important;
  box-shadow:
    0 4px 14px rgba(0, 180, 255, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* === Danger soft === */
[data-bs-theme="dark"] .btn-danger-soft {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.18) 0%, rgba(127, 29, 29, 0.30) 100%) !important;
  border: 1px solid rgba(239, 68, 68, 0.30) !important;
  color: #fca5a5 !important;
  box-shadow:
    0 1px 3px rgba(239, 68, 68, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
[data-bs-theme="dark"] .btn-danger-soft:hover {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.28) 0%, rgba(220, 38, 38, 0.40) 100%) !important;
  border-color: rgba(239, 68, 68, 0.55) !important;
  color: #fecaca !important;
  box-shadow:
    0 4px 14px rgba(239, 68, 68, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* === Thema-toggle button === */
[data-bs-theme="dark"] .btn-theme {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.15) 0%, rgba(124, 58, 237, 0.12) 100%) !important;
  border: 1px solid rgba(0, 180, 255, 0.32) !important;
  color: #7dd3fc !important;
  box-shadow:
    0 2px 6px rgba(0, 180, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
[data-bs-theme="dark"] .btn-theme:hover {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.25) 0%, rgba(124, 58, 237, 0.20) 100%) !important;
  border-color: rgba(0, 180, 255, 0.55) !important;
  box-shadow:
    0 4px 14px rgba(0, 180, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transform: translateY(-1px);
  opacity: 1;
}

/* === Speler-knoppen: Play, Stop, Pauze === */
[data-bs-theme="dark"] .btn-play {
  background: linear-gradient(180deg, #16a34a 0%, #15803d 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(22, 163, 74, 0.55) !important;
  box-shadow:
    0 4px 12px rgba(22, 163, 74, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  font-weight: 700;
}
[data-bs-theme="dark"] .btn-play:hover {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%) !important;
  box-shadow:
    0 6px 18px rgba(22, 163, 74, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.20) !important;
  transform: translateY(-1px);
}

[data-bs-theme="dark"] .btn-stop {
  background: linear-gradient(180deg, #dc2626 0%, #991b1b 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(220, 38, 38, 0.55) !important;
  box-shadow:
    0 4px 12px rgba(220, 38, 38, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  font-weight: 700;
}
[data-bs-theme="dark"] .btn-stop:hover {
  background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%) !important;
  box-shadow:
    0 6px 18px rgba(220, 38, 38, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.20) !important;
  transform: translateY(-1px);
}

[data-bs-theme="dark"] .btn-pause {
  background: linear-gradient(180deg, #d97706 0%, #b45309 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(217, 119, 6, 0.55) !important;
  box-shadow:
    0 4px 12px rgba(245, 158, 11, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  font-weight: 700;
}
[data-bs-theme="dark"] .btn-pause:hover {
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%) !important;
  box-shadow:
    0 6px 18px rgba(245, 158, 11, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.20) !important;
  transform: translateY(-1px);
}

/* === Mode-button (AutoDJ, Assisted, Input) === */
[data-bs-theme="dark"] .btn-mode {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.18) 0%, rgba(91, 33, 182, 0.25) 100%) !important;
  border: 1px solid rgba(124, 58, 237, 0.38) !important;
  color: #c4b5fd !important;
  font-weight: 600;
  box-shadow:
    0 2px 6px rgba(124, 58, 237, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}
[data-bs-theme="dark"] .btn-mode:hover {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.28) 0%, rgba(91, 33, 182, 0.35) 100%) !important;
  border-color: rgba(124, 58, 237, 0.55) !important;
  color: #ddd6fe !important;
  box-shadow:
    0 4px 14px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-1px);
}

/* === Cart-buttons (orange jingles) === */
[data-bs-theme="dark"] .cart-btn {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.15) 0%, rgba(180, 83, 9, 0.22) 100%) !important;
  border: 1px solid rgba(245, 158, 11, 0.30) !important;
  color: #fbbf24 !important;
  box-shadow:
    0 2px 6px rgba(245, 158, 11, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-weight: 700;
}
[data-bs-theme="dark"] .cart-btn:hover {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.25) 0%, rgba(180, 83, 9, 0.32) 100%) !important;
  border-color: rgba(245, 158, 11, 0.50) !important;
  color: #fde68a !important;
  box-shadow:
    0 4px 14px rgba(245, 158, 11, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* === Queue-action button === */
[data-bs-theme="dark"] .q-act-btn {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: rgba(255, 255, 255, 0.65) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.30);
  font-weight: 600;
}
[data-bs-theme="dark"] .q-act-btn:hover {
  background: linear-gradient(180deg, rgba(0, 180, 255, 0.20) 0%, rgba(0, 180, 255, 0.10) 100%) !important;
  border-color: rgba(0, 180, 255, 0.45) !important;
  color: #7dd3fc !important;
  box-shadow: 0 3px 10px rgba(0, 180, 255, 0.28);
}
[data-bs-theme="dark"] .q-act-del {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.15) 0%, rgba(127, 29, 29, 0.25) 100%) !important;
  border-color: rgba(239, 68, 68, 0.30) !important;
  color: #fca5a5 !important;
}
[data-bs-theme="dark"] .q-act-del:hover {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.30) 0%, rgba(127, 29, 29, 0.45) 100%) !important;
  border-color: rgba(239, 68, 68, 0.55) !important;
  color: #fecaca !important;
  box-shadow: 0 3px 10px rgba(239, 68, 68, 0.32);
}

/* === Bootstrap outline-buttons === */
[data-bs-theme="dark"] .btn-outline-secondary {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.85) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
[data-bs-theme="dark"] .btn-outline-secondary:hover {
  background: linear-gradient(180deg, rgba(71, 85, 105, 0.55) 0%, rgba(51, 65, 85, 0.70) 100%) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.30) !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

[data-bs-theme="dark"] .btn-outline-warning {
  background: linear-gradient(180deg, rgba(202, 138, 4, 0.18) 0%, rgba(133, 77, 14, 0.25) 100%) !important;
  border: 1px solid rgba(202, 138, 4, 0.40) !important;
  color: #fde68a !important;
  box-shadow: 0 1px 3px rgba(202, 138, 4, 0.20);
}
[data-bs-theme="dark"] .btn-outline-warning:hover {
  background: linear-gradient(180deg, rgba(202, 138, 4, 0.28) 0%, rgba(133, 77, 14, 0.40) 100%) !important;
  border-color: rgba(202, 138, 4, 0.65) !important;
  color: #fef3c7 !important;
  box-shadow: 0 4px 14px rgba(202, 138, 4, 0.42);
  transform: translateY(-1px);
}

[data-bs-theme="dark"] .btn-outline-success {
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.18) 0%, rgba(20, 83, 45, 0.30) 100%) !important;
  border: 1px solid rgba(22, 163, 74, 0.40) !important;
  color: #86efac !important;
  box-shadow: 0 1px 3px rgba(22, 163, 74, 0.20);
}
[data-bs-theme="dark"] .btn-outline-success:hover {
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.30) 0%, rgba(20, 83, 45, 0.45) 100%) !important;
  border-color: rgba(22, 163, 74, 0.65) !important;
  color: #bbf7d0 !important;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.40);
  transform: translateY(-1px);
}

[data-bs-theme="dark"] .btn-outline-danger {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.15) 0%, rgba(127, 29, 29, 0.28) 100%) !important;
  border: 1px solid rgba(239, 68, 68, 0.40) !important;
  color: #fca5a5 !important;
  box-shadow: 0 1px 3px rgba(239, 68, 68, 0.20);
}
[data-bs-theme="dark"] .btn-outline-danger:hover {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.28) 0%, rgba(127, 29, 29, 0.45) 100%) !important;
  border-color: rgba(239, 68, 68, 0.65) !important;
  color: #fecaca !important;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.40);
  transform: translateY(-1px);
}

[data-bs-theme="dark"] .btn-outline-light {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.85) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
[data-bs-theme="dark"] .btn-outline-light:hover {
  background: linear-gradient(180deg, rgba(0, 180, 255, 0.18) 0%, rgba(0, 180, 255, 0.08) 100%) !important;
  border-color: rgba(0, 180, 255, 0.45) !important;
  color: #7dd3fc !important;
  box-shadow: 0 3px 12px rgba(0, 180, 255, 0.30);
  transform: translateY(-1px);
}

/* === Paginering === */
[data-bs-theme="dark"] .page-link {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.85) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: rgba(255, 255, 255, 0.80) !important;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.30);
}
[data-bs-theme="dark"] .page-link:hover {
  background: linear-gradient(180deg, rgba(0, 180, 255, 0.18) 0%, rgba(0, 180, 255, 0.08) 100%) !important;
  border-color: rgba(0, 180, 255, 0.40) !important;
  color: #7dd3fc !important;
  box-shadow: 0 3px 8px rgba(0, 180, 255, 0.28);
}
[data-bs-theme="dark"] .page-item.active .page-link {
  box-shadow: 0 4px 12px rgba(0, 180, 255, 0.40) !important;
}

/* === Press/Active state - alle knoppen === */
[data-bs-theme="dark"] .ctrl-btn:active,
[data-bs-theme="dark"] .btn:active,
[data-bs-theme="dark"] .cart-btn:active,
[data-bs-theme="dark"] .q-act-btn:active,
[data-bs-theme="dark"] .page-link:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.50) !important;
}

/* === Disabled state === */
[data-bs-theme="dark"] .btn:disabled,
[data-bs-theme="dark"] .ctrl-btn:disabled {
  opacity: 0.40;
  cursor: not-allowed;
  transform: none !important;
}

/* === Form-control focus in dark === */
[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
  box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.25) !important;
  border-color: rgba(0, 180, 255, 0.55) !important;
}

/* === Btn-outline-primary (Edit icon) in donker === */
[data-bs-theme="dark"] .btn-outline-primary {
  background: linear-gradient(180deg, rgba(0, 180, 255, 0.12) 0%, rgba(0, 90, 150, 0.20) 100%) !important;
  border: 1px solid rgba(0, 180, 255, 0.40) !important;
  color: #7dd3fc !important;
  box-shadow:
    0 1px 3px rgba(0, 180, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
[data-bs-theme="dark"] .btn-outline-primary:hover {
  background: linear-gradient(180deg, rgba(0, 180, 255, 0.22) 0%, rgba(0, 90, 150, 0.32) 100%) !important;
  border-color: rgba(0, 180, 255, 0.65) !important;
  color: #bae6fd !important;
  box-shadow:
    0 4px 14px rgba(0, 180, 255, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* ============================================================
   THEMA-KAARTEN (dashboard 'Site Thema's' paneel)
   ============================================================ */
.theme-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  height: 100%;
  transition: transform 220ms cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 220ms cubic-bezier(0.2,0.8,0.2,1),
              border-color 220ms ease,
              background 220ms ease;
}
[data-bs-theme="dark"] .theme-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 6px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.04);
}
[data-bs-theme="light"] .theme-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 2px 6px rgba(15,23,42,0.05);
}
.theme-card:hover {
  transform: translateY(-2px);
}
[data-bs-theme="dark"] .theme-card:hover {
  background: linear-gradient(180deg, rgba(0,180,255,0.06), rgba(255,255,255,0.03));
  border-color: rgba(0,180,255,0.25);
  box-shadow: 0 6px 18px rgba(0,180,255,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
}
[data-bs-theme="light"] .theme-card:hover {
  border-color: rgba(0,180,255,0.32);
  box-shadow: 0 6px 18px rgba(0,180,255,0.18);
}

.theme-card-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  line-height: 1;
}
[data-bs-theme="dark"]  .theme-card-icon { background: rgba(0,180,255,0.08);  border: 1px solid rgba(0,180,255,0.15); }
[data-bs-theme="light"] .theme-card-icon { background: rgba(0,180,255,0.08);  border: 1px solid rgba(0,180,255,0.18); }

.theme-card-info {
  flex: 1;
  min-width: 0;
}
.theme-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 2px;
}
.theme-card-desc {
  font-size: 0.78rem;
  line-height: 1.4;
}
[data-bs-theme="dark"]  .theme-card-desc { color: rgba(255,255,255,0.55); }
[data-bs-theme="light"] .theme-card-desc { color: rgba(15,23,42,0.55); }

.theme-card-select {
  flex-shrink: 0;
  width: 140px;
  cursor: pointer;
}

@media (max-width: 540px) {
  .theme-card { flex-wrap: wrap; padding: 14px; gap: 10px; }
  .theme-card-select { width: 100%; }
}
