html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
	font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.styled-checkbox {
	appearance: none; /* Remove default checkbox */
	width: 20px;
	height: 20px;
	border: 2px solid red; /* Default: red border for false */
	background-color: white;
	border-radius: 4px;
	display: inline-block;
	position: relative;
}

.styled-checkbox:disabled {
	border: 2px solid red; /* Default: red border for false */
	background-color: lightgray;
	cursor: default;
}

/* Checked checkbox styles */
.styled-checkbox:disabled:checked {
	border: 2px solid green; /* Green border for true */
	background-color: lightgray;
}

/* Add "✓" when checked */
.styled-checkbox:disabled:checked::after {
	content: "✓"; /* Unicode check mark */
	font-size: 18px;
	color: green;
	font-weight: bold;
	position: absolute;
	top: -5px;
	left: 2px;
}

.styled-checkbox:not(disalbed) {
	border: 2px solid red; /* Default: red border for false */
	background-color: white;
	cursor: pointer;
}

/* Checked checkbox styles */
.styled-checkbox:not(disabled):checked {
	border: 2px solid green; /* Green border for true */
	background-color: white;
}

/* Add "✓" when checked */
.styled-checkbox:not(disabled):checked::after {
	content: "✓"; /* Unicode check mark */
	font-size: 18px;
	color: green;
	font-weight: bold;
	position: absolute;
	top: -5px;
	left: 2px;
}
