/* Notification Manager Styles */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.notification {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-out;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.removing {
    opacity: 0;
    transform: translateX(400px);
}

.notification-icon {
    font-size: 24px;
}

.notification-content {
    flex: 1;
}

.notification-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.notification.success {
    background: #4CAF50;
    color: white;
}

.notification.error {
    background: #F44336;
    color: white;
}

.notification.warning {
    background: #FF9800;
    color: white;
}

.notification.info {
    background: #2196F3;
    color: white;
}

@media (max-width: 600px) {
    #notification-container {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}