/* ---------- COMPONENTS: TABLES ---------- */
.table-shell {
  margin-top: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.table-shell--wide {
  overflow-x: auto;
}

.table-shell--wide .dash-table {
  min-width: 1600px;
}

.table-shell--compact {
  margin-top: 0;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
}

.dash-table thead {
  background: #f8fafc;
}

.dash-table th {
  padding: 12px;
  font-size: 13px;
  color: #6b7280;
  text-align: left;
}

.dash-table td {
  padding: 12px;
  font-size: 14px;
  color: #0f172a;
  border-top: 1px solid #e5e7eb;
}

.dash-table tr {
  transition: background 140ms ease;
}

.dash-table tr:hover {
  background: #f8fafc;
}

.pagination-loading {
  font-size: 12px;
  color: #64748b;
}

.btn.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.pagination-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #475569;
  user-select: none;
}

.pagination-toggle input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--accent-color);
}

.pagination-toggle__state {
  padding: 2px 8px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #0f172a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

[hidden] {
  display: none !important;
}

