/* Force Bootstrap primary to your blue */
:root{
  --bs-primary: #011EB4;
  --bs-primary-rgb: 1, 30, 180;
}

/* Buttons / backgrounds / text */
.btn-primary{
  background-color:#011EB4 !important;
  border-color:#011EB4 !important;
}
.btn-primary:hover,
.btn-primary:focus{
  background-color:#00158A !important;
  border-color:#00158A !important;
}

.bg-primary{ background-color:#011EB4 !important; }
.text-primary{ color:#011EB4 !important; }
.border-primary{ border-color:#011EB4 !important; }

/* Links (Bootstrap sets orange) */
a{ color:#011EB4; }
a:hover{ color:#00158A; }

/* Orange focus glow -> blue focus glow */
.btn:focus,
.form-control:focus,
.form-select:focus{
  box-shadow: 0 0 0 .25rem rgba(1,30,180,.25) !important;
  border-color:#7aa0ff !important;
}
