.table {
  overflow-x: auto;
}

.table thead tr {
  text-align: center;
}

.table thead th {
  background-color: transparent;
  border: none;
  font-size: 20px;
  font-weight: 400;
  padding: 30px;
}

.table .table-arrow {
  margin-left: 6px;
}

.table .table-arrow a {
  text-decoration: none;
  color: var(--text-color);
}

.table .table-arrow .arrow.active {
  color: var(--primary-color);
}

.table .table-arrow .arrow.up {
  margin-right: -4px;
}

.table tbody tr {
  position: relative;
}

.table tbody tr::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 1px;
  background: rgba(0, 10, 23, 0.25);
}

.table tbody tr:last-child:after {
  content: none;
}

.table tbody tr:first-child td:first-child {
  border-radius: 4px 0 0 0;
}

.table tbody tr:first-child td:last-child {
  border-radius: 0 4px 0 0;
}

.table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}

.table tbody tr:last-child td:last-child {
  border-radius: 0 0 4px 0;
}

.table tbody td {
  padding: 30px;
  border-bottom: none;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: start;
}

.table tbody td.td-gray {
  color: rgba(0, 10, 23, 0.5);
}

.table td.table-actions {
  white-space: nowrap;
  width: 1%;
}

.table td .buttons {
  display: flex;
  gap: 12px;
}