/*
 * UGent admin branding — overrides Wagtail's CSS custom properties.
 * Injected via the insert_global_admin_css hook in wagtail_hooks.py.
 *
 * Primary colour: UGent blue #1e64c8 (HSL ≈ 215° 74% 45%)
 * All secondary shades are derived from the same hue/saturation so
 * buttons, links, focus rings, and progress bars stay in sync.
 */

:root {
    --w-color-primary: #1e64c8;
    --w-color-primary-200: hsl(215 74% 28%);

    --w-color-secondary-hue: 215;
    --w-color-secondary-saturation: 74%;
    --w-color-secondary-lightness: 45%;
}

/* Custom branding logo — toggle between full and small based on sidebar state */
.admin-logo {
    display: block;
    height: auto;
}

.admin-logo--full {
    max-width: 160px;
}

.admin-logo--small {
    display: none;
    width: 32px;
}

.sidebar--slim .admin-logo--full {
    display: none;
}

.sidebar--slim .admin-logo--small {
    display: block;
}
