.table,
.content-block table {
  th,
  thead td,
  td {
    @apply px-6 py-4;
  }

  th,
  thead td {
    @apply bg-black text-white;
  }
}

.table--striped,
.content-block table {
  tr:nth-child(even) td {
    @apply bg-grey-100;
  }
}

.table--bordered,
.content-block table {
  th,
  thead td {
    @apply border border-grey-500;
  }

  td {
    @apply border border-grey-150;
  }
}

.table--condensed {
  th,
  thead td,
  td {
    @apply p-2;
  }
}