/* Kontext-Banner (HR-Ansicht / Meine Ansicht)
 *
 * Der Banner liegt fix am oberen Rand. #sidebar ist selbst position:fixed
 * und wuerde ihn sonst ueberlagern - deshalb wird sie per Klasse auf
 * <html> nach unten versetzt, analog zu mitarbeiterportal/vorschau.php.
 * Hoehe an EINER Stelle: --kontext-banner-hoehe.
 */
:root {
    --kontext-banner-hoehe: 40px;
}

#kontext-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--kontext-banner-hoehe);
    box-sizing: border-box;
}

html.hat-kontext-banner body {
    padding-top: var(--kontext-banner-hoehe);
}

html.hat-kontext-banner #sidebar {
    top: var(--kontext-banner-hoehe);
    height: calc(100vh - var(--kontext-banner-hoehe));
}

html.hat-kontext-banner #mobile-header {
    top: var(--kontext-banner-hoehe);
}