body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

aside {
    width: 200px;
    position: absolute;
    height: 100%;
    background: #f4f4f4;
    padding: 1em;
}

main {
    margin-left: 220px;
    padding: 1em;
}

h1 {
    color: #333;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 0.5em;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Toutes les colonnes ont une largeur fixe */
    margin-bottom: 20px;
}

th, td {
    text-align: center; /* Centrer le texte dans les cellules */
    word-wrap: break-word; /* Permet de couper les mots si nécessaire */
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}