My current drop down looks like this
How do I use HTML and CSS in a local style to get this type of styling in the attached image in my drop-down menu
See my code below
select:active,
select:hover {
  outline-color: red;
  background-color: red;
}<select id="select">
  <option value="">All Categories</option>
  <option value="Aston Martin">Aston Martin</option>
  <option value="Audi">Audi</option>
  <option value="Bentley">Bentley</option>
  <option value="Genesis">Genesis</option>
  <option value="Volvo">Volvo</option>
  <option value="VW">VW</option>
</select>

 
     
     
    