    /* Styles pour la boîte de dialogue */
    .confirmation-dialog {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
    }

    .confirmation-dialog.show {
        display: block;
    }

    .confirmation-dialog-content {
        background-color: #2196F3; /* Couleur de fond bleue */
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        color: white; /* Couleur du texte en blanc */
    }

    .confirmation-buttons {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .confirmation-buttons button {
        padding: 10px 20px;
        margin: 0 10px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
    }

    .confirmation-buttons button.yes {
        background-color: #4CAF50;
        color: white;
    }

    .confirmation-buttons button.no {
        background-color: #f44336;
        color: white;
    }

    /* Styles pour l'overlay semi-transparent */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7); /* Couleur noire semi-transparente */
        z-index: 999; /* Z-index inférieur à la boîte de dialogue */
    }

    .overlay.show {
        display: block;
    }
