/* =========================================================
   Geel-thema (bijv. CIB Rapportage)
   Plaats bij de customization group van deze site, bijv.
   /CUST-<SITE>/public/share/geel.css

   Dit bestand bevat ALLEEN themavariabelen. Alle layout en
   fixes staan in de gedeelde basis:
   /public/share/style/style.css

   Policy-variabelen voor deze site:
   - session.customer_css_customization -> dit bestand
   - session.customer_css_style         -> /public/share/style/style.css

   Niet-gezette variabelen vallen terug op de standaard-
   waarden in style.css.
   ========================================================= */
:root {
    --theme-brand-color: #f9e11e;             /* geel accent */
    --theme-brand-color-light: #fdf6bc;       /* titelbalk */
    --theme-brand-color-text: #000000;        /* zwart op geel (leesbaarheid) */
    --theme-brand-color-light-text: #000000;

    /* Overige beschikbare variabelen (nu op standaardwaarde):
    --theme-bg-color: #ffffff;
    --theme-box-bg-color: #f3f3f3;
    --theme-button-primary-color: #02679a;
    --theme-button-primary-color-hover: #03496c;
    --theme-button-primary-text-color: #ffffff;
    --theme-button-primary-text-color-hover: #ffffff;
    --theme-form-input-bg-color: #ffffff;
    --theme-form-input-border-color: #01689b;
    --theme-link-color: #01689b;
    --theme-link-color-hover: #004161;
    --theme-nav-color: #02679a;
    --theme-nav-color-hover: #03496c;
    --theme-nav-text-color: #ffffff;
    --theme-nav-text-color-hover: #000000;
    --theme-text-color: #000000;
    */
}

/* Donkergele accentbalk onder de titelbalk — even dik (48px)
   als de lichte titelbalk zelf */
.titlebar {
    border-bottom: 48px solid var(--brand-color, #f9e11e);
}

/* Verdwaald #search-blok dat in het (oude) template ín de
   titelbalk genest zit — zou anders als geel blokje naast
   de titel verschijnen in plaats van als balk eronder */
.titlebar #search {
    display: none;
}

/* "RIVM" links uitlijnen met de contentkolom, zodat de naam
   precies boven de paginatitel ("CIB Rapportage") staat.
   (body-prefix nodig: dit bestand laadt vóór de basis-CSS) */
body .titlebar .wrapper {
    margin: 0 auto;
    width: var(--col-width, 660px);
    max-width: calc(100% - 3rem);
    padding: 0;
    text-align: left;
}