    /* Popup container overlay */
.status-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* The actual popup message window */
.popup-content {
    background: #fff;
    padding: 25px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    text-align: center;
    max-width: 400px;
    width: 80%;
}

/* Close button (X) */
.close-popup-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}
.close-popup-btn:hover { color: #000; }

/* Status Text colors */
.msg-success { color: #2ecc71; font-weight: bold; }
.msg-error { color: #e74c3c; font-weight: bold; }
.msg-loading { color: #3498db; }