.popup-bonjour-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
}

.popup-bonjour-content {
    background-color: #4CAF50;
    color: white;
    padding: 30px 60px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    animation: fadeIn 0.5s ease-in;
}

.popup-bonjour-content p {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

.popup-bonjour-container.fade-out .popup-bonjour-content {
    animation: fadeOut 0.5s ease-out;
}
