/* Style général */
body {
    margin: 20px;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    /* Couleur de fond légère */
}

/* Centrer le logo */
.logo {
    display: block;
    /* Pour que margin auto fonctionne */
    margin: 0 auto 20px;
    /* 0 en haut, auto à gauche et droite, 20px en bas */
    width: 150px;
    /* Ajustez la taille selon vos besoins */
    height: auto;
}

/* Centrer le titre H1 */
h1 {
    text-align: center;
    margin-top: 0;
}

/* Style du tableau */
table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

th,
td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

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

/* Vous pouvez ajouter d'autres styles pour les liens, boutons, etc. */