This HTML snippet displays a pair of checkboxes positioned side by side
<div id="mr_mrs">
<ul class="mr_mrs form-no-clear">
<li id="mr" class="popular-category">
<label for="Mr" id="mr">Mr</label>
<span><input name="Mr" id="Mr" type="checkbox" /></span>
<div class="clearboth"></div>
</li>
<li id="mrs" class="popular-category">
<label for="Mrs" id="mrs">Mrs</label>
<span><input name="Mrs" id="Mrs" type="checkbox" /></span>
<div class="clearboth"></div>
</li>
</ul>
</div>
I am looking to personalize the checkboxes to have a square shape and add some color when they are selected. Please refer to the image linked below for reference:
Is there a way to achieve this customization?https://i.sstatic.net/ZvN6I.png