Change Font Color in select Field

The CSS font attributes (font, color, size, bold) seem to be ignored for a SELECT field in a form. The form field CCS for TITLE works, but not for the field values themselves. Is there a way around this?

You can set it up manually in onLoad Event

?>
<style>
#your_field_ID{
attribute_to_set: value !important;
}
</style>

<?php

Discovered it can be changed in CSS, but it is CSS of the INPUT OBJECT, not CSS of the FIELD. Don’t have the logic for that, but it works.