/* Success Popup Styles */
.ppp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ppp-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ppp-modal-content {
    background: #ffffff !important;
    color: #111827 !important;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ppp-modal-overlay.active .ppp-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.ppp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f3f4f6;
    border: none;
    color: #6b7280;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppp-modal-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.ppp-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ppp-modal-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 2.5;
}

#ppp-success-title {
    color: #111827 !important;
    font-size: 1.75rem;
    margin: 0 0 12px;
    font-weight: 700;
}

#ppp-success-message {
    color: #6b7280 !important;
    font-size: 1.05rem;
    margin: 0 0 32px;
    line-height: 1.6;
}

.ppp-modal-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    box-shadow: none;
}

.ppp-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.ppp-modal-btn:active {
    transform: translateY(0);
}