Well I figured it out. Using the Firebug extension for Firefox, I figured out what CSS selector to add to the inserts box to target the categories widget. On mine the one that worked was:
Code:
#right #categories-381603721 .widget-content li.cat-item{}
I had to get more and more specific, and it finally worked when I added the #right selector.
I am using Category Order plugin in my Wordpress installation, so your CSS selector(s) for this may be different. But the key for me was getting more specific and adding selectors for it to work.
If you don't use Firebug already, you absolutely must start! It is an indispensable tool for looking into the structure of a page and figuring what css rules are being applied to any element. Once you have it installed you can right click on any element in a page and choose "Inspect Element" and it will show you that element in the source code. Good stuff!