/* Force override primary colors with maximum specificity */
html body .text-primary,
html body span.text-primary,
html body span.text-primary a,
html body .text-primary a {
  color: #516274 !important;
}

html body .text-primary:hover,
html body span.text-primary a:hover {
  color: #FF8B5C !important;
}

/* Force override primary buttons */
html body .btn-primary,
html body a.btn-primary,
html body button.btn-primary,
html body .btn.btn-primary {
  background-color: #516274 !important;
  border-color: #516274 !important;
  color: white !important;
}

html body .btn-primary:hover,
html body a.btn-primary:hover,
html body .btn-primary:focus,
html body a.btn-primary:focus {
  background-color: #FF8B5C !important;
  border-color: #FF8B5C !important;
  color: white !important;
}

/* Disabled state */
html body .btn-primary.disabled,
html body .btn-primary:disabled,
html body a.btn-primary.disabled {
  background-color: #516274 !important;
  border-color: #516274 !important;
  opacity: 0.6 !important;
  color: white !important;
}