
/* Admin tables: dark theme with clear contrast */
.table-dark {
  --bs-table-bg: #0f1a21;
  --bs-table-color: #e2e8f0;
  --bs-table-border-color: var(--stroke);
}
.table-dark thead th {
  color: #c0ffc0;
  border-bottom-color: var(--stroke);
}
.table-dark td, .table-dark th {
  color: #e2e8f0;
  border-color: var(--stroke);
}
/* Stripes + hover */
.table.table-striped > tbody > tr:nth-of-type(odd) > * {
  background: rgba(255,255,255,0.02);
}
.table.table-hover > tbody > tr:hover > * {
  background: rgba(192,255,192,0.06);
}
/* Prevent unwanted transparency */
.table > :not(caption) > * > * {
    background-color: transparent !important;
    border-bottom-color: var(--stroke) !important;
    color: #b7c4d4;
}
/* Links inside tables */
.table a { color: #c0ffc0; text-decoration: none; }
.table a:hover { color: #dbffdb; text-decoration: underline; }
/* Small text slightly brighter */
.table .small, .table small { color:#b7c4d4 !important; }

/* Nav-pills for Admin tabs */
.nav-pills .nav-link {
  color:#cbd5e1;
  border:1px solid var(--stroke);
  background:#0b141a;
}
.nav-pills .nav-link:hover { color:#e2e8f0; background:#0d1920; }
.nav-pills .nav-link.active {
  color:#0f1a21;
  background:#c0ffc0;
  border-color:#c0ffc0;
  box-shadow: 0 0 0 6px rgba(192,255,192,.08);
}

/* Action buttons */
.btn-danger {
  background:#ef4444; border-color:#ef4444; color:#fff; font-weight:600;
}
.btn-danger:hover { background:#dc2626; border-color:#dc2626; }

.btn-outline-light {
  border:1px solid var(--stroke); color:#cbd5e1; background:transparent;
}
.btn-outline-light:hover { background:#0d1920; color:#e2e8f0; }
