How can I change select option hover?

Hello,

Is it possible to change default hover color in select option ?

Here is my sample code.Please let me know ,if you have any suggestions.

Thanks,
BayCora

 <style>
    option:hover{background-color:red;}
    </style>
  
    
    <select>
      <option value="volvo">Volvo</option>
      <option value="saab">Saab</option>
      <option value="opel">Opel</option>
      <option value="audi">Audi</option>
        <option value="volvo">Volvo</option>
      <option value="saab">Saab</option>
      <option value="opel">Opel</option>
      
    </select>

It seems almost no styling is possible for <option>
Check this post.