I've been struggling to change the default blue background color of the drop-down options when hovering over them with the mouse. Despite trying various solutions from this forum, nothing seems to be working at the moment. (These solutions used to work in older versions of Chrome) I can't seem to get option:hover to work.
Does anyone have any suggestions on how to use CSS to change the hover color to something other than blue? https://i.stack.imgur.com/uccaK.png
<div class="starComponent">
<div class="product">
<select name="product" id="phone">
<option value="">Product</option>
<option value="iPhoneXR">iPhone XR</option>
<option value="iPhone12">iPhone 12</option>
<option value="iPhone13">iPhone 13</option>
</select>
<input type="number" placeholder="Rating" size="8" min="0" max="5" id="rating">
<button class="btn btn-dark" type="submit" onclick="save()">Save</button>
</div>
<div class="stars1">iphone XR
<i class="fa-regular fa-star xr_star"></i>
<i class="fa-regular fa-star xr_star"></i>
<i class="fa-regular fa-star xr_star"></i>
<i class="fa-regular fa-star xr_star"></i>
<i class="fa-regular fa-star xr_star"></i>
</div>
<div class="stars2">iphone 12
<i class="fa-regular fa-star 12_star"></i>
<i class="fa-regular fa-star 12_star"></i>
<i class="fa-regular fa-star 12_star"></i>
<i class="fa-regular fa-star 12_star"></i>
<i class="fa-regular fa-star 12_star"></i>
</div>
<div class="stars3">iphone 13
<i class="fa-regular fa-star 13_star"></i>
<i class="fa-regular fa-star 13_star"></i>
<i class="fa-regular fa-star 13_star"></i>
<i class="fa-regular fa-star 13_star"></i>
<i class="fa-regular fa-star 13_star"></i>
</div>
</div>
option:hover{
background-color: rgb(152, 173, 173);
color: rgb(189, 85, 85);
}