:root {
    --wolf-orange: #f36f2c;
    --wolf-orange-dark: #cf541a;
    --wolf-orange-soft: #fff0e7;
    --wolf-black: #171717;
    --wolf-charcoal: #282828;
    --wolf-gray-900: #303030;
    --wolf-gray-700: #646464;
    --wolf-gray-300: #d9d9d9;
    --wolf-gray-100: #f4f4f4;
    --wolf-white: #ffffff;
    --wolf-shadow: 0 12px 34px rgba(23, 23, 23, .08);
}

html, body { min-height: 100%; }
body {
    background: #f5f5f5;
    color: var(--wolf-charcoal);
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Login */
.login-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 20%, rgba(243,111,44,.18), transparent 34%),
        linear-gradient(135deg, #1c1c1c 0%, #313131 52%, #151515 100%);
}
.login-shell { min-height: 100vh; }
.login-brand-panel {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    color: white;
}
.login-brand-logo {
    max-width: 540px;
    width: 100%;
    background: white;
    border-radius: 1.25rem;
    padding: 1.25rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.login-brand-panel h1 { font-weight: 750; letter-spacing: -.03em; }
.login-accent { width: 76px; height: 5px; border-radius: 10px; background: var(--wolf-orange); }
.login-form-panel { background: rgba(255,255,255,.98); }
.login-card { max-width: 490px; width: 100%; border: 0; background: transparent; }
.login-card .form-control { min-height: 52px; }

/* Header */
.wolf-header {
    background: var(--wolf-white);
    border-bottom: 1px solid #e4e4e4;
    position: sticky;
    top: 0;
    z-index: 1030;
}
.wolf-brand-logo { width: 230px; max-height: 68px; object-fit: contain; object-position: left center; }
.wolf-navbar .nav-link {
    color: var(--wolf-gray-900);
    font-weight: 600;
    padding: 1.65rem .85rem;
    border-bottom: 3px solid transparent;
}
.wolf-navbar .nav-link:hover, .wolf-navbar .nav-link.active {
    color: var(--wolf-orange-dark);
    border-bottom-color: var(--wolf-orange);
}
.user-chip {
    display: flex; align-items: center; gap: .7rem;
    padding: .45rem .75rem;
    background: var(--wolf-gray-100);
    border-radius: 999px;
}
.user-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--wolf-orange); color: white; font-weight: 700;
}

/* Main elements */
.page-shell { min-height: calc(100vh - 160px); }
.page-kicker { color: var(--wolf-orange-dark); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.page-title { font-weight: 750; letter-spacing: -.025em; color: var(--wolf-black); }
.wolf-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: var(--wolf-shadow);
    overflow: hidden;
}
.wolf-card-header {
    padding: 1.1rem 1.35rem;
    background: white;
    border-bottom: 1px solid #ececec;
    font-weight: 700;
}
.menu-card {
    border: 0; border-radius: 1rem; min-height: 180px;
    background: white;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    box-shadow: var(--wolf-shadow);
    border-left: 5px solid transparent;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(23,23,23,.13); border-left-color: var(--wolf-orange); }
.menu-icon {
    width: 58px; height: 58px; flex: 0 0 58px;
    display: grid; place-items: center; border-radius: 16px;
    background: var(--wolf-orange-soft); color: var(--wolf-orange-dark); font-size: 1.55rem;
}
.menu-arrow { color: var(--wolf-orange); font-size: 1.25rem; }
.welcome-panel {
    border: 0; border-radius: 1.15rem; overflow: hidden;
    background: linear-gradient(120deg, #222 0%, #363636 70%, #242424 100%);
    color: white; box-shadow: var(--wolf-shadow);
}
.welcome-panel::after {
    content: "W"; position: absolute; right: 2rem; top: -3rem;
    font-size: 15rem; line-height: 1; font-weight: 900; color: rgba(243,111,44,.12);
}

/* Bootstrap overrides */
.btn-primary { --bs-btn-bg: var(--wolf-orange); --bs-btn-border-color: var(--wolf-orange); --bs-btn-hover-bg: var(--wolf-orange-dark); --bs-btn-hover-border-color: var(--wolf-orange-dark); --bs-btn-active-bg: var(--wolf-orange-dark); --bs-btn-active-border-color: var(--wolf-orange-dark); }
.btn-outline-primary { --bs-btn-color: var(--wolf-orange-dark); --bs-btn-border-color: var(--wolf-orange); --bs-btn-hover-bg: var(--wolf-orange); --bs-btn-hover-border-color: var(--wolf-orange); }
.form-control:focus, .form-select:focus, .form-check-input:focus { border-color: var(--wolf-orange); box-shadow: 0 0 0 .25rem rgba(243,111,44,.18); }
.form-check-input:checked { background-color: var(--wolf-orange); border-color: var(--wolf-orange); }
.nav-tabs { border-bottom-color: #ddd; gap: .25rem; }
.nav-tabs .nav-link { color: var(--wolf-gray-700); font-weight: 650; border: 0; border-bottom: 3px solid transparent; }
.nav-tabs .nav-link:hover, .nav-tabs .nav-link.active { color: var(--wolf-orange-dark); background: transparent; border-bottom-color: var(--wolf-orange); }
.table thead th { background: #292929; color: white; font-weight: 650; border: 0; }
.table > :not(caption) > * > * { padding: .85rem 1rem; vertical-align: middle; }
.alert { border: 0; border-radius: .85rem; }

.wolf-footer { background: #222; color: rgba(255,255,255,.72); }
.wolf-footer-mark { height: 34px; width: 34px; object-fit: contain; background: white; border-radius: 6px; padding: 2px; }

@media (max-width: 991.98px) {
    .login-brand-panel { min-height: auto; padding: 2rem 1.5rem; }
    .login-brand-logo { max-width: 360px; }
    .login-form-panel { min-height: 58vh; }
    .wolf-brand-logo { width: 185px; }
    .wolf-navbar .nav-link { padding: .65rem 0; border-bottom: 0; }
    .welcome-panel::after { font-size: 10rem; right: -1rem; }
}

/* ==========================================================
   App-Layout und Modulkonzept
   ========================================================== */
.app-body { min-height: 100vh; background: #f3f4f6; }
.app-topbar {
    height: 82px;
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
    box-shadow: 0 3px 16px rgba(0,0,0,.04);
}
.topbar-brand { display: inline-flex; align-items: center; height: 64px; overflow: hidden; }
.topbar-brand img { width: 225px; height: 64px; object-fit: contain; object-position: left center; }
.sidebar-toggle { font-size: 1.7rem; padding: .25rem .5rem; color: var(--wolf-charcoal); }
.user-chip small, .user-chip strong { display: block; line-height: 1.15; }
.user-chip small { color: var(--wolf-gray-700); font-size: .68rem; font-weight: 500; }
.user-chip strong { font-size: .84rem; margin-top: .15rem; }
.logout-button { min-height: 38px; }

.app-layout { display: flex; min-height: calc(100vh - 122px); }
.app-sidebar {
    --bs-offcanvas-width: 272px;
    width: 272px;
    flex: 0 0 272px;
    background: #202020;
    color: #fff;
    border-right: 0 !important;
}
.app-sidebar .offcanvas-body { overflow-y: auto; }
.sidebar-nav { padding: 1.25rem .9rem; }
.sidebar-group {
    padding: 1rem .85rem .45rem;
    color: rgba(255,255,255,.42);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 800;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: .9rem;
    min-height: 47px;
    padding: .72rem .85rem;
    margin-bottom: .2rem;
    border-radius: .7rem;
    color: rgba(255,255,255,.76);
    text-decoration: none;
    font-weight: 650;
    transition: .18s ease;
}
.sidebar-link i { width: 23px; font-size: 1.15rem; text-align: center; }
.sidebar-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.sidebar-link.active { color: #fff; background: var(--wolf-orange); box-shadow: 0 8px 20px rgba(243,111,44,.24); }
.sidebar-footer { display: flex; align-items: center; gap: .75rem; margin: 1rem; padding: 1rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.sidebar-footer img { width: 38px; height: 38px; object-fit: contain; background: #fff; border-radius: .45rem; padding: 2px; }
.sidebar-footer strong, .sidebar-footer small { display: block; }
.sidebar-footer small { color: rgba(255,255,255,.42); font-size: .72rem; }
.app-content { min-width: 0; flex: 1 1 auto; }
.app-footer { min-height: 40px; display: flex; justify-content: space-between; align-items: center; padding: .5rem 1.5rem .5rem calc(272px + 1.5rem); background: #191919; color: rgba(255,255,255,.6); font-size: .75rem; }

.dashboard-hero {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 3rem;
    border-radius: 1.2rem;
    color: #fff;
    background: linear-gradient(120deg, #1d1d1d 0%, #343434 72%, #232323 100%);
    box-shadow: var(--wolf-shadow);
}
.dashboard-hero::after { content: "W"; position: absolute; right: 12rem; top: -5.5rem; font-size: 18rem; line-height: 1; font-weight: 900; color: rgba(243,111,44,.11); }
.dashboard-hero-content, .dashboard-date { position: relative; z-index: 1; }
.dashboard-date { align-items: center; gap: .85rem; min-width: 170px; padding: 1rem 1.15rem; border: 1px solid rgba(255,255,255,.13); border-radius: .9rem; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.dashboard-date i { color: var(--wolf-orange); font-size: 1.65rem; }
.dashboard-date small, .dashboard-date strong { display: block; }
.dashboard-date small { color: rgba(255,255,255,.5); }
.dashboard-stat { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: 1rem; background: #fff; box-shadow: var(--wolf-shadow); border-bottom: 3px solid transparent; }
.dashboard-stat:hover { border-bottom-color: var(--wolf-orange); }
.dashboard-stat-icon { width: 54px; height: 54px; display: grid; place-items: center; flex: 0 0 54px; border-radius: .9rem; background: var(--wolf-orange-soft); color: var(--wolf-orange-dark); font-size: 1.4rem; }
.dashboard-stat strong, .dashboard-stat span { display: block; }
.dashboard-stat strong { color: var(--wolf-black); font-size: 1.65rem; line-height: 1; }
.dashboard-stat div > span { margin-top: .35rem; color: var(--wolf-gray-700); font-size: .84rem; }
.dashboard-module { display: flex; align-items: center; gap: 1rem; min-height: 104px; padding: 1.1rem; color: var(--wolf-charcoal); background: #fff; border-radius: 1rem; box-shadow: var(--wolf-shadow); text-decoration: none; border-left: 4px solid transparent; transition: .18s ease; }
.dashboard-module:hover { color: var(--wolf-charcoal); transform: translateY(-2px); border-left-color: var(--wolf-orange); box-shadow: 0 16px 34px rgba(23,23,23,.12); }
.dashboard-module-icon { width: 52px; height: 52px; flex: 0 0 52px; display: grid; place-items: center; border-radius: .85rem; background: var(--wolf-orange-soft); color: var(--wolf-orange-dark); font-size: 1.35rem; }
.dashboard-module-text { min-width: 0; }
.dashboard-module-text strong, .dashboard-module-text small { display: block; }
.dashboard-module-text strong { margin-bottom: .25rem; }
.dashboard-module-text small { color: var(--wolf-gray-700); line-height: 1.35; }
.assignment-list { display: flex; flex-direction: column; }
.assignment-item { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.25rem; border-bottom: 1px solid #eee; }
.assignment-item:last-child { border-bottom: 0; }
.assignment-item > i { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border-radius: .65rem; background: var(--wolf-orange-soft); color: var(--wolf-orange-dark); }
.assignment-item small, .assignment-item strong { display: block; }
.assignment-item small { color: var(--wolf-gray-700); font-size: .73rem; }
.empty-state { display: flex; align-items: center; gap: .8rem; color: var(--wolf-gray-700); }
.empty-state i { color: var(--wolf-orange); font-size: 1.35rem; }
.module-heading { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.module-heading-icon { width: 72px; height: 72px; flex: 0 0 72px; display: grid; place-items: center; border-radius: 1rem; background: var(--wolf-orange-soft); color: var(--wolf-orange-dark); font-size: 2rem; }

@media (min-width: 992px) {
    .app-sidebar { position: sticky; top: 82px; height: calc(100vh - 82px); visibility: visible !important; transform: none !important; }
}
@media (max-width: 991.98px) {
    .app-topbar { height: 70px; }
    .topbar-brand, .topbar-brand img { height: 52px; }
    .topbar-brand img { width: 170px; }
    .app-layout { min-height: calc(100vh - 110px); }
    .app-sidebar { width: var(--bs-offcanvas-width); }
    .app-footer { padding-left: 1rem; }
    .dashboard-hero { padding: 2rem; min-height: 190px; }
    .dashboard-hero::after { right: -2rem; }
}
@media (max-width: 575.98px) {
    .user-chip { padding: .3rem; background: transparent; }
    .topbar-brand img { width: 135px; }
    .dashboard-hero { padding: 1.5rem; }
    .dashboard-hero h1 { font-size: 1.8rem; }
    .module-heading-icon { width: 58px; height: 58px; flex-basis: 58px; font-size: 1.55rem; }
    .app-footer { flex-direction: column; gap: .15rem; text-align: center; }
}

/* ==========================================================
   Dunkle Wolf-Sidebar
   ========================================================== */
.app-sidebar,
.app-sidebar.offcanvas,
.app-sidebar .offcanvas-body,
.app-sidebar .sidebar-nav {
    --bs-offcanvas-bg: #20252b;
    --bs-offcanvas-color: #f4f5f6;
    background-color: #20252b !important;
    color: #f4f5f6 !important;
}

.app-sidebar {
    border-right: 1px solid rgba(255, 255, 255, .07) !important;
    box-shadow: 8px 0 26px rgba(16, 20, 24, .12);
}

.app-sidebar .offcanvas-header {
    background-color: #20252b !important;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.app-sidebar .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.sidebar-group {
    color: #929ba5;
}

.sidebar-link {
    color: #e2e5e8 !important;
}

.sidebar-link i {
    color: #f47a2a;
}

.sidebar-link:hover,
.sidebar-link:focus-visible {
    color: #fff !important;
    background-color: #2d333a !important;
    box-shadow: inset 3px 0 0 #f47a2a;
}

.sidebar-link.active,
.sidebar-link.active:hover,
.sidebar-link.active:focus-visible {
    color: #fff !important;
    background: linear-gradient(135deg, #f47a2a, #ee6523) !important;
    box-shadow: 0 9px 22px rgba(244, 122, 42, .28);
}

.sidebar-link.active i {
    color: #fff;
}

.sidebar-footer {
    background-color: #191d21;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .85rem;
    color: #f1f2f3;
}

.sidebar-footer small {
    color: #929ba5;
}

@media (max-width: 991.98px) {
    .app-sidebar.offcanvas {
        background-color: #20252b !important;
    }
}

/* ==========================================================
   Personalkonto-Untermodule
   ========================================================== */
.sidebar-subnav {
    margin: .1rem 0 .65rem 1.55rem;
    padding-left: .75rem;
    border-left: 1px solid rgba(255,255,255,.13);
}
.sidebar-sublink {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-height: 38px;
    padding: .48rem .65rem;
    border-radius: .55rem;
    color: #b9c0c7;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    transition: .18s ease;
}
.sidebar-sublink i { width: 18px; color: #f47a2a; text-align: center; }
.sidebar-sublink:hover,
.sidebar-sublink:focus-visible { color: #fff; background: #2d333a; }
.sidebar-sublink.active { color: #fff; background: rgba(244,122,42,.18); box-shadow: inset 3px 0 0 #f47a2a; }
.sidebar-sublink.active i { color: #fff; }

.personnel-module-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 132px;
    height: 100%;
    padding: 1.35rem;
    border: 1px solid #eceff2;
    border-radius: 1rem;
    background: #fff;
    color: var(--wolf-charcoal);
    text-decoration: none;
    box-shadow: var(--wolf-shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.personnel-module-card:hover {
    color: var(--wolf-charcoal);
    transform: translateY(-3px);
    border-color: rgba(244,122,42,.45);
    box-shadow: 0 16px 34px rgba(23,23,23,.13);
}
.personnel-module-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: .9rem;
    background: var(--wolf-orange-soft);
    color: var(--wolf-orange-dark);
    font-size: 1.5rem;
}
.personnel-module-content { min-width: 0; padding-right: 1.5rem; }
.personnel-module-content strong,
.personnel-module-content small { display: block; }
.personnel-module-content strong { margin-bottom: .35rem; font-size: 1rem; }
.personnel-module-content small { color: var(--wolf-gray-700); line-height: 1.4; }
.personnel-module-arrow { position: absolute; right: 1.15rem; color: #b7bdc3; }
.personnel-module-card:hover .personnel-module-arrow { color: var(--wolf-orange); }
.module-back-link { color: var(--wolf-gray-700); text-decoration: none; font-size: .86rem; font-weight: 650; }
.module-back-link:hover { color: var(--wolf-orange-dark); }
.submodule-placeholder { display: flex; align-items: center; gap: 1.25rem; }
.submodule-placeholder > span { width: 68px; height: 68px; flex: 0 0 68px; display: grid; place-items: center; border-radius: 1rem; background: var(--wolf-orange-soft); color: var(--wolf-orange-dark); font-size: 1.75rem; }
@media (max-width: 575.98px) {
    .personnel-module-card { min-height: 112px; padding: 1.05rem; }
    .personnel-module-icon { width: 48px; height: 48px; flex-basis: 48px; font-size: 1.25rem; }
    .submodule-placeholder { align-items: flex-start; }
}

/* ==========================================================
   Sidebar: Accordion, Suche und Favoriten
   ========================================================== */
.sidebar-nav { padding-top: 1rem; }
.sidebar-search-wrap {
    position: sticky; top: 0; z-index: 4; display: flex; align-items: center;
    margin: 0 .15rem .85rem; border: 1px solid rgba(255,255,255,.12);
    border-radius: .7rem; background: #171b1f; box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.sidebar-search-wrap > i { margin-left: .8rem; color: #89939d; }
.sidebar-search { min-width: 0; width: 100%; height: 42px; padding: 0 .55rem; border: 0; outline: 0; color: #fff; background: transparent; font-size: .84rem; }
.sidebar-search::placeholder { color: #89939d; }
.sidebar-search-clear { display: none; width: 35px; height: 35px; margin-right: .2rem; border: 0; border-radius: .5rem; color: #aeb5bc; background: transparent; }
.sidebar-search-clear:hover { color: #fff; background: rgba(255,255,255,.08); }
.sidebar-search-wrap.has-value .sidebar-search-clear { display: grid; place-items: center; }
.sidebar-favorites { margin-bottom: .6rem; padding-bottom: .6rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-favorite-link { display: flex; align-items: center; gap: .7rem; min-height: 38px; padding: .48rem .65rem; margin-bottom: .12rem; border-radius: .55rem; color: #d9dde1; text-decoration: none; font-size: .82rem; font-weight: 600; }
.sidebar-favorite-link:hover { color: #fff; background: #2d333a; }
.sidebar-favorite-link > i:first-child { width: 18px; color: #f47a2a; text-align: center; }
.sidebar-favorite-link .bi-star-fill { margin-left: auto; color: #ffc107; font-size: .76rem; }
.sidebar-module { margin-bottom: .18rem; }
.sidebar-module-row { display: flex; align-items: stretch; gap: .15rem; }
.sidebar-module-row > .sidebar-link { flex: 1 1 auto; min-width: 0; margin-bottom: 0; }
.sidebar-module-toggle { display: flex; align-items: center; gap: .9rem; min-width: 0; flex: 1 1 auto; min-height: 47px; padding: .72rem .72rem .72rem .85rem; border: 0; border-radius: .7rem; color: #e2e5e8; background: transparent; text-align: left; font-weight: 650; transition: .18s ease; }
.sidebar-module-toggle:hover, .sidebar-module-toggle:focus-visible { color: #fff; background: #2d333a; box-shadow: inset 3px 0 0 #f47a2a; outline: 0; }
.sidebar-module-toggle.active { color: #fff; background: rgba(244,122,42,.13); }
.sidebar-module-icon { width: 23px; color: #f47a2a; font-size: 1.15rem; text-align: center; }
.sidebar-chevron { width: auto !important; margin-left: auto; color: #7f8992 !important; font-size: .82rem !important; transition: transform .2s ease; }
.sidebar-module-toggle[aria-expanded="true"] .sidebar-chevron { transform: rotate(180deg); color: #f47a2a !important; }
.sidebar-favorite-toggle { flex: 0 0 36px; width: 36px; min-height: 42px; border: 0; border-radius: .6rem; color: #69737d; background: transparent; opacity: .45; transition: .18s ease; }
.sidebar-module-row:hover .sidebar-favorite-toggle, .sidebar-subrow:hover .sidebar-favorite-toggle, .sidebar-favorite-toggle.is-favorite, .sidebar-favorite-toggle:focus-visible { opacity: 1; }
.sidebar-favorite-toggle:hover { color: #ffc107; background: rgba(255,255,255,.07); }
.sidebar-favorite-toggle.is-favorite { color: #ffc107; }
.sidebar-subrow { display: flex; align-items: center; gap: .1rem; }
.sidebar-subrow .sidebar-sublink { min-width: 0; flex: 1 1 auto; }
.sidebar-favorite-toggle-sub { flex-basis: 30px; width: 30px; min-height: 32px; font-size: .76rem; }
.sidebar-collapse.collapsing { transition: height .2s ease; }
.sidebar-no-results { display: flex; align-items: center; gap: .7rem; padding: 1rem .75rem; color: #89939d; font-size: .82rem; }
.sidebar-module.search-match > .sidebar-module-row { background: rgba(244,122,42,.06); border-radius: .7rem; }
@media (hover: none) { .sidebar-favorite-toggle { opacity: .8; } }

/* Betriebs-Untermodul-Komponenten */
.wolf-badge-orange {
    background: var(--wolf-orange, #f58220);
    color: #fff;
}
.stat-icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: .85rem;
    background: rgba(245, 130, 32, .13);
    color: var(--wolf-orange, #f58220);
    font-size: 1.4rem;
}
.wolf-card .table > :not(caption) > * > * {
    padding: .95rem 1rem;
}
.wolf-card .table thead th {
    white-space: nowrap;
    color: #59616a;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .035em;
    background: #f7f8fa;
}


/* ==========================================================
   Sticky Footer: Fußzeile bleibt bei kurzen Seiten unten
   ========================================================== */
html,
body {
    height: 100%;
}

body.app-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.app-topbar {
    flex: 0 0 auto;
}

.app-layout {
    flex: 1 0 auto;
    min-height: 0 !important;
}

.app-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.app-content > .container-fluid {
    flex: 1 0 auto;
}

.app-footer {
    flex: 0 0 auto;
    margin-top: auto;
}

@media (min-width: 992px) {
    .app-layout {
        min-height: calc(100vh - 82px - 40px) !important;
    }
}

@media (max-width: 991.98px) {
    .app-layout {
        min-height: calc(100vh - 70px - 40px) !important;
    }
}
