/* ==========================================================================
   Generic Table Styles
   Base table styling for comparison matrices and data tables.
   Uses var(--vc-*) tokens exclusively.
   ========================================================================== */

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
}

thead th {
  font-weight: 600;
  color: var(--vc-text-primary);
  font-size: 14px;
}

tbody td {
  color: var(--vc-text-secondary);
  font-size: 14px;
}

tbody tr:hover {
  background: var(--vc-bg-glass);
}
