table tr:not(:first-child) {
  @apply !border-white border-2;
}

table tr:nth-child(even) {
  @apply bg-gray-100;
}

table :not(thead) tr:hover {
  background-color: var(--primary-500);
  color: var(--text-primary-500);
}

table tr td,
table tr th {
  @apply !p-4;
}

table tr td {
  @apply border-white border-l-2 border-r-2;
}
