table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  color: var(--gray);
}

thead tr {
  background-color: var(--vert-sauge);
  color: var(--text-on-vert-sauge);
  font-weight: 800;
  text-align: center;
}

thead th {
  padding: 12px 16px;
  border: 1px solid white;
}

tbody td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  vertical-align: top;
  line-height: 1.6;
}

/* Colonne catégorie - centrée */
tbody td:first-child {
  text-align: center;
  font-weight: 700;
  color: var(--vert-sauge);
  width: 20%;
}

/* Colonne coefficient - centrée */
tbody td:last-child {
  text-align: center;
  font-weight: 700;
  color: var(--vert-sauge);
  width: 8%;
}

tbody tr {
  background-color: white;
}

/* Hover */
tbody tr:hover {
  background-color: var(--vert-turquoise-light);
  transition: background-color 0.2s;
}
