I am looking to customize the font color of specific text within a dropdown list. The two options in the list are: 1. Doctor Name 1 (Discount 10%) and 2. Doctor Name 2 (Discount 15%). I would like to change the font color of only (Discount 10%) (to red) and (Discount 15%) (to blue). Can anyone guide me on how to achieve this customization?
<html>
<head>
</head>
<body>
<select name="">
<option value="" >Select Doctor Name</option>
<option value="1">Doctor Name 1 (Discount 10%)</option>
<option value="2">Doctor Name 2 (Discount 15 %)</option>
</select>
</body>
<html>