I have the following checkboxes:
input[type=checkbox] {
outline: 2px solid #c00;
}
<input type="checkbox" id="arrestData" name="category" value="Category: Arrest Data" class="chkinput">
<label for="vehicle1"> Arrest Data</label><br>
<input type="checkbox" id="useOfForce" name="category" value="Category: Use of Force" class="chkinput">
<label for="useOfForce"> Use of Force</label><br>
<input type="checkbox" id="humanTrafficking" name="category" value="Category: Human Trafficking" class="chkinput">
<label for="vehicle3"> Human Trafficking</label><br>
<input type="checkbox" id="treatmentAndDiversion" name="category" value="Category: Treatment and Diversion" class="chkinput">
<label for="vehicle3"> Treatment and Diversion</label><br>
<input type="checkbox" id="drugAndOverdoseData" name="category" value="Category: Drug and Overdose Data" class="chkinput">
<label for="vehicle3"> Drug and Overdose Data</label><br>
<input type="checkbox" id="federalCrimeData" name="category" value="Category: Federal Crime Data" class="chkinput">
<label for="vehicle3"> Federal Crime Data</label><br>
When I try to style the border with the css, it simply adds a new border to the existing one. I want to be able to change border appearance and also the checkmark appearance when checked. I know this is probably a duplicate question but no example has worked thus far.