I have the following:
<label class="col-1 remove-check checkbox-container">
<input type="checkbox" @onclick="@(async () => await OnRemoveClick(slh.Key, slh.Value))" />
<span class="checkmark-detail"></span>
</label>
<label class="col-1 redirect-check checkbox-container">
<input type="checkbox" @onclick="@(async () => await OnRedirectClick(slh.Key, slh.Value))" />
<span class="checkmark-detail"></span>
</label>
<label class="col-1 approve-check checkbox-container">
<input type="checkbox" @onclick="@(async () => await OnApproveClick(slh.Key, slh.Value))" />
<span class="checkmark-detail"></span>
</label>
Is there a way using css that If I select any checkbox, then the other 2 are unselected. I want to create it such that only 1 can ever be selected or none.