/* CSS pour les smartphones */
@media only screen and (max-width: 768px) {
    
    /* Cacher les cellules de données (th) */
    th:nth-child(2),
    
    th:nth-child(4),
  
    th:nth-child(5) {
        display: none;
    }

    /* Cacher les cellules de données (td) correspondantes dans chaque ligne */
    
    td:nth-child(2),
   
    td:nth-child(4),
    
    td:nth-child(5) {
        display: none;
    }
}
