Utilizing Bootstrap's form-control class helps maintain a consistent style for both form input and select option elements. However, when using form-control on select elements, it results in an unsightly drop-down button appearance in Firefox.https://i.sstatic.net/tPMuJ.png
The desired outcome is illustrated here:
https://i.sstatic.net/ENpAO.png
Unfortunately, upon inspecting the CSS code, I am unable to pinpoint the specific section that needs to be overridden since there isn't a designated CSS rule governing the drop-down arrow's styling.
This snippet depicts the current implementation:
<div class="form-group row">
<label for="industry" class="">Industry :</label>
<select name="industry" class="form-control">
<option value="" disabled selected>Select Industry</option>
<option value="financial-service">Financial Services</option>
<option value="healthcare-lifescience">Healthcare & Life Science</option>
<option value="communications">Communications</option>
</select>
</div>