/* Whop Payment Status Modal */
.whop-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whop-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.whop-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.whop-modal-overlay.active .whop-modal-content {
    transform: translateY(0);
}

.whop-modal-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.whop-modal-icon.success {
    color: #10b981;
}

.whop-modal-icon.pending {
    color: #f59e0b;
}

.whop-modal-icon.failed {
    color: #ef4444;
}

.whop-modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}

.whop-modal-message {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.5;
}

.whop-modal-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.whop-modal-btn:hover {
    background: #333;
}
