You can use inline styles to add custome styling to <option>
tags.
For eg : <option style="font-weight:bold;color:#09C;">Option 1</option>
This will apply the styles to this particular <option>
element only.
Then you can use a bit of javascript magic to apply the inline styles to all of the <option>
elements within a <select>
tag like so :
var select = $(document).getElementById('#select-element-id')
var option = select.children('#option-element-id')
option.css('font-weight', 'bold')
option.css('font-size', '24px')
You can also use <option value="" disabled> <br> </option>
to add a line-break between the options.