.c-table {
  @apply w-full border-collapse;
}

.c-table__th {
  @apply text-left p-4 border-b border-border text-tx-2;
  @apply whitespace-nowrap px-8 py-2 font-medium bg-border;
}

.c-box > .c-table .c-table__th:first-child,
.c-box > :first-child:not(.c-box__header) .c-table .c-table__th:first-child {
  @apply rounded-tl-2xl;
}

.c-box > .c-table .c-table__th:last-child,
.c-box > :first-child:not(.c-box__header) .c-table .c-table__th:last-child {
  @apply rounded-tr-2xl;
}

.c-table tbody {
  @apply divide-y divide-light-ui;
}

.c-table__tr:hover {
  @apply bg-bg-2;
}

.c-table__tr {
  @apply bg-bg;
}

.c-box > :last-child .c-table__tr:last-child td:first-child {
  @apply rounded-bl-2xl;
}

.c-box > :last-child .c-table__tr:last-child td:last-child {
  @apply rounded-br-2xl;
}

.c-table__tr td {
  @apply p-4;
  @apply px-8 py-2;
}

.c-table__action-button {
  @apply text-light-tx-3 hover:text-light-tx-2 focus:outline-none focus:text-gray-600 cursor-pointer px-2;
}
