/* ==========================================================
   Pocket Lineup
   Thème sombre
========================================================== */

/*
 * Alternance discrète de la grille de saisie des statistiques.
 * Les couleurs sont définies ici afin de ne pas contaminer le thème clair.
 */
[data-bs-theme="dark"] #gameStatsModal tbody tr:nth-child(odd) > * {
  background-color: #212529;
  color: #f8f9fa;
}

[data-bs-theme="dark"] #gameStatsModal tbody tr:nth-child(even) > * {
  background-color: #2b3035;
  color: #f8f9fa;
}

[data-bs-theme="dark"] #gameStatsModal tbody tr:hover > * {
  background-color: #263b58;
  color: #f8f9fa;
}

[data-bs-theme="dark"] #gameStatsModal tbody tr:nth-child(odd) > td:first-child {
  background-color: #212529;
}

[data-bs-theme="dark"] #gameStatsModal tbody tr:nth-child(even) > td:first-child {
  background-color: #2b3035;
}

[data-bs-theme="dark"] #gameStatsModal tbody tr:hover > td:first-child {
  background-color: #263b58;
}
