/* ══════════════════════════════════════════════════════════════
   Tables — static/css/components/tables.css
   Wrapped data table with styled header and hover rows.
   Prefix: uc-table.
   Uses design tokens from root.css.
   ══════════════════════════════════════════════════════════════ */

.uc-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
}

.uc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.uc-table th {
  background: var(--neutral-50);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--neutral-600);
  border-bottom: 2px solid var(--neutral-200);
}

.uc-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--neutral-100);
  vertical-align: middle;
}

.uc-table tr:last-child td {
  border-bottom: none;
}

.uc-table tr:hover td {
  background: var(--primary-50);
}
