table{
    margin: 1.5rem auto;
    text-align: center;
    width: 80%;
    max-width: 900px;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* En-tête */
thead{
    background: linear-gradient(135deg,#2e7d32,#43a047);
    color: white;
}

th{
    padding:12px 8px;
    font-size:15px;
    letter-spacing:0.5px;
}

/* Cellules */
td{
    padding:10px 8px;
    border-bottom:1px solid #e0e0e0;
}

/* Lignes alternées */
tbody tr:nth-child(even){
    background-color:#f1f8f4;
}

/* Effet au survol */
tbody tr:hover{
    background-color:#dcedc8;
    transition:0.2s;
}

/* Mobile responsive */
@media only screen and (max-width: 800px){

table,
thead,
tbody,
th,
td,
tr{
    display:block
}

thead tr{
    position:absolute;
    top:-9999px;
    left:-9999px;
}

td{
    position:relative;
    padding-left:50%;
    white-space:normal;
    text-align:left;
    border-bottom:1px solid #ddd;
}

td:before{
    position:absolute;
    top:8px;
    left:8px;
    width:45%;
    padding-right:10px;
    font-weight:bold;
    color:#2e7d32;
    white-space:nowrap;
    text-align:left;
    content:attr(data-title);
}

tbody tr{
    margin-bottom:10px;
    border-radius:6px;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
    background:white;
}

}