.table{
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.table th, .table td{
  text-align: left;
  padding: 10px 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
}
.table th{
  color: var(--muted);
  font-weight: 750;
  background: rgba(255,255,255,.02);
}
.table tr:hover td{ background: rgba(255,255,255,.02); }
.table tr:last-child td{ border-bottom: 0; }
