/* Style général du tableau */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th, td {
  padding: 10px;
  text-align: center;
  border: 1px solid #a0959591;
}

th {
  background-color: #15734B2E;
  font-weight: bold;
}

/* Responsivité : réorganiser le tableau pour les petits écrans */
@media (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  
  th, td {
    width: 100%;
    box-sizing: border-box;
  }
  
  tr {
    margin-bottom: 10px;
  }
  
  th {
    background-color:#0F725B3B;
    position: relative;
    padding-left: 20px;
  }
  
  th::before {
    content: attr(data-title);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: normal;
    font-size: 14px;
  }
  
  td {
    text-align: left;
    padding-left: 20px;
  }
  
  td::before {
    content: attr(data-title);
    font-weight: bold;
    padding-right: 10px;
  }
}
