Query:
I'm feeling a bit out of practice with CSS, so this might be an easy question.
This is the current look of the relevant section on my page.
https://i.sstatic.net/Y0hj9.png
To make it easier to analyze, I've extracted the code into a JSFiddle for you to review.
https://jsfiddle.net/srap5maw/
I've tinkered with it quite a bit and even tried my best at Google searching, but nothing obvious seems to stand out.
Snippet of Code:
<div class="centering-table">
<div class="centering-row">
<div class="centering-element">
<b>Yes</b>
</div>
<div class="centering-element">
<div class="switch-container">
<label class="switch">
<input type="checkbox">
<div class="slider round"></div>
</label>
</div>
</div>
<div class="centering-element">
<b>No</b>
</div>
</div>
</div>