/* Header personnalisé */
.table-pricing thead th {
  background-color: #4a90e2;  /* ton bleu personnalisé */
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.table-pricing tbody > tr:nth-child(odd) td {
  background-color: #ffffff !important; /* gris clair */
}

.table-pricing tbody > tr:nth-child(even) td {
  background-color: #f0e6d8 !important; /* blanc */
}

/* Hover */
.table-pricing tbody > tr:hover td {
  background-color: #e2f0ff !important; /* bleu clair au survol */
}

.table-pricing {
  border-color: #2d343c; /* couleur foncée pour le contour de la table */
}

/* Bordures des cellules */
.table-pricing th,
.table-pricing td {
  border-color: #2d343c; /* foncé pour toutes les cellules */
}
