body {
    font-family: "Merriweather", sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.list {
    text-align: center;
}

a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    padding: 10px 20px;
    border: 2px solid #333;
    border-radius: 20px;
    background-color: #fff;
    margin: 0 20px;
    transition: all 0.3s;
}

a:hover {
    color: #fff;
    background-color: #03366F;
}

/* Styles pour centrer la boîte de dialogue */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none; /* Caché par défaut */
}
.dialog-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
}
.dialog-box table {
    width: 100%;
}
.dialog-box th, .dialog-box td {
    padding: 10px;
    text-align: left;
}
.dialog-box .buttons {
    text-align: right;
}
.dialog-box .buttons button {
    margin-left: 10px;
}
