/* css/smpy-gestion-tables.css */

/* En-tête orange */
.simple-table thead th {
  background-color: #f88f52;
  color: #fff;
  padding: 8px;
  text-align: left;
}

/* Zébrage : lignes impaires (crème) et paires (gris) */
.simple-table tbody tr:nth-child(odd) {
  background-color: #fcf9f1;
}
.simple-table tbody tr:nth-child(even) {
  background-color: #eef2f5;
}

/* Padding des cellules */
.simple-table td {
  padding: 8px;
}
