.table-container {
  overflow: auto;
  width: 100%;
  height: 100%;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  height: 100%;
}

table thead {
  background-color: var(--fourth-color-200);
  height: 40px;
  font-size: 12px;
}

table tbody {
  font-size: 12px;
}

table thead tr th {
  font-weight: 600;
  text-align: left;
  padding: 4px 8px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--fourth-color-300);
  color: var(--third-color-950);
}

table tbody tr td {
  padding: 4px 8px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--fourth-color-200);
  font-size: 12px;
  font-weight: 500;
  color: var(--third-color-800);

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

table tbody tr:nth-child(2n) {
  background-color: var(--fourth-color-100);
}

table tbody tr:nth-child(2n + 1) {
  background-color: var(--fourth-color-50);
}

.table-action-data {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 4px;
}
