/* MAIB Payment Loading Overlay
 * Used during form submit and MAIB redirect
 * Part of vikmaib-payment plugin
 */

.vikmaib-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vikmaib-loading-content {
    text-align: center;
}

.vikmaib-loading-spinner {
    margin-bottom: 20px;
}

.vikmaib-loading-spinner svg {
    animation: vikmaib-spin 1s linear infinite;
}

.vikmaib-loading-text {
    font-size: 18px;
    color: #333;
    margin: 0;
}

@keyframes vikmaib-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
