Adding custom css to a wordpress plugin? [duplicate]

You can either do it the way you are doing it now, or you can use the rule of greater specificity (ex div.foo > ul#bar > li.baz is more specific than just #bar > .baz).

P.S. I am not sure this is WordPress-specific.