/* Simple Notification CSS */
#notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    width: 300px;
}

.notification {
    background-color: #333;
    color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slide-in 0.5s ease-out forwards;
}

.notification.success {
    border-left: 4px solid #00c853;
}

.notification.info {
    border-left: 4px solid #8c1aff;
}

.notification.warning {
    border-left: 4px solid #ffab00;
}

.notification.error {
    border-left: 4px solid #ff1744;
}

.notification-close {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 16px;
    padding: 0 5px;
}

.notification-close:hover {
    color: white;
}

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

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

.notification.hiding {
    animation: slide-out 0.5s ease-in forwards;
}
