/* CordLedger rebrand: replaces the placeholder Trezo-theme blue (#1A73E8) with the darker
   teal-blue from the new wave logo (#327E96 = rgb(50,126,150)). style.css hardcodes the old blue
   directly in ~216 places rather than deriving it from a shared variable, and each button state
   (hover/active/focus) bakes in its own pre-computed shade rather than deriving it live - so a
   blind find-and-replace on the hex value would leave mismatched hover/active shades. This
   overrides just the actual color-bearing custom properties instead, loaded after style.css so
   the cascade wins for the same selectors. --bs-primary/--bs-primary-rgb alone covers every
   utility class that derives from them (.text-primary, .bg-primary, .border-primary, any
   bg-primary bg-opacity-10 pill) - only .btn-primary and .btn-outline-primary need their own
   block, since those don't reference the shared variable. Hover/active shades below use the exact
   same percentages style.css already applies to the old blue (hover-bg 85%, hover-border/active-bg
   80%, active-border 75%, focus-shadow a 15% tint toward white), so buttons behave identically,
   just recolored. Mirrors alaska-web/wwwroot/assets/css/custom/custom.css's same override -
   applied here too since alaska-poc runs the identical vendor theme. */
:root {
  --bs-primary: #327E96;
  --bs-primary-rgb: 50, 126, 150;
}
.btn-primary {
  --bs-btn-bg: #327E96;
  --bs-btn-border-color: #327E96;
  --bs-btn-hover-bg: rgb(16.6666666667%, 42%, 50%);
  --bs-btn-hover-border-color: rgb(15.6862745098%, 39.5294117647%, 47.0588235294%);
  --bs-btn-focus-shadow-rgb: 81, 145, 166;
  --bs-btn-active-bg: rgb(15.6862745098%, 39.5294117647%, 47.0588235294%);
  --bs-btn-active-border-color: rgb(14.7058823529%, 37.0588235294%, 44.1176470588%);
  --bs-btn-disabled-bg: #327E96;
  --bs-btn-disabled-border-color: #327E96;
}
.btn-outline-primary {
  --bs-btn-color: #327E96;
  --bs-btn-border-color: #327E96;
  --bs-btn-hover-bg: #327E96;
  --bs-btn-hover-border-color: #327E96;
  --bs-btn-focus-shadow-rgb: 50, 126, 150;
  --bs-btn-active-bg: #327E96;
  --bs-btn-active-border-color: #327E96;
  --bs-btn-disabled-color: #327E96;
  --bs-btn-disabled-border-color: #327E96;
}
