/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: slideInRight 0.3s ease-out, fadeOut 0.3s ease-in 2.7s forwards;
    transform: translateX(0);
}

.notification.success {
    background: rgba(34, 197, 94, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification.error {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification.info {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

