/* Shared layout styles extracted from resources/views/layout.blade.php. */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: calc(var(--topbar-h, 72px) + var(--module-tabs-h, 0px) + 18px);
        }

        .fb-profile-meta {
            padding-bottom: 0;
        }

        .fb-sub {
            margin-top: 3px;
            line-height: 1.3;
        }

        .dashboard-hero-no-tabs .fb-profilebar {
            min-height: 0 !important;
            padding-bottom: 8px !important;
        }

        .dashboard-hero-no-tabs .fb-profile-left {
            min-height: 0;
            margin-bottom: 0;
        }

        @media (max-width: 720px) {
            .global-hero {
                margin-bottom: 4px !important;
            }

            .global-hero .fb-profilebar {
                min-height: 0 !important;
                height: auto !important;
                max-height: none !important;
                padding: 8px 12px 0 !important;
                padding-bottom: 0 !important;
                display: block !important;
                justify-content: flex-start !important;
                align-items: flex-start !important;
                overflow: visible !important;
            }

            .global-hero .fb-profile-left {
                min-height: 0 !important;
                height: auto !important;
                margin-bottom: 0 !important;
                gap: 4px !important;
            }

            .global-hero .fb-profile-meta {
                padding-top: 0 !important;
                padding-bottom: 0 !important;
                margin-bottom: 0 !important;
            }

            .global-hero .fb-sub {
                margin-top: 2px !important;
            }

            .global-hero .fb-sub-advisory {
                margin-bottom: 0 !important;
            }

            .global-hero .admin-role-tabs,
            .global-hero .module-tab-row,
            .global-hero .fb-tabs {
                margin-top: 0 !important;
            }

            .global-hero .admin-role-tabs {
                gap: 10px !important;
                padding: 4px 8px !important;
            }

            .global-hero .admin-role-tab {
                padding: 4px 1px !important;
                font-size: 12px !important;
            }

            .global-hero .fb-tabs {
                padding: 4px !important;
            }

            .global-hero .fb-tab {
                padding: 8px 10px !important;
                font-size: 12px !important;
            }
        }

        @media (max-width: 1080px) {
            .topbar .brand .brand-link {
                gap: 8px !important;
            }

            .topbar .brand .brand-text {
                gap: 1px;
            }

            .topbar .brand .brand-title {
                font-size: clamp(12px, 2.55vw, 15px);
                line-height: 1.05;
                letter-spacing: -.01em;
                overflow: visible;
                text-overflow: clip;
            }

            .topbar .brand .brand-subtitle {
                display: block !important;
                font-size: clamp(7px, 1.68vw, 10px);
                line-height: 1.14;
                white-space: nowrap;
                overflow: visible;
                text-overflow: clip;
            }
        }

        @media (max-width: 560px) {
            .topbar .brand .brand-link {
                gap: 6px !important;
            }

            .topbar .brand .brand-title {
                font-size: clamp(10.75px, 3.55vw, 13px);
            }

            .topbar .brand .brand-subtitle {
                font-size: clamp(6.4px, 2.2vw, 8.4px);
                line-height: 1.12;
            }
        }

        .topbar-surface,
        .panel,
        .card,
        .dash-card,
        .registry-top-card,
        .btn,
        .nav > a,
        .nav-dd-btn,
        .nav-user-btn,
        .nav-mobile-action,
        .admin-role-tab,
        .fb-tab {
            transition:
                transform var(--ui-transition-base, .22s cubic-bezier(.2, .8, .2, 1)),
                box-shadow var(--ui-transition-base, .22s cubic-bezier(.2, .8, .2, 1)),
                border-color var(--ui-transition-fast, .16s cubic-bezier(.2, .8, .2, 1)),
                background-color var(--ui-transition-fast, .16s cubic-bezier(.2, .8, .2, 1)),
                color var(--ui-transition-fast, .16s cubic-bezier(.2, .8, .2, 1)),
                opacity var(--ui-transition-fast, .16s cubic-bezier(.2, .8, .2, 1));
        }

        .panel,
        .card,
        .dash-card,
        .registry-top-card {
            will-change: transform, box-shadow;
            transform: translateZ(0);
        }

        @media (hover: hover) and (pointer: fine) {
            .panel:hover,
            .card:hover,
            .dash-card:hover,
            .registry-top-card:hover {
                transform: translateY(-2px);
                box-shadow: 0 20px 40px rgba(10, 54, 32, .10);
            }

            .btn:hover,
            .nav > a:hover,
            .nav-dd-btn:hover,
            .nav-user-btn:hover,
            .nav-mobile-action:hover,
            .admin-role-tab:hover,
            .fb-tab:hover {
                transform: translateY(-1px);
            }
        }

        .btn:active,
        .nav > a:active,
        .nav-dd-btn:active,
        .nav-user-btn:active,
        .nav-mobile-action:active,
        .admin-role-tab:active,
        .fb-tab:active {
            transform: translateY(0) scale(.985);
        }

        .site-cursor-layer {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 99999;
            opacity: 0;
        }

        .site-cursor {
            --site-cursor-x: -120px;
            --site-cursor-y: -120px;
            --site-cursor-scale: 1;
            position: fixed;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            border-radius: 999px;
            border: 1.6px solid rgba(24, 69, 45, .72);
            background: transparent;
            box-shadow: 0 10px 30px rgba(16, 32, 21, .14);
            opacity: 0;
            will-change: transform, opacity;
            transform: translate3d(var(--site-cursor-x), var(--site-cursor-y), 0) translate(-50%, -50%) scale(var(--site-cursor-scale));
            transition: opacity .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
        }

        .site-cursor-dot {
            --site-cursor-dot-x: -120px;
            --site-cursor-dot-y: -120px;
            position: fixed;
            top: 0;
            left: 0;
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #3f6b54;
            box-shadow: 0 0 0 3px rgba(63, 107, 84, .12);
            opacity: 0;
            will-change: transform, opacity;
            transform: translate3d(var(--site-cursor-dot-x), var(--site-cursor-dot-y), 0) translate(-50%, -50%);
            transition: opacity .12s ease, background-color .18s ease, box-shadow .18s ease;
        }

        html.has-custom-cursor {
            --site-cursor-scale: 1;
        }

        html.has-custom-cursor .site-cursor-layer {
            opacity: 1;
        }

        html.has-custom-cursor.cursor-visible .site-cursor {
            opacity: 1;
        }

        html.has-custom-cursor.cursor-visible .site-cursor-dot {
            opacity: 1;
        }

        html.has-custom-cursor.cursor-hover {
            --site-cursor-scale: 1.14;
        }

        html.has-custom-cursor.cursor-pressed {
            --site-cursor-scale: .92;
        }

        html.has-custom-cursor.cursor-text-mode {
            --site-cursor-scale: .76;
        }

        html.has-custom-cursor.cursor-hover .site-cursor {
            border-color: rgba(11, 107, 58, .9);
            background: transparent;
            box-shadow: 0 14px 34px rgba(11, 107, 58, .16);
        }

        html.has-custom-cursor.cursor-hidden .site-cursor,
        html.has-custom-cursor.cursor-text-mode .site-cursor,
        html.has-custom-cursor.cursor-hidden .site-cursor-dot,
        html.has-custom-cursor.cursor-text-mode .site-cursor-dot {
            opacity: 0 !important;
        }

        html[data-theme='dark'] .site-cursor {
            border-color: rgba(157, 214, 182, .62);
            background: transparent;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
        }

        html[data-theme='dark'] .site-cursor-dot {
            background: #9dd6b6;
            box-shadow: 0 0 0 3px rgba(157, 214, 182, .14);
        }

        html[data-theme='dark'].has-custom-cursor.cursor-hover .site-cursor {
            border-color: rgba(157, 214, 182, .9);
            background: rgba(20, 35, 27, .94);
        }

        @media (hover: hover) and (pointer: fine) {
            html.has-custom-cursor input:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='button']):not([type='submit']):not([type='reset']):not([type='color']):not([type='file']),
            html.has-custom-cursor textarea,
            html.has-custom-cursor [contenteditable='true'] {
                cursor: text !important;
            }

            html.has-custom-cursor select {
                cursor: default !important;
            }
        }

        @media (hover: none), (pointer: coarse), print {
            .site-cursor-layer {
                display: none !important;
            }
        }

        .nav-bell-count[hidden],
        .nav-bell-count:empty {
            display: none !important;
        }

        .nav-notify-read {
            display: inline-flex;
            align-items: center;
            justify-content: flex-end;
            white-space: nowrap;
        }

        .nav-notify-read[disabled],
        .nav-notify-read.is-disabled {
            opacity: .5;
            cursor: default;
            pointer-events: none;
        }

        .nav-notify-title,
        .nav-dd .dd-menu-notifications .nav-notify-title {
            font-weight: 500;
        }

        .nav-notify-item.unread .nav-notify-title,
        .nav-dd .dd-menu-notifications .nav-notify-item.unread .nav-notify-title {
            font-weight: 700;
        }

        #content,
        .content,
        .content-container,
        .layout-stack,
        .stack,
        .split,
        .meta-grid,
        .module-grid,
        .toolbar,
        .btn-row,
        .table-actions,
        .table-toolbar,
        .card,
        .panel,
        .table-shell,
        .field {
            min-width: 0;
        }

        .toolbar > *,
        .btn-row > *,
        .table-actions > *,
        .table-toolbar > *,
        .split > *,
        .meta-grid > *,
        .module-grid > * {
            min-width: 0;
            max-width: 100%;
        }

        .panel,
        .card,
        .table-shell,
        .table-wrap,
        .auto-table-wrap {
            max-width: 100%;
        }

        .stack > *,
        .layout-stack > *,
        .split > *,
        .meta-grid > *,
        .module-grid > * {
            max-width: 100%;
        }

        .table-shell,
        .table-wrap,
        .auto-table-wrap {
            width: 100%;
            overflow-x: auto;
            overflow-y: visible;
            -webkit-overflow-scrolling: touch;
            scrollbar-gutter: stable both-edges;
        }

        .table-shell > table.table[data-wide-table="true"],
        .table-wrap > table.table[data-wide-table="true"],
        .auto-table-wrap > table.table[data-wide-table="true"],
        .table-shell > .table[data-wide-table="true"],
        .table-wrap > .table[data-wide-table="true"],
        .auto-table-wrap > .table[data-wide-table="true"] {
            min-width: 720px;
        }

        .table-shell::-webkit-scrollbar,
        .table-wrap::-webkit-scrollbar,
        .auto-table-wrap::-webkit-scrollbar {
            height: 10px;
        }

        .table-shell::-webkit-scrollbar-thumb,
        .table-wrap::-webkit-scrollbar-thumb,
        .auto-table-wrap::-webkit-scrollbar-thumb {
            background: rgba(11, 107, 58, .28);
            border-radius: 999px;
        }

        .table-shell::-webkit-scrollbar-track,
        .table-wrap::-webkit-scrollbar-track,
        .auto-table-wrap::-webkit-scrollbar-track {
            background: rgba(11, 107, 58, .08);
            border-radius: 999px;
        }

        .table td,
        .table th {
            overflow-wrap: anywhere;
        }

        .btn-row,
        .table-actions {
            justify-content: flex-end;
        }

        .btn-row form,
        .table-actions form {
            margin: 0;
        }

        .print-preview-toolbar {
            position: sticky;
            top: calc(var(--topbar-h, 72px) + 10px);
            z-index: 80;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 16px;
            padding: 12px 14px;
            border: 1px solid rgba(11, 107, 58, .14);
            border-radius: 16px;
            background: rgba(255, 255, 255, .94);
            box-shadow: 0 18px 34px rgba(15, 31, 22, .12);
            backdrop-filter: blur(12px);
        }

        .print-preview-toolbar[hidden] {
            display: none !important;
        }

        .print-preview-toolbar__copy {
            flex: 1 1 280px;
            min-width: 0;
        }

        .print-preview-toolbar__eyebrow {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: #547063;
        }

        .print-preview-toolbar__title {
            margin-top: 4px;
            font-size: 16px;
            font-weight: 800;
            color: #173526;
        }

        .print-preview-toolbar__hint {
            margin-top: 4px;
            font-size: 13px;
            line-height: 1.45;
            color: #5b6b63;
        }

        .print-preview-toolbar__actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 8px;
        }

        html[data-theme='dark'] .print-preview-toolbar {
            background: rgba(22, 33, 29, .94);
            border-color: rgba(157, 214, 182, .16);
            box-shadow: 0 18px 38px rgba(0, 0, 0, .34);
        }

        html[data-theme='dark'] .print-preview-toolbar__eyebrow {
            color: #9dc8b0;
        }

        html[data-theme='dark'] .print-preview-toolbar__title {
            color: #edf7f1;
        }

        html[data-theme='dark'] .print-preview-toolbar__hint {
            color: #b6cbbf;
        }

        @media (max-width: 980px) {
            .toolbar,
            .table-toolbar {
                align-items: stretch;
            }

            .toolbar > :first-child,
            .table-toolbar > :first-child {
                flex: 1 1 100%;
            }

            .btn-row,
            .table-actions,
            .table-toolbar .toolbar-right {
                width: 100%;
                justify-content: flex-start;
            }

            .btn-row > .btn,
            .btn-row > a.btn,
            .table-actions > .btn,
            .table-actions > a.btn,
            .table-toolbar .toolbar-right > .btn,
            .table-toolbar .toolbar-right > a.btn {
                flex: 1 1 180px;
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 700px) {
            .print-preview-toolbar {
                align-items: stretch;
                flex-direction: column;
            }

            .print-preview-toolbar__actions {
                justify-content: stretch;
            }

            .print-preview-toolbar__actions > * {
                width: 100%;
            }
        }

        @media (max-width: 640px) {
            .btn-row > *,
            .table-actions > * {
                flex: 1 1 100%;
                width: 100%;
            }

            .table-shell > table.table[data-wide-table="true"],
            .table-wrap > table.table[data-wide-table="true"],
            .auto-table-wrap > table.table[data-wide-table="true"],
            .table-shell > .table[data-wide-table="true"],
            .table-wrap > .table[data-wide-table="true"],
            .auto-table-wrap > .table[data-wide-table="true"] {
                min-width: 640px;
            }
        }

        body.page {
            --footer-h: 0px;
            --footer-gap: .25in;
            --bg: #f4ecdc;
            --card: #ffffff;
            --text: #151515;
            --muted: #586257;
            font-family: "DM Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
        }

        body.page.login-page {
            --footer-gap: 0px;
        }

        body.page,
        body.page button,
        body.page input,
        body.page select,
        body.page textarea {
            font-family: "DM Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }

        body.page #content {
            flex: 1 0 auto;
            display: flex;
            flex-direction: column;
            margin-bottom: 0;
            padding-bottom: 0 !important;
        }

        body.page .content-container {
            flex: 1 0 auto;
            width: 100%;
            padding-bottom: var(--footer-gap) !important;
        }

        body.page .topbar {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 7000;
            margin: 0;
            background: linear-gradient(180deg, var(--site-navbar-color-dark) 0%, var(--site-navbar-color) 100%);
            box-shadow: 0 24px 36px rgba(0, 0, 0, .16);
        }

        body.page .topbar::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 3px;
            background: linear-gradient(90deg, rgba(201, 170, 84, .88), rgba(244, 236, 220, .92), rgba(125, 245, 111, .7));
            opacity: .92;
        }

        body.page .topbar .container {
            width: min(100%, 1340px);
            padding-inline: 18px;
        }

        body.page .topbar-surface {
            min-height: 84px;
            gap: 16px;
        }

        body.page .logo-img,
        body.page .brand-logo-img {
            width: 52px;
            height: 52px;
            max-width: 52px;
            max-height: 52px;
            filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .22));
        }

        body.page .brand-link {
            gap: 14px !important;
        }

        body.page .brand-title {
            font-size: clamp(1rem, .95rem + .5vw, 1.3rem);
            font-weight: 700;
            letter-spacing: -.04em;
        }

        body.page .brand-subtitle {
            color: rgba(255, 255, 255, .82);
            font-size: .76rem;
            line-height: 1.22;
        }

        body.page .topbar-clock {
            min-width: 186px;
            padding: 10px 16px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
        }

        body.page .nav > a,
        body.page .nav-dd-btn,
        body.page .nav-user-btn,
        body.page .nav-bell-btn {
            min-height: 42px;
            padding: 0 15px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .08);
            color: #fff;
            box-shadow: none;
        }

        body.page .nav > a:hover,
        body.page .nav > a.active,
        body.page .nav-dd-btn:hover,
        body.page .nav-dd:focus-within .nav-dd-btn,
        body.page .nav-user-btn:hover,
        body.page .nav-user:focus-within .nav-user-btn,
        body.page .nav-notifications .nav-bell-btn:hover,
        body.page .nav-notifications .nav-bell-btn:focus-visible,
        body.page .nav-notifications:focus-within .nav-bell-btn,
        body.page .nav-notifications.is-open .nav-bell-btn {
            background: #ffffff;
            color: var(--site-navbar-color);
            border-color: #ffffff;
        }

        body.page .nav-user-chip {
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .08);
            padding: 6px 8px 6px 16px;
        }

        body.page .nav-user-name,
        body.page .nav-user-copy strong,
        body.page .nav-user-copy span {
            color: #ffffff;
        }

        body.page .nav-bell-btn svg path {
            stroke: currentColor;
        }

        body.page .nav-bell-btn .nav-bell-icon,
        body.page .nav-bell-btn .nav-bell-icon svg {
            color: #ffffff;
            opacity: 1;
            filter: none;
        }

        body.page .nav-notifications .nav-bell-btn:hover .nav-bell-icon,
        body.page .nav-notifications .nav-bell-btn:hover .nav-bell-icon svg,
        body.page .nav-notifications .nav-bell-btn:focus-visible .nav-bell-icon,
        body.page .nav-notifications .nav-bell-btn:focus-visible .nav-bell-icon svg,
        body.page .nav-notifications:focus-within .nav-bell-btn .nav-bell-icon,
        body.page .nav-notifications:focus-within .nav-bell-btn .nav-bell-icon svg,
        body.page .nav-notifications.is-open .nav-bell-btn .nav-bell-icon,
        body.page .nav-notifications.is-open .nav-bell-btn .nav-bell-icon svg {
            color: var(--site-navbar-color);
            opacity: 1;
            filter: none;
        }

        body.page .nav-bell-count {
            background: var(--dls-gold);
            color: #1b150a;
            box-shadow: 0 0 0 2px var(--site-navbar-color);
        }

        body.page .btn,
        body.page a.btn,
        body.page button.btn {
            --btn-fg: #ffffff;
            --btn-base-bg: var(--site-button-color);
            --btn-hover-bg: #ffffff;
            position: relative;
            isolation: isolate;
            overflow: hidden;
            min-height: 44px;
            padding: 10px 18px;
            border-radius: 999px;
            border: 1px solid transparent;
            background-color: var(--btn-base-bg);
            background-image: radial-gradient(circle, var(--btn-hover-bg) 0 47%, rgba(255, 255, 255, 0) 49%);
            background-repeat: no-repeat;
            background-size: 220% 220%;
            background-position: 50% 148%;
            color: var(--btn-fg) !important;
            font-size: .92rem;
            font-weight: 700;
            letter-spacing: .01em;
            box-shadow: 0 12px 24px var(--site-button-color-border);
            text-shadow: none;
            -webkit-text-stroke: 0 transparent;
            transition:
                color .18s ease,
                background-color .18s ease,
                background-position .65s ease,
                border-color .18s ease,
                box-shadow .24s ease,
                transform .18s ease;
        }

        body.page .btn::before,
        body.page a.btn::before,
        body.page button.btn::before {
            content: none;
        }

        body.page .btn > *,
        body.page a.btn > *,
        body.page button.btn > * {
            position: relative;
            z-index: 2;
            color: inherit !important;
        }

        body.page .btn__label {
            position: relative;
            z-index: 2;
            display: inline-block;
            line-height: 1;
            font: inherit;
            font-weight: inherit;
            letter-spacing: inherit;
            color: inherit !important;
            text-shadow: none;
            -webkit-text-stroke: 0 transparent;
            transition: color .18s ease;
        }

        body.page .btn:hover::before,
        body.page .btn:focus-visible::before,
        body.page .btn:active::before,
        body.page a.btn:hover::before,
        body.page a.btn:focus-visible::before,
        body.page a.btn:active::before,
        body.page button.btn:hover::before,
        body.page button.btn:focus-visible::before,
        body.page button.btn:active::before {
            content: none;
        }

        body.page .btn:hover,
        body.page .btn:focus-visible,
        body.page .btn:active,
        body.page a.btn:hover,
        body.page a.btn:focus-visible,
        body.page a.btn:active,
        body.page button.btn:hover,
        body.page button.btn:focus-visible,
        body.page button.btn:active {
            --btn-fg: var(--site-button-color-dark);
            background-position: 50% -42%;
            box-shadow: 0 18px 30px var(--site-button-color-soft);
        }

        body.page .btn.secondary {
            --btn-fg: var(--site-button-color-dark);
            --btn-base-bg: #ffffff;
            --btn-hover-bg: var(--site-button-color);
            border-color: var(--site-button-color-border);
            box-shadow: 0 10px 22px var(--site-button-color-soft);
        }

        body.page .btn.secondary::before {
            content: none;
        }

        body.page .btn.secondary:hover,
        body.page .btn.secondary:hover *,
        body.page .btn.secondary:focus-visible,
        body.page .btn.secondary:focus-visible *,
        body.page .btn.secondary:active,
        body.page .btn.secondary:active *,
        body.page a.btn.secondary:hover,
        body.page a.btn.secondary:hover *,
        body.page a.btn.secondary:focus-visible,
        body.page a.btn.secondary:focus-visible *,
        body.page a.btn.secondary:active,
        body.page a.btn.secondary:active *,
        body.page button.btn.secondary:hover,
        body.page button.btn.secondary:hover *,
        body.page button.btn.secondary:focus-visible,
        body.page button.btn.secondary:focus-visible *,
        body.page button.btn.secondary:active,
        body.page button.btn.secondary:active * {
            --btn-fg: #ffffff;
            border-color: #ffffff;
        }

        body.page .btn.danger {
            --btn-fg: #ffffff;
            --btn-base-bg: #8b1d12;
            --btn-hover-bg: #390703;
        }

        body.page .btn.danger::before {
            content: none;
        }

        body.page .btn.danger:hover,
        body.page .btn.danger:focus-visible,
        body.page .btn.danger:active,
        body.page a.btn.danger:hover,
        body.page a.btn.danger:focus-visible,
        body.page a.btn.danger:active,
        body.page button.btn.danger:hover,
        body.page button.btn.danger:focus-visible,
        body.page button.btn.danger:active {
            --btn-fg: #ffffff;
        }

        body.page .input,
        body.page input[type="text"]:not(.input),
        body.page input[type="email"]:not(.input),
        body.page input[type="password"]:not(.input),
        body.page input[type="number"]:not(.input),
        body.page input[type="search"]:not(.input),
        body.page select:not(.input),
        body.page textarea:not(.input) {
            min-height: 46px;
            border-radius: 16px;
            border: 1px solid rgba(0, 42, 5, .14);
            background: #ffffff;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
        }

        body.page .panel,
        body.page .card,
        body.page .dash-card,
        body.page .registry-top-card,
        body.page .registry-results-card,
        body.page .table-shell,
        body.page .re-modal-dialog,
        body.page .re-status-dialog,
        body.page .re-progress-dialog,
        body.page .dd-menu,
        body.page .chat-picker,
        body.page .meta-card {
            border-radius: 24px;
            border: 1px solid rgba(0, 42, 5, .10);
            background: #ffffff;
            box-shadow: 0 18px 40px rgba(0, 42, 5, .08);
        }

        body.page .card-header,
        body.page .module-header,
        body.page .dash-card .dash-card-head,
        body.page .dash-card .dash-card-h,
        body.page .toolbar,
        body.page .table-toolbar {
            background: linear-gradient(180deg, rgba(0, 42, 5, .05), rgba(255, 255, 255, 0));
            border-bottom: 1px solid rgba(0, 42, 5, .08);
        }

        body.page .global-hero-cover {
            height: 240px;
            border-radius: 30px;
            box-shadow: 0 26px 48px rgba(0, 0, 0, .14);
        }

        body.page .global-hero-cover::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 42, 5, .14) 100%);
        }

        body.page .fb-profilebar,
        body.page .fb-tabs,
        body.page .admin-role-tabs {
            border-radius: 26px;
            border: 1px solid rgba(0, 42, 5, .10);
            background: #ffffff;
            box-shadow: 0 20px 44px rgba(0, 42, 5, .10);
        }

        body.page .fb-tabs,
        body.page .admin-role-tabs {
            padding: 6px;
        }

        body.page .fb-name {
            color: #151515;
            font-weight: 800;
            letter-spacing: -.03em;
        }

        body.page .fb-sub {
            color: #4f5f52;
        }

        body.page .fb-tab,
        body.page .admin-role-tab {
            border-radius: 999px;
        }

        body.page .fb-tab.active,
        body.page .module-tab-link.active,
        body.page .admin-role-tab.active {
            background: #002a05;
            color: #ffffff;
            box-shadow: 0 12px 22px rgba(0, 42, 5, .18);
        }

        body.page .auth-primary-tabs {
            position: fixed;
            top: var(--topbar-h, 72px);
            left: 0;
            right: 0;
            z-index: 6900;
            width: 100%;
            margin-top: 0;
            transform: none;
        }

        body.page .auth-page-tabs {
            position: fixed;
            top: calc(var(--topbar-h, 72px) + var(--module-primary-tabs-h, 0px));
            left: 0;
            right: 0;
            z-index: 6890;
            width: 100%;
            margin-top: 0;
            transform: none;
        }

        body.page .auth-primary-tabs--hidden {
            display: none;
        }

        body.page .auth-page-tabs__container {
            padding-top: 0;
        }

        body.page .auth-layout-stack {
            margin-top: calc(var(--module-tabs-h, 0px) + 24px);
        }

        body.page.dashboard-page .auth-layout-stack {
            margin-top: calc(var(--module-tabs-h, 0px) + 8px);
        }

        body.page .auth-primary-tabs .fb-tabsbar {
            width: 100%;
            margin-top: 0;
            border-radius: 0;
            border-left: 0;
            border-right: 0;
        }

        body.page.page-has-tabs .auth-page-tabs {
            top: calc(var(--topbar-h, 72px) + var(--module-primary-tabs-h, 0px) - 1px);
        }

        body.page.page-has-tabs .auth-primary-tabs .fb-tabsbar {
            background: #ffffff;
            border-bottom: 0;
            box-shadow: none;
        }

        body.page.page-has-tabs .auth-primary-tabs .fb-tabs {
            margin-top: 0;
            margin-bottom: 0;
            border-bottom: 0;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            box-shadow: none;
        }

        body.page .page-tabs-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            width: 100%;
            padding: 6px;
            border: 1px solid #dbe6de;
            border-radius: 18px;
            background: #f8fbf9;
            box-shadow: 0 10px 22px rgba(15, 45, 31, 0.04);
        }

        body.page.page-has-tabs .page-tabs-bar {
            padding-top: 10px;
            padding-bottom: 8px;
            border-top: 0;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            box-shadow: 0 8px 16px rgba(0, 42, 5, 0.07);
        }

        body.page .page-tab-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 32px;
            padding: 7px 14px;
            border: 1px solid #d4e0d8;
            border-radius: 999px;
            background: #fff;
            color: #153a28;
            font-size: 13px;
            line-height: 1.1;
            font-weight: 600;
            white-space: nowrap;
            text-decoration: none;
            box-shadow: 0 5px 14px rgba(15, 45, 31, 0.05);
        }

        body.page .page-tab-link.is-active {
            border-color: #0f5d3f;
            background: #0f5d3f;
            color: #fff;
        }

        body.page {
            --page-modal-tabs-offset: calc(var(--topbar-h, 72px) + var(--module-tabs-h, 0px) + 12px);
        }

        body.page.page-has-tabs .ui-modal-backdrop,
        body.page.page-has-tabs .re-modal,
        body.page.page-has-tabs .re-progress-modal,
        body.page.page-has-tabs .re-status-modal,
        body.page.page-has-tabs .legal-info-modal,
        body.page.page-has-tabs .profile-photo-modal,
        body.page.page-has-tabs .pr-fields-modal-backdrop,
        body.page.page-has-tabs .pr-record-fields-backdrop,
        body.page.page-has-tabs .rc-front-modal-backdrop,
        body.page.page-has-tabs .attendance-modal,
        body.page.page-has-tabs .class-scheduler-modal {
            inset: auto 0 0 0;
            top: var(--page-modal-tabs-offset);
            align-items: flex-start;
            padding-top: clamp(18px, 3vw, 34px);
        }

        body.page.page-has-tabs .ui-modal,
        body.page.page-has-tabs .re-modal-dialog,
        body.page.page-has-tabs .re-progress-dialog,
        body.page.page-has-tabs .re-status-dialog,
        body.page.page-has-tabs .legal-info-dialog,
        body.page.page-has-tabs .profile-photo-dialog,
        body.page.page-has-tabs .pr-fields-modal,
        body.page.page-has-tabs .pr-record-fields-modal,
        body.page.page-has-tabs .rc-front-modal,
        body.page.page-has-tabs .attendance-modal-dialog,
        body.page.page-has-tabs .class-scheduler-modal__dialog {
            max-height: calc(100dvh - var(--page-modal-tabs-offset) - 28px);
            margin-top: 0;
            margin-bottom: auto;
        }

        html[data-theme='dark'] body.page .page-tabs-bar {
            background: #17211c;
            border-color: rgba(181, 214, 192, 0.16);
        }

        html[data-theme='dark'] body.page .page-tab-link {
            background: #1d2a23;
            border-color: rgba(181, 214, 192, 0.16);
            color: #edf5f0;
        }

        html[data-theme='dark'] body.page .page-tab-link.is-active {
            background: #6dbb86;
            border-color: #6dbb86;
            color: #062313;
        }

        body.page .dash-column.center .feed-more-trigger {
            margin-bottom: calc((var(--footer-seal-h-collapsed, 96px) * .6) + var(--footer-gap, 0px));
        }

        body.page .table th,
        body.page .repo-table th,
        body.page .tc-grid th,
        body.page .tc-table th {
            background: #f5efdf;
            color: #002a05;
            border-bottom-color: rgba(0, 42, 5, .10);
            letter-spacing: .08em;
            text-transform: uppercase;
            font-size: .74rem;
        }

        body.page .footerbar {
            position: static !important;
            left: auto;
            right: auto;
            bottom: auto;
            min-height: 0;
            margin-top: clamp(56px, 6vw, 84px);
            padding: 0;
            background: transparent;
            border: 0;
            color: #ffffff;
            text-align: left;
            z-index: 1;
        }

        body.page.login-page .footerbar {
            margin-top: 0 !important;
        }

        .asmc-footer-shell__band {
            height: 12px;
            background: #000000;
        }

        .asmc-footer-shell__band--bottom {
            height: 10px;
            background: #0a3d14;
        }

        .asmc-footer-shell__hero {
            position: relative;
            overflow: hidden;
            padding: 68px 0 0;
            background:
                linear-gradient(180deg, rgba(0, 0, 0, .32), rgba(0, 24, 6, .82)),
                var(--asmc-footer-bg) center center / cover no-repeat;
            background-attachment: fixed;
        }

        .asmc-footer-shell__hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top, rgba(125, 245, 111, .20), transparent 28%);
            pointer-events: none;
        }

        .asmc-footer-shell__inner {
            position: relative;
            z-index: 1;
        }

        .asmc-footer-shell__seal {
            display: grid;
            place-items: center;
            width: 110px;
            height: 110px;
            margin: 0 auto 34px;
            padding: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .18);
            box-shadow: 0 22px 40px rgba(0, 0, 0, .26);
            backdrop-filter: blur(6px);
        }

        .asmc-footer-shell__seal img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .22));
        }

        .asmc-footer-shell__grid {
            display: grid;
            grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, .9fr)) minmax(190px, 1.1fr);
            gap: 30px;
            padding-bottom: 54px;
        }

        .asmc-footer-shell__column {
            min-width: 0;
        }

        .asmc-footer-shell__title {
            margin: 0 0 18px;
            color: #ffffff;
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: -.02em;
        }

        .asmc-footer-shell__text,
        .asmc-footer-shell__column a,
        .asmc-footer-shell__bottom,
        .asmc-footer-shell__policy-links a {
            color: rgba(255, 255, 255, .92);
        }

        .asmc-footer-shell__text {
            line-height: 1.72;
        }

        .asmc-footer-shell__text strong {
            display: block;
            margin-bottom: 8px;
            color: #ffffff;
            font-size: 1rem;
        }

        .asmc-footer-shell__text a {
            color: inherit;
            text-decoration: none;
        }

        .asmc-footer-shell__text img {
            width: min(100%, 150px);
            margin-top: 16px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, .18);
            box-shadow: 0 16px 30px rgba(0, 0, 0, .20);
        }

        .asmc-footer-shell__list {
            display: grid;
            gap: 10px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .asmc-footer-shell__list a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            line-height: 1.45;
            opacity: .96;
            transition: color .2s ease, transform .2s ease, opacity .2s ease;
        }

        .asmc-footer-shell__list a::before {
            content: "";
            width: 6px;
            height: 6px;
            flex: 0 0 6px;
            border-radius: 999px;
            background: #7df56f;
            box-shadow: 0 0 0 4px rgba(125, 245, 111, .12);
        }

        .asmc-footer-shell__list a:hover,
        .asmc-footer-shell__policy-links a:hover,
        .asmc-footer-shell__powered:hover {
            color: #7df56f;
            transform: translateX(3px);
        }

        .asmc-footer-shell__bottom {
            border-top: 1px solid rgba(255, 255, 255, .12);
            padding: 26px 0 38px;
            text-align: center;
        }

        .asmc-footer-shell__copyright {
            margin: 0;
            font-size: .98rem;
            line-height: 1.6;
        }

        .asmc-footer-shell__policy-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin-top: 10px;
            font-size: .86rem;
        }

        .asmc-footer-shell__policy-links a,
        .asmc-footer-shell__powered {
            text-decoration: none;
            transition: color .2s ease, transform .2s ease;
        }

        .asmc-footer-shell__powered {
            display: inline-flex;
            margin-top: 12px;
            font-size: .76rem;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .82);
        }

        body.page .repository-shell-footer {
            --footer-seal-h-expanded: 134px;
            --footer-seal-h-collapsed: 96px;
            --footer-seal-h: var(--footer-seal-h-expanded);
            --footer-seal-offset-expanded: -58%;
            --footer-seal-offset-collapsed: -54%;
            --footer-seal-offset: var(--footer-seal-offset-expanded);
            --footer-dock-h: 0px;
            position: relative;
            z-index: 3;
            isolation: isolate;
            margin-top: auto;
            width: 100%;
            transition: opacity .24s ease, transform .32s ease;
        }

        body.page.login-page .repository-shell-footer {
            margin-top: 0 !important;
        }

        .repository-shell-footer-band {
            --footer-top-band-h: 14px;
            position: relative;
            z-index: 1;
            height: var(--footer-top-band-h);
            margin: 0 0 calc(var(--footer-top-band-h) * -0.5);
        }

        .repository-shell-footer-band--top {
            background: #000000;
        }

        .repository-shell-footer-band--bottom {
            --footer-tail-white-h: 22px;
            --footer-tail-green-h: 22px;
            height: calc(var(--footer-tail-white-h) + var(--footer-tail-green-h));
            margin: 0;
            background:
                linear-gradient(
                    to bottom,
                    #ffffff 0 var(--footer-tail-white-h),
                    #0a4a16 var(--footer-tail-white-h) 100%
                );
            transition: height .24s ease, opacity .24s ease;
        }

        #hero2.repository-shell-footer-hero {
            position: relative;
            overflow: visible;
            background:
                linear-gradient(0deg, rgba(5, 44, 15, .78), rgba(5, 44, 15, .78)),
                var(--asmc-footer-bg) center center / cover no-repeat;
            background-attachment: fixed;
            transition: min-height .38s ease, background .32s ease;
        }

        #hero2.repository-shell-footer-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .03) 42%, rgba(0, 0, 0, .14)),
                radial-gradient(circle at top, rgba(125, 245, 111, .14), transparent 30%);
            pointer-events: none;
            z-index: 0;
            transition: opacity .32s ease;
        }

        .repository-shell-footer .repository-shell-footer-reveal {
            display: grid;
            grid-template-rows: 1fr;
            opacity: 1;
            visibility: visible;
            transition: grid-template-rows .48s ease, opacity .24s ease, visibility .24s ease;
        }

        .repository-shell-footer .repository-shell-footer-reveal > .inner {
            overflow: hidden;
        }

        .repository-shell-footer-hero .inner {
            position: relative;
            min-height: 0;
            z-index: 1;
        }

        .repository-shell-footer-hero .social-one__icon {
            position: absolute;
            top: 0;
            left: 50%;
            z-index: 5;
            width: max-content;
            padding-top: 0;
            transform: translate(-50%, var(--footer-seal-offset));
            transition: transform .32s ease;
        }

        .repository-shell-footer-hero .repository-shell-footer-seal-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            border: 0;
            background: transparent;
            cursor: pointer;
            position: relative;
            z-index: 1;
        }

        .repository-shell-footer-hero .repository-shell-footer-seal-link::before {
            content: "";
            position: absolute;
            inset: 18px 10px;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(125, 245, 111, .46) 0%, rgba(125, 245, 111, .18) 44%, rgba(125, 245, 111, 0) 76%);
            filter: blur(12px);
            opacity: 0;
            transform: scale(.84);
            transition: opacity .28s ease, transform .28s ease, filter .28s ease;
            z-index: 0;
            pointer-events: none;
        }

        .repository-shell-footer-hero .repository-shell-footer-seal-link:hover::before,
        .repository-shell-footer-hero .repository-shell-footer-seal-link:focus-visible::before {
            opacity: 1;
            transform: scale(1.08);
            filter: blur(16px);
        }

        .repository-shell-footer-hero .repository-shell-footer-seal-link:focus-visible {
            outline: 2px solid rgba(255, 255, 255, .76);
            outline-offset: 6px;
            border-radius: 999px;
        }

        .repository-shell-footer-hero .repository-shell-footer-seal-link img {
            display: block;
            width: auto;
            height: var(--footer-seal-h);
            max-width: none;
            filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .26));
            position: relative;
            z-index: 1;
            transition: height .32s ease, filter .32s ease;
        }

        body.page .repository-shell-footer[data-footer-expanded='false'] {
            --footer-seal-h: var(--footer-seal-h-collapsed);
            --footer-seal-offset: var(--footer-seal-offset-collapsed);
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 12;
            margin-top: 0;
            opacity: 1;
            transform: translateY(0);
            overflow: visible;
            pointer-events: auto;
        }

        body.page .repository-shell-footer[data-footer-expanded='false'] .repository-shell-footer-band--top {
            height: var(--footer-top-band-h);
            margin: 0;
            overflow: visible;
        }

        body.page .repository-shell-footer[data-footer-expanded='false'] #hero2.repository-shell-footer-hero {
            min-height: 0;
            height: 0;
            background: transparent;
        }

        body.page .repository-shell-footer[data-footer-expanded='false'] #hero2.repository-shell-footer-hero::before {
            opacity: 0;
        }

        body.page .repository-shell-footer[data-footer-expanded='false'] .repository-shell-footer-reveal {
            grid-template-rows: 0fr;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        body.page .repository-shell-footer[data-footer-expanded='false'] + .repository-shell-footer-band--bottom {
            height: 0;
            opacity: 0;
            overflow: hidden;
        }

        body.page .repository-shell-footer[data-footer-expanded='true'] + .repository-shell-footer-band--bottom {
            opacity: 1;
        }

        body.page .repository-shell-footer .site-footer__middle {
            padding-top: 96px;
            padding-bottom: 84px;
        }

        body.page .repository-shell-footer .site-footer__middle .row {
            align-items: start;
        }

        body.page .repository-shell-footer .footer-widget__column,
        body.page .repository-shell-footer .site-footer__bottom {
            text-align: center;
        }

        body.page .repository-shell-footer .footer-widget__Contact-text,
        body.page .repository-shell-footer .footer-widget__link-list li a,
        body.page .repository-shell-footer .site-footer__bottom-text,
        body.page .repository-shell-footer .site-footer__bottom-text a,
        body.page .repository-shell-footer .repository-shell-footer-links a,
        body.page .repository-shell-footer .repository-shell-footer-links span,
        body.page .repository-shell-footer .repository-shell-powered-by {
            color: #ffffff;
        }

        body.page .repository-shell-footer .footer-widget__Contact-text img {
            display: block;
            margin: 18px auto 0;
            width: auto;
            max-width: min(100%, 170px);
            height: auto;
        }

        body.page .repository-shell-footer .footer-widget__link-list {
            margin: 0;
            padding: 0;
        }

        body.page .repository-shell-footer .footer-widget__link-list li + li {
            margin-top: 10px;
        }

        body.page .repository-shell-footer .footer-widget__title {
            color: #ffffff;
            font-size: clamp(1.15rem, 1rem + .22vw, 1.45rem);
            font-weight: 700;
        }

        body.page #siteFooter .site-footer__bottom {
            padding: 12px 0 40px;
        }

        body.page #siteFooter .site-footer__bottom .container {
            display: grid;
            justify-items: center;
        }

        body.page #siteFooter .site-footer__bottom-inner {
            display: grid;
            justify-items: center;
            width: 100%;
        }

        body.page #siteFooter .repository-shell-footer-meta {
            display: grid;
            justify-items: center;
            align-content: start;
            gap: 6px;
            width: max-content;
            max-width: min(100%, 760px);
            margin-inline: auto;
            text-align: center;
        }

        body.page #siteFooter .site-footer__bottom-text {
            margin: 0;
            max-width: 100%;
            line-height: 1.15;
            text-align: center;
        }

        body.page #siteFooter .repository-shell-footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 0 12px;
            width: max-content;
            max-width: 100%;
            line-height: 1.15;
            text-align: center;
        }

        body.page .repository-shell-footer .repository-shell-footer-links span {
            color: #ffffff;
        }

        body.page .repository-shell-footer .repository-shell-powered-by {
            display: block;
            margin-top: 0;
            font-size: .78rem;
            line-height: 1.15;
            letter-spacing: 0;
            text-transform: none;
            text-align: center;
        }

        body.page .dash-sticky-column {
            padding-bottom: var(--footer-gap);
        }

        @media (min-width: 1321px) {
            body.page .dash-column.left .dash-card,
            body.page .dash-column.right .dash-card {
                height: calc(100dvh - var(--topbar-h, 72px) - var(--module-tabs-h, 0px) - var(--footer-h, 0px) - var(--footer-gap, 0px) - 16px);
                max-height: calc(100dvh - var(--topbar-h, 72px) - var(--module-tabs-h, 0px) - var(--footer-h, 0px) - var(--footer-gap, 0px) - 16px);
            }
        }

        @media (max-width: 1080px) {
            body.page .topbar .container {
                padding-inline: 12px;
            }

            body.page .topbar-surface {
                min-height: 74px;
            }

            body.page .topbar-clock {
                display: none !important;
            }

            .asmc-footer-shell__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .asmc-footer-shell__hero {
                background-attachment: scroll;
            }

            .repository-shell-footer-band {
                --footer-top-band-h: 13px;
            }

            body.page .repository-shell-footer {
                --footer-seal-h-expanded: 118px;
                --footer-seal-h-collapsed: 88px;
                --footer-seal-offset-collapsed: -60%;
                --footer-dock-h: 0px;
            }

            #hero2.repository-shell-footer-hero {
                background-attachment: scroll;
            }
        }

        @media (max-width: 720px) {
            body.page #content {
                margin-bottom: 0;
                padding-bottom: 0 !important;
            }

            body.page .footerbar {
                margin-top: 36px;
            }

            body.page .auth-primary-tabs {
                width: 100%;
            }

            body.page .auth-page-tabs {
                width: 100%;
            }

            body.page .auth-layout-stack {
                margin-top: calc(var(--module-tabs-h, 0px) + 20px);
            }

            body.page.dashboard-page .auth-layout-stack {
                margin-top: calc(var(--module-tabs-h, 0px) + 8px);
            }

            body.page .page-tabs-bar {
                gap: 6px;
            }

            body.page .page-tab-link {
                padding: 7px 11px;
            }

            body.page .global-hero-cover {
                height: 186px;
                border-radius: 24px;
            }

            .asmc-footer-shell__hero {
                padding-top: 42px;
                background-attachment: scroll;
            }

            .asmc-footer-shell__seal {
                width: 88px;
                height: 88px;
                margin-bottom: 24px;
                padding: 7px;
            }

            .asmc-footer-shell__grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding-bottom: 34px;
            }

            .asmc-footer-shell__title {
                margin-bottom: 12px;
                font-size: 1.05rem;
            }

            .repository-shell-footer-band {
                --footer-top-band-h: 11px;
            }

            .repository-shell-footer-band--bottom {
                --footer-tail-white-h: 20px;
                --footer-tail-green-h: 20px;
            }

            body.page .repository-shell-footer {
                --footer-seal-h-expanded: 96px;
                --footer-seal-h-collapsed: 74px;
                --footer-seal-offset-expanded: -56%;
                --footer-seal-offset-collapsed: -58%;
                --footer-dock-h: 0px;
            }

            body.page .repository-shell-footer .site-footer__middle {
                padding-top: 70px;
                padding-bottom: 48px;
            }

            body.page .repository-shell-footer .site-footer__bottom {
                padding-bottom: 28px;
            }
        }

        @media print {
            .print-preview-toolbar {
                display: none !important;
            }

            .topbar,
            .auth-primary-tabs,
            .footerbar,
            .asmc-footer-shell__band,
            .repository-shell-header,
            .site-footer,
            .repository-shell-footer-band,
            .stricky-header,
            .mobile-nav__wrapper,
            .scroll-to-top,
            .site-cursor-layer {
                display: none !important;
            }

            body.page #content {
                padding-bottom: 0 !important;
            }
        }
