body {
    font-family: Arial, sans-serif;
    background-color: #98c8f5;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    color: #0056b3;
}

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

li {
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border: 3px solid #0056b3; /* Bordure extérieure bleue */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th, td {
    border: 1px solid #cccccc;
    padding: 12px;
    text-align: center;
}

caption {
    caption-side: top;
    color: #0056b3;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

th {
    background-color: #cde4fb; /* Bleu clair pour l'entête */
    color: #003366;
    font-weight: bold;
}

img {
    max-width: 64px;
    height: auto;
}