/* ─────────────────────────────────────────
   LIGHT THEME (default SB Admin 2 style)
───────────────────────────────────────── */
/* :root {
  --bg-base: #f8f9fc;
  --bg-surface: #ffffff;
  --bg-elevated: #ffffff;
  --bg-hover: #f1f3f9;

  --border: #e3e6f0;
  --border-subtle: #eaecf4;

  --text-primary: #5a5c69;
  --text-secondary: #858796;
  --text-muted: #b7b9cc;
  --text-inverse: #ffffff;

  --accent: #4e73df;

  --promoter: #1cc88a;
  --passive: #f6c23e;
  --detractor: #e74a3b;
} */

/* ─────────────────────────────────────────
   DARK THEME (your custom palette)
───────────────────────────────────────── */
/* [data-theme="dark"] {
  --white: #0d1117;

  --gray: #8b949e;
  --gray-dark: #e6edf3;

  --primary: #00d4aa;
  --secondary: #8b949e;

  --success: #39d353;
  --info: #36b9cc;
  --warning: #f0c04a;
  --danger: #f85149;

  --light: #161b22;
  --dark: #e6edf3;

  --body-bg: #0d1117;
  --body-color: #e6edf3;
}

[data-theme="dark"] body {
  background-color: var(--body-bg);
  color: var(--body-color);
}

[data-theme="dark"] #wrapper #content-wrapper {
    background-color: var(--body-bg);
    color: var(--body-color);
}

[data-theme="dark"] .card {
  background-color: var(--light);
  border-color: #30363d;
}

[data-theme="dark"] .topbar,
[data-theme="dark"] .sidebar {
  background-color: #161b22;
} */



/* Additional Changes */

.table-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

/* info text */
.table-footer .dataTables_info {
  padding: 0;
  font-size: 0.85rem;
  color: #858796;
}

/* pagination alignment */
.table-footer .dataTables_paginate {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}
#npsTable_filter {
  display: none;
}
.controls-row .btn.active {
  box-shadow: 0 0 0 0.15rem rgba(78, 115, 223, 0.25);
}