/* Coluna de Foto fixa no DataTable */
table tbody tr td:first-child,
table thead tr th:first-child {
  position: sticky !important;
  left: 0 !important;
  z-index: 10 !important;
  background-color: white !important;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  table tbody tr td:first-child,
  table thead tr th:first-child {
    background-color: #1a1a1a !important;
  }
}
