/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(45deg, #4ECDC4, #44ADA4);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.notification.error {
    background: linear-gradient(45deg, #FF6B6B, #EE5253);
}

.notification.warning {
    background: linear-gradient(45deg, #FED330, #F7B731);
}

.notification i {
    font-size: 1.2rem;
}

.notification.slide-out {
    animation: slideOutRight 0.3s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
