/* =========================================================
   TABLE STRIPED – TERTIARY TRÈS CLAIR + BORDURES FINES
   Compatible Bootstrap 5.2 + Porto 12.1.0
   THEAD inchangé (Porto par défaut)
   ========================================================= */

.table-striped.table-striped-tertiary {
  /* Variables Porto (fallback safe) */
  --tertiary: var(--color-tertiary, #5ba6c2);
  --text: var(--body-color, #212529);
  --border: rgba(0, 0, 0, 0.06); /* bordures très fines */

  /* Bootstrap table variables */
  --bs-table-bg: #ffffff;                 /* lignes impaires */
  --bs-table-color: var(--text);

  /* tertiary très clair (≈ 10–12 %) */
  --bs-table-striped-bg: rgba(91, 166, 194, 0.12);
  --bs-table-striped-color: var(--text);

  /* hover discret */
  --bs-table-hover-bg: rgba(91, 166, 194, 0.2);
  --bs-table-hover-color: var(--text);

  /* bordures Bootstrap */
  --bs-table-border-color: var(--border);
}

/* Bordures fines et nettes */
.table-striped-tertiary th,
.table-striped-tertiary td {
  border-width: 1px;
}

/* Optionnel : lignes encore plus aérées */
.table-striped-tertiary tbody td,
.table-striped-tertiary tbody th {
  padding-top: .6rem;
  padding-bottom: .6rem;
}