/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.notification-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.notification-popup {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.notification-overlay.show .notification-popup {
    transform: scale(1) translateY(0);
}

.notification-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 24px;
    color: white;
}

.notification-icon.success {
    background: #10b981;
}

.notification-icon.error {
    background: #ef4444;
}

.notification-icon.warning {
    background: #f59e0b;
}

.notification-icon.info {
    background: #3b82f6;
}

.notification-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.notification-message {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.notification-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.notification-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.notification-btn.primary {
    background: #2563eb;
    color: white;
}

.notification-btn.primary:hover {
    background: #1d4ed8;
}

.notification-btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.notification-btn.secondary:hover {
    background: #e5e7eb;
}

.notification-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: #9ca3af;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Auto close animation */
.notification-popup.auto-close {
    animation: autoClose 3s ease-in-out forwards;
}

@keyframes autoClose {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; transform: scale(0.9) translateY(-10px); }
}

/* Responsive */
@media (max-width: 480px) {
    .notification-popup {
        padding: 25px 20px;
        margin: 20px;
    }
    
    .notification-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .notification-title {
        font-size: 18px;
    }
    
    .notification-message {
        font-size: 13px;
    }
    
    .notification-actions {
        flex-direction: column;
    }
    
    .notification-btn {
        width: 100%;
    }
}
