.table-card {
  overflow: hidden;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

thead {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

th,
td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tbody tr {
  transition: background 140ms ease;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.045);
}

td:last-child,
th:last-child {
  text-align: right;
}

.table-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.76rem;
}

.tag.green {
  color: var(--green);
  background: rgba(98, 255, 77, 0.12);
}

.tag.red {
  color: var(--red);
  background: rgba(255, 71, 80, 0.12);
}
