/* ProcureActiv brand colour overrides for Metronic Tailwind
   Navy #16335B / Teal #0E7C86 / Gold #C9A227
   These custom properties override the KTUI theme defaults set in styles.css */

:root {
    /* Primary → Navy */
    --primary: #16335B;
    --primary-foreground: #ffffff;

    /* Info / accent → Teal */
    --info: #0E7C86;
    --info-foreground: #ffffff;

    /* Warning / highlight → Gold */
    --warning: #C9A227;
    --warning-foreground: #ffffff;

    /* Sidebar uses primary colour as background for active states */
    --kt-sidebar-bg: #0f2340;
}

/* Active sidebar link highlight */
.kt-menu-item-active > .kt-menu-link {
    background-color: color-mix(in oklab, var(--primary) 10%, transparent) !important;
    border-color: color-mix(in oklab, var(--primary) 25%, transparent) !important;
    color: var(--primary) !important;
}

/* Primary button brand colour */
.kt-btn-primary {
    background-color: var(--primary) !important;
}
.kt-btn-primary:hover {
    background-color: color-mix(in oklab, var(--primary) 85%, #000) !important;
}

/* Focus ring → teal */
:focus-visible {
    outline-color: #0E7C86;
}
