/* Add this CSS to style the loading popup */
#loading-popup.loading-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loading-popup .loading-popup {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    color: #333;
    max-width: 400px;
    width: 100%;
}

#loading-popup .loading-popup p {
    margin: 0;
    font-weight: bold;
}

#amelia-login-popup .amelia-actions {
    display: block !important;
}