I have a select element with some option items and I want to change the blue background color of items (option) when they hover. here is the bootstrap 5 code:
        <div class="input-group">
          <select class="form-select" id="inputGroupSelect04" aria-label="Example select with button addon">
            <option selected>Choose Your operating System</option>
            <option value="1">Windows</option>
            <option value="2">Mac</option>
            <option value="3">Linux</option>
          </select>
          <button class="btn download-btn" type="button">Download</button>
        </div>