.table {
  --bs-table-color-state: var(--bs-body-color);
}
.table tbody tr:last-child {
  border-bottom-color: transparent;
}
.table td > * {
  vertical-align: middle;
}
.table th {
  white-space:nowrap
}

/* When defining django-table2 columns, prefer `cell-` classes for styling table columns for more 
   consistent styling between tables e.g.                                                         
   count = tables.Column(attrs={"cell": {"class": "cell-number"}}) */
.cell-number {
  text-align: right;
}

.cell-boolean {
  text-align: center;
}

.cell-date-time,
.cell-date {
  white-space:nowrap
}