/* Ajoutez ces styles pour transformer la table en un tableau avec des lignes en abcisse et en ordonnée */
.table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.table thead {
  background-color: #2980b9;
  color: #fff;
}

.table th,
.table td {
  border: 1px solid #3498db;
  padding: 8px;
  text-align: left;
}

/* Ajoutez ces styles pour mettre en forme l'entête et les lignes en bleu */
.table th {
  background-color: #3498db;
}

.table tbody tr:nth-child(odd) {
  background-color: #f8f9fa;
}

.table tbody tr:hover {
  background-color: #3498db;
  color: #fff;
}
