/* Whitelabel brand override — Jun-27 2026 (Mirela #10).
   Remaps Tabler's default primary (blue #066fd1) to the Digital Clinics platform purple, so every
   .btn-primary / .text-primary / .bg-primary / link / primary state matches the rest of the platform.
   Loaded AFTER tabler.min.css in every layout. Hover/active derive from --tblr-primary-darken in Tabler,
   so remapping these three variables is enough. */
:root {
    --tblr-primary: #704FBA;
    --tblr-primary-rgb: 112, 79, 186;
    --tblr-primary-darken: #5a3f95;
    --tblr-link-color: #704FBA;
    --tblr-link-color-rgb: 112, 79, 186;
    --tblr-link-hover-color: #5a3f95;
}
/* Belt-and-suspenders for any element that hardcodes the old blue via utility classes. */
.btn-primary { --tblr-btn-bg: #704FBA; --tblr-btn-border-color: #704FBA; --tblr-btn-hover-bg: #5a3f95; --tblr-btn-hover-border-color: #5a3f95; --tblr-btn-active-bg: #5a3f95; --tblr-btn-active-border-color: #5a3f95; }
.text-primary { color: #704FBA !important; }
.bg-primary { background-color: #704FBA !important; }
.link-primary { color: #704FBA !important; }
a { color: #704FBA; }
