#waiting-verification {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.css-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0%   { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
.waiting-text {
    color: #3498db;
    font-weight: 500;
    font-size: 1.15rem;
}



/* Modal background */
.ps-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(44, 62, 80, 0.3);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal box */
.ps-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px 28px 32px;
    min-width: 320px;
    box-shadow: 0 8px 32px rgba(52, 152, 219, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: popFade 0.4s cubic-bezier(.22,1,.36,1);
}

@keyframes popFade {
    0% { opacity: 0; transform: scale(0.7);}
    100% { opacity: 1; transform: scale(1);}
}

/* Animasi centang */
.checkmark-circle {
    width: 80px;
    height: 80px;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 16px #e0e0e0;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 16px;
}

.checkmark {
    position: absolute;
    top: 22px;
    left: 21px;
    width: 38px;
    height: 26px;
    border-radius: 2px;
    border-left: 6px solid #2ecc40;
    border-bottom: 6px solid #2ecc40;
    transform: rotate(-45deg) scale(0);
    opacity: 0;
    animation: checkmark-anim 0.5s 0.5s forwards cubic-bezier(.22,1,.36,1);
}

@keyframes checkmark-anim {
    to {
        transform: rotate(-45deg) scale(1);
        opacity: 1;
    }
}

.payment-success-text {
    color: #2ecc40;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 18px;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 0.7s 0.9s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.ps-close-btn {
    margin-top: 14px;
    border: none;
    background: #2ecc40;
    color: #fff;
    padding: 8px 30px;
    font-size: 1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s;
}
.ps-close-btn:hover {
    background: #27ae60;
}
