BB Code is simply converted to the correct XHTML markup using classes. To style these, edit the main styleheet and look for the BB Code attributes at the bottom of the file.
content/*theme*/css/mcart.css
For example if you wanted to make all code that appears between [b][/b] tags blue, find:
.bbBold {
font-weight: bold;
}
And change to:
.bbBold {
font-weight: bold;
color: blue;
}