/*
Apply any theme variable overwrites that were set via admin theme settings.
Note: This file is a placeholder, it will be automatically/dynamically overwritten from the theme settings.
This will apply to ANY/ALL themes loaded, and before any of the core files are loaded.
*/
/* ============================================================
   DENNING brand overrides
   Loaded after 0_00_default_theme_vars.css and before the core
   0_01_variables.css colour calculations, so derived shades
   recompute from these brand values. Cyan from the Denning "D" logo.
   ============================================================ */
:root {
    --primary: #18181b;     /* zinc-900 near-black — matches ERP dp-fe primary (buttons/headers) */
    --secondary: #3f3f46;   /* zinc-700 — secondary dark */
    --tertiary: #0e8da8;    /* Denning cyan — links / interactive accents (brand tie) */
    --surface: #ffffff;
    --foreground: #18181b;  /* near-black text */
    --info: #0e8da8;
}

/* Denning header logo (icon + wordmark) */
.header__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.header__logo-img {
    height: 34px;
    width: 34px;
    border-radius: 7px;
    display: block;
}
.header__logo-text {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;          /* white — sits on the near-black header */
    white-space: nowrap;
}

/* Remove the redundant breadcrumb bar ("second header") */
.breadcrumbs {
    display: none !important;
}