/* Modal Body */
.modal-body .processing-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Progress Bar Container */
.progress-bar-container {
    width: 100%;
    background: #f1f1f1;
    border-radius: 5px;
    overflow: hidden;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Progress Bar */
.progress-bar {
    height: 100%;
    width: 0%;
    background: #2271b1;
    /* WP admin blue */
    transition: width 0.4s ease;
}

/* Popup fade-in animation */
@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}