/* Load after Bootstrap: force orange, no blue */
:root {
  --bs-primary: #e85d04;
  --bs-primary-rgb: 232, 93, 4;
  --bs-blue: #e85d04;
  --bs-blue-rgb: 232, 93, 4;
  --bs-link-color: #e85d04;
  --bs-link-hover-color: #c44d03;
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active {
  background-color: #e85d04 !important;
  border-color: #e85d04 !important;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: #d14d03 !important;
  border-color: #d14d03 !important;
  color: #fff !important;
}

.btn-outline-primary {
  color: #e85d04 !important;
  border-color: #e85d04 !important;
  background-color: transparent !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  color: #fff !important;
  background-color: #e85d04 !important;
  border-color: #e85d04 !important;
}

.text-primary { color: #e85d04 !important; }
.bg-primary { background-color: #e85d04 !important; }
.border-primary { border-color: #e85d04 !important; }

.navbar-brand.text-primary { color: #e85d04 !important; }
a.btn-link { color: #e85d04 !important; }
a.btn-link:hover { color: #c44d03 !important; }

.form-control:focus,
.form-select:focus,
.btn:focus-visible {
  border-color: rgba(232, 93, 4, 0.5) !important;
  box-shadow: 0 0 0 0.25rem rgba(232, 93, 4, 0.25) !important;
}
.form-check-input:focus {
  border-color: rgba(232, 93, 4, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(232, 93, 4, 0.25);
}
.form-check-input:checked {
  background-color: #e85d04;
  border-color: #e85d04;
}

.badge.bg-primary { background-color: #e85d04 !important; }
