/* === Wrapper === */
.tableWrapper,
div[style*="overflow-x: auto"] {
  border-radius: 12px;
  overflow: hidden;
  display: inline-block;
}

/* === Tabla base === */
.tableWrapper table,
.comparison-table {
  min-width: 50px;
  border-collapse: collapse;
  border-radius: 12px;
}

/* === Encabezado (gris suave) === */
.tableWrapper table tbody tr:first-child th,
.comparison-table thead tr th {
  background-color: #d0d0d0;
}

/* === Filas impares del cuerpo (gris muy suave) === */
.tableWrapper table tbody tr:nth-child(odd),
.comparison-table tbody tr:nth-child(odd) {
  background-color: #f0f0f0;
}