#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.notification {
    padding: 15px 25px;
    margin-bottom: 10px;
    border-radius: 4px;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: slide-in 0.3s ease-out;
}

.notification.error {
    background-color: #ff4444;
}

.notification.success {
    background-color: #00C851;
}

.notification.info {
    background-color: #33b5e5;
}

.notification.fade-out {
    animation: fade-out 0.3s ease-out forwards;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
