/* ==========================================================================
   AarhusAI Overview — Modern dashboard
   Clean neutrals, soft shadows, generous rounding, single indigo accent.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap");

/* ---------- Tokens ---------- */
:root {
    /* Surfaces */
    --bg: #fafafa;
    --bg-grad-a: #fafafa;
    --bg-grad-b: #f4f4f5;
    --surface: #ffffff;
    --surface-soft: #fafafa;
    --surface-mute: #f4f4f5;

    /* Ink */
    --ink: #09090b;
    --ink-soft: #27272a;
    --ink-mid: #52525b;
    --muted: #71717a;
    --muted-soft: #a1a1aa;

    /* Lines */
    --border: #e4e4e7;
    --border-soft: #f4f4f5;
    --border-strong: #d4d4d8;

    /* Brand & status */
    --primary: #4f46e5;
    --primary-deep: #4338ca;
    --primary-soft: #eef2ff;
    --primary-ring: rgba(79, 70, 229, 0.18);

    --ok: #16a34a;
    --ok-soft: #f0fdf4;
    --ok-ring: rgba(22, 163, 74, 0.2);
    --warn: #d97706;
    --warn-soft: #fffbeb;
    --bad: #dc2626;
    --bad-soft: #fef2f2;

    /* Type */
    --sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
    --mono: "Geist Mono", ui-monospace, "SFMono-Regular", monospace;

    /* Shape & motion */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;

    --shadow-sm: 0 1px 2px rgba(9, 9, 11, 0.05);
    --shadow: 0 1px 2px rgba(9, 9, 11, 0.05), 0 1px 3px rgba(9, 9, 11, 0.08);
    --shadow-md:
        0 4px 6px -1px rgba(9, 9, 11, 0.07), 0 2px 4px -2px rgba(9, 9, 11, 0.06);
    --shadow-lg:
        0 10px 24px -8px rgba(9, 9, 11, 0.18),
        0 4px 10px -4px rgba(9, 9, 11, 0.06);
    --shadow-ring: 0 0 0 4px var(--primary-ring);

    --gutter: clamp(1rem, 3vw, 2.5rem);
    --shell-max: 1240px;
    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html,
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
button,
input,
table,
td,
th,
tr,
thead,
tbody,
form,
fieldset {
    margin: 0;
    padding: 0;
}
button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}
a {
    color: inherit;
    text-decoration: none;
}
table {
    border-collapse: separate;
    border-spacing: 0;
}
img,
svg {
    display: block;
    max-width: 100%;
}
input {
    font: inherit;
    color: inherit;
}

/* ---------- Page ---------- */
html,
body {
    height: 100%;
}
body {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink);
    background: var(--bg);
    background-image:
        radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.06) 0, transparent 45%),
        radial-gradient(
            at 100% 0%,
            rgba(99, 102, 241, 0.04) 0,
            transparent 50%
        ),
        linear-gradient(180deg, var(--bg-grad-a), var(--bg-grad-b));
    background-attachment: fixed;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11";
}

::selection {
    background: var(--primary-ring);
    color: var(--ink);
}

/* ---------- Shell ---------- */
.shell {
    width: 100%;
    max-width: var(--shell-max);
    margin: 0 auto;
    padding-inline: var(--gutter);
}

/* ---------- Masthead ---------- */
.masthead {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}
.masthead__top {
    display: none;
}
.masthead__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.85rem;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.wordmark::before {
    content: "";
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, #818cf8 100%);
    box-shadow:
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}
.wordmark__amp {
    display: none;
}
.wordmark__tag {
    display: inline-block;
    margin-left: 0.5rem;
    padding-left: 0.75rem;
    border-left: 1px solid var(--border);
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0;
    text-transform: none;
}

.session {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.session__user {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    color: var(--ink-soft);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.session__user::before {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c4b5fd, #818cf8);
    flex-shrink: 0;
}
.session__user-label {
    display: none;
}

/* ---------- Subhead ---------- */
.subhead {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding-block: 0.85rem;
    border-top: 1px solid var(--border);
}
.subhead__left,
.subhead__right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
    --btn-bg: var(--surface);
    --btn-fg: var(--ink-soft);
    --btn-border: var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--btn-fg);
    background: var(--btn-bg);
    border: 1px solid var(--btn-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition:
        background 140ms var(--ease),
        border-color 140ms var(--ease),
        color 140ms var(--ease),
        box-shadow 140ms var(--ease),
        transform 140ms var(--ease);
    white-space: nowrap;
}
.btn:hover {
    background: var(--surface-mute);
    border-color: var(--border-strong);
    color: var(--ink);
}
.btn:active {
    transform: translateY(1px);
}
.btn:focus-visible {
    outline: 0;
    box-shadow: var(--shadow-sm), var(--shadow-ring);
}

.btn--primary {
    --btn-bg: var(--ink);
    --btn-fg: #ffffff;
    --btn-border: var(--ink);
}
.btn--primary:hover {
    background: #18181b;
    color: #fff;
    border-color: #18181b;
}

.btn--accent {
    --btn-bg: var(--primary);
    --btn-fg: #ffffff;
    --btn-border: var(--primary-deep);
}
.btn--accent:hover {
    background: var(--primary-deep);
    color: #fff;
    border-color: var(--primary-deep);
}
.btn--accent:focus-visible {
    box-shadow:
        var(--shadow-sm),
        0 0 0 4px var(--primary-ring);
}

.btn--ghost {
    --btn-bg: transparent;
    --btn-border: transparent;
    box-shadow: none;
}
.btn--ghost:hover {
    background: var(--surface-mute);
    border-color: transparent;
    box-shadow: none;
}

.btn--block {
    width: 100%;
    padding-block: 0.7rem;
    font-size: 0.88rem;
}

.btn .icon {
    width: 14px;
    height: 14px;
}

.filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-block: 1.5rem 1.25rem;
}

.search {
    display: flex;
    align-items: center;
}
.search__field {
    display: flex;
}
.search input[type="search"] {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0.85rem;
    min-width: 16rem;
    box-shadow: var(--shadow-sm);
    transition:
        border-color 140ms var(--ease),
        box-shadow 140ms var(--ease);
}
.search input[type="search"]::placeholder {
    color: var(--muted-soft);
}
.search input[type="search"]:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px var(--surface-mute);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Tabs / segmented control ---------- */
.tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.tab {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    border-radius: 8px;
    transition:
        background 140ms var(--ease),
        color 140ms var(--ease);
    line-height: 1;
}
.tab:hover {
    background: var(--surface-mute);
    color: var(--ink);
}
.tab[aria-current="true"] {
    background: var(--ink);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}
.tab__num {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--muted-soft);
    letter-spacing: 0;
    padding: 0.05rem 0.35rem;
    background: var(--surface-mute);
    border-radius: 5px;
}
.tab[aria-current="true"] .tab__num {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.12);
}

/* ---------- Health ---------- */
.health-cluster {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.health {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.32rem 0.65rem 0.32rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-soft);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    line-height: 1;
}
.health__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--muted-soft);
    position: relative;
}
.health--ok {
    background: var(--ok-soft);
    border-color: #bbf7d0;
    color: #14532d;
}
.health--ok .health__dot {
    background: var(--ok);
}
.health--ok .health__dot::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--ok);
    opacity: 0.35;
    animation: ping 2s var(--ease) infinite;
}
.health--bad {
    background: var(--bad-soft);
    border-color: #fecaca;
    color: #7f1d1d;
}
.health--bad .health__dot {
    background: var(--bad);
}
.health--unknown {
    color: var(--muted);
}
.health--unknown .health__dot {
    background: var(--muted-soft);
}

@keyframes ping {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    80%,
    100% {
        transform: scale(2.1);
        opacity: 0;
    }
}

/* ---------- Flash ---------- */
.flash-stack {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-block: 1.25rem;
}
.flash {
    --flash-fg: var(--ink-soft);
    --flash-bg: var(--surface);
    --flash-border: var(--border);
    --flash-icon: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    background: var(--flash-bg);
    color: var(--flash-fg);
    border: 1px solid var(--flash-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    font-size: 0.88rem;
    animation: slideIn 280ms var(--ease) both;
}
.flash--success {
    --flash-bg: var(--ok-soft);
    --flash-border: #bbf7d0;
    --flash-fg: #14532d;
    --flash-icon: var(--ok);
}
.flash--warning {
    --flash-bg: var(--warn-soft);
    --flash-border: #fde68a;
    --flash-fg: #78350f;
    --flash-icon: var(--warn);
}
.flash--error {
    --flash-bg: var(--bad-soft);
    --flash-border: #fecaca;
    --flash-fg: #7f1d1d;
    --flash-icon: var(--bad);
}

.flash__label {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--flash-icon);
    margin-right: 0.25rem;
    padding: 0.1rem 0.45rem;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 5px;
}
.flash__msg {
    flex: 1;
}
.flash__close {
    margin-left: auto;
    flex: 0 0 auto;
    color: var(--flash-icon);
    opacity: 0.6;
    padding: 0.15rem;
    border-radius: 6px;
    transition:
        opacity 120ms var(--ease),
        background 120ms var(--ease);
}
.flash__close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.04);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Main ---------- */
.main {
    flex: 1;
    padding-block: 0 4rem;
}

/* ---------- Section heading ---------- */
.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 0.75rem 1.5rem;
    padding-block: 1.75rem 0.5rem;
}
.section-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
}
.section-head__eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.section-head__title {
    font-family: var(--sans);
    font-style: normal;
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.section-head__title-mark,
.section-head__title em {
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

.section-head__count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    font-size: 0.8rem;
    color: var(--muted);
    text-align: left;
}
.section-head__count strong {
    font-family: var(--sans);
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    margin: 0;
}

/* ---------- Card / Index ---------- */
.index {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.index__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    font-size: 0.78rem;
    color: var(--muted);
}
.index__bar span:first-child {
    font-weight: 500;
    color: var(--ink-soft);
}
.index__scroll {
    overflow-x: auto;
}

/* ---------- Table ---------- */
.ledger {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.ledger thead th {
    text-align: left;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--muted);
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface-soft);
    white-space: nowrap;
}
.ledger thead th[data-sortable-target="header"] {
    cursor: pointer;
    user-select: none;
    transition: color 140ms var(--ease);
}
.ledger thead th[data-sortable-target="header"]:hover {
    color: var(--ink);
}
.ledger thead th .sort-arrow {
    color: var(--muted-soft);
    margin-left: 0.3em;
    font-size: 0.7em;
    transition: color 140ms var(--ease);
}
.ledger thead th[data-sortable-target="header"]:hover .sort-arrow {
    color: var(--primary);
}

.ledger tbody tr td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-soft);
    vertical-align: middle;
    background: var(--surface);
    transition: background 120ms var(--ease);
}
.ledger tbody:hover tr td {
    background: var(--surface-soft);
}
.ledger tbody:last-of-type tr:last-child td {
    border-bottom: 0;
}

.ledger__name {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--ink);
}
.ledger__name-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--ink);
    transition: color 140ms var(--ease);
}
.ledger__name-toggle::before {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--muted);
    border-bottom: 1.5px solid var(--muted);
    transform: rotate(45deg) translateY(-2px);
    transition:
        transform 200ms var(--ease),
        border-color 140ms var(--ease);
    margin-right: 0.1rem;
}
.ledger__name-toggle:hover {
    color: var(--primary);
}
.ledger__name-toggle:hover::before {
    border-color: var(--primary);
}
.ledger__name-toggle[aria-expanded="true"]::before {
    transform: rotate(-135deg) translateY(0);
    border-color: var(--primary);
}

.ledger__base {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--ink-mid);
}
.ledger__site {
    display: inline-flex;
    align-items: center;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 0.2rem 0.55rem;
    background: var(--surface-mute);
    border: 1px solid var(--border);
    border-radius: 999px;
}
.ledger__date {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--muted);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.ledger__access {
    font-size: 0.82rem;
    color: var(--ink-mid);
}
.ledger__access-count {
    display: inline-flex;
    align-items: center;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 0.2rem 0.55rem;
    background: var(--surface-mute);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-variant-numeric: tabular-nums;
}
.ledger__access-empty {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--muted-soft);
}

.ledger__detail td {
    background: var(--surface-soft);
    border-top: 1px dashed var(--border);
    padding: 0.85rem 1rem 1.1rem;
    color: var(--ink-mid);
    font-size: 0.88rem;
    line-height: 1.6;
}
.ledger__detail-eyebrow {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 0.35rem;
    padding: 0.1rem 0.45rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 5px;
}
.ledger__detail-body {
    color: var(--ink-soft);
    max-width: 70ch;
}

.ledger__empty {
    padding: 3rem 1rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}
.ledger__empty code {
    font-family: var(--mono);
    font-size: 0.8rem;
    background: var(--surface-mute);
    padding: 0.15rem 0.45rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--ink);
}

/* ---------- Login ---------- */
.gate {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    margin-block: 2.5rem;
}
.gate__art {
    display: none;
}
.gate__form {
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.gate__heading {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 0.4rem;
}
.gate__heading::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.gate__title {
    font-family: var(--sans);
    font-style: normal;
    font-weight: 600;
    font-size: 1.55rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.85rem;
}
.field__label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: 0.35rem;
    letter-spacing: 0;
    text-transform: none;
}
.field__input {
    appearance: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.6rem 0.75rem;
    font-family: var(--sans);
    font-size: 0.92rem;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    transition:
        border-color 140ms var(--ease),
        box-shadow 140ms var(--ease);
}
.field__input::placeholder {
    color: var(--muted-soft);
}
.field__input:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: var(--shadow-sm), var(--shadow-ring);
}

.gate__note {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 720px) {
    .masthead__main {
        flex-wrap: wrap;
    }
    .wordmark__tag {
        display: none;
    }
    .section-head {
        grid-template-columns: 1fr;
    }
}

/* ---------- Page-load reveal ---------- */
.reveal {
    animation: reveal 600ms var(--ease) both;
}
.reveal-1 {
    animation-delay: 40ms;
}
.reveal-2 {
    animation-delay: 100ms;
}
.reveal-3 {
    animation-delay: 180ms;
}
.reveal-4 {
    animation-delay: 260ms;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Misc icons ---------- */
.icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.icon--sm {
    width: 12px;
    height: 12px;
}

/* ---------- Print ---------- */
@media print {
    .btn,
    .tabs,
    .session {
        display: none;
    }
    body {
        background: #fff;
    }
}
