/* Override Bootstrap primary → UT green */
:root {
  --pmb-primary: #76b900;
  --pmb-primary-hover: #5f9400;
  --pmb-primary-soft: rgba(118, 185, 0, 0.14);
}

.btn-primary,
.btn.btn-primary {
  background-color: var(--pmb-primary) !important;
  border-color: var(--pmb-primary) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  background-color: var(--pmb-primary-hover) !important;
  border-color: var(--pmb-primary-hover) !important;
}

.btn-outline-primary {
  color: var(--pmb-primary) !important;
  border-color: var(--pmb-primary) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: var(--pmb-primary) !important;
  border-color: var(--pmb-primary) !important;
  color: #fff !important;
}

.bg-primary { background-color: var(--pmb-primary) !important; }
.text-primary { color: var(--pmb-primary) !important; }
.border-primary { border-color: var(--pmb-primary) !important; }
.text-bg-primary { background-color: var(--pmb-primary) !important; }

/* Nav pills / stepper */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--pmb-primary) !important;
}

/* Soft primary helpers */
.bg-soft-primary {
  background-color: var(--pmb-primary-soft) !important;
}

