JSFiddle - React, Tailwind, and code Playground
HTML
<!-- Machine Power Options -->
<div id="guruPower_options_on" class="triangle-right top">
<input id="power-hd" type="radio" name="powerOn_options"
value="power-hd" checked>
<label for="power-hd">Boot from Hard Disk</label><br>
<input id="power-dvd" type="radio" name="powerOn_options"
value="power-dvd">
<label for="power-dvd">Boot from DVD</label>
<hr>
<input type="button" id="buttonPowerOn" value="Start Machine"
class="guruVNC_button">
</div>
<div id="guruPower_options_off" class="triangle-right top">
<input id="shutdown-clean" type="radio" name="guru_powerOff_options"
value="shutdown-clean">Shutdown<br>
<hr>
<input type="button" id="buttonPowerOff" value="Stop Machine"
class="guruVNC_button">
</div>