a-table {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

a-table .table-header {
  display: flex;
  background: var(--g2);
  padding: 16px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--g6);
  border-bottom: 2px solid var(--g3);
}

a-table .table-cell {
  flex: 1;
  padding: 0 8px;
  display: flex;
  align-items: center;
}

a-row {
  display: flex;
  padding: 8px 16px;
  border-bottom: 1px solid var(--g3);
  transition: all 0.08s ease-out;
  cursor: pointer;
  height: 48px;
  box-sizing: border-box;
  align-items: center;
}

a-row:hover {
  background: var(--g2);
}

a-row:active {
  background: var(--g3);
  transform: scale(0.995);
}

a-row .table-cell {
  font-size: 13px;
  color: var(--g7);
}

a-row:last-child {
  border-bottom: none;
}
