You can even append your own css class on the popup container/canvas or how do you want.
Current google maps 3.7 has popups styled by canvas element which prepends popup div container in code.
So at googlemaps 3.7 You can get into rendering process by popup's domready event like this:
var popup = new google.maps.InfoWindow();
google.maps.event.addListener(popup, 'domready', function() {
if (this.content && this.content.parentNode && this.content.parentNode.parentNode) {
if (this.content.parentNode.parentNode.previousElementSibling) {
this.content.parentNode.parentNode.previousElementSibling.className = 'my-custom-popup-container-css-classname';
}
}
});
element.previousElementSibling is not present at IE8- so if you want to make it work at it, follow this.
check InfoWindow reference for events and more..
I found this most clean in some cases.