/* Style général de la page */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f9;
    display: flex;
    justify-content: center;
    padding: 40px;
}

/* Mise en forme générale du tableau */
table {
    border-collapse: collapse; /* Fusionne les bordures du tableau */
    width: 100%;
    max-width: 900px;
    background-color: white;
    border-radius: 8px;
    border: 3px solid burlywood;
}

/* Titre du tableau */
caption {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    color: burlywood;
}

/* En-tête du tableau */
thead {
    background-color: burlywood;
    color: white;
}

/* Cellules du tableau */
th,
td {
    padding: 30px;
    text-align: left;
    border-bottom: 3px solid burlywood;
}

/* Centre la première et la dernière colonne */
th:first-child,
td:first-child,
th:last-child,
td:last-child {
    text-align: center;
}

/* Style du nom de fichier affiché comme du code */
code {
    background-color: #eee;
    padding: 6px;
    border-radius: 4px;
    color: rgb(129, 93, 47);
}