.table-container {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone);
  overflow: hidden;
}

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

thead tr { background: var(--navy) !important; }

th {
  padding: 16px 20px;
  text-align: right;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-inverse);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--navy-500);
}

td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--stone);
}

tbody tr:nth-child(even) td { background: var(--marble-light); }
tbody tr:hover td { background: var(--gold-50); }

.branch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 2px 10px;
  background: var(--gold-100);
  color: var(--gold-800);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
}

.actions-cell { white-space: nowrap; }
