:root {
  --bg: #f4f6f8;
  --panel: #ffffff;
  --ink: #1f2933;
  --muted: #5f6b75;
  --line: #d8dee3;
  --line-strong: #b9c2ca;
  --brand: #005aa0;
  --brand-dark: #003b6f;
  --brand-soft: #e8f1f8;
  --good: #1f7a3f;
  --good-soft: #e7f3eb;
  --warn: #8a5a00;
  --warn-soft: #fff4d8;
  --bad: #a3312d;
  --bad-soft: #fbe7e5;
  --focus: #ffcc33;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: 1.42; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.header { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 8px 20px; background: #fff; border-bottom: 1px solid var(--line-strong); position: sticky; top: 0; z-index: 20; }
.logo, .brand-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); }
.brand-logo img { height: 30px; width: auto; display: block; }
.logo-mark { width: 26px; height: 26px; display: grid; place-items: center; background: var(--brand); color: #fff; border-radius: 3px; font-weight: 700; }
.nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nav a, .nav button { min-height: 32px; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); padding: 6px 10px; border-radius: 3px; font: inherit; cursor: pointer; }
.nav a.active, .nav button.active { background: var(--brand); border-color: var(--brand); color: #fff; text-decoration: none; }
.shell { max-width: 1380px; margin: 0 auto; padding: 18px 20px 32px; }
.app-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
h1 { font-size: 22px; line-height: 1.2; margin: 0 0 6px; font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: 17px; line-height: 1.25; margin: 0 0 10px; font-weight: 700; }
h3 { font-size: 14px; line-height: 1.25; margin: 0 0 8px; font-weight: 700; }
p { margin: 0 0 10px; color: var(--muted); }
.lead { font-size: 14px; max-width: 850px; color: var(--muted); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 4px; padding: 14px; box-shadow: none; }
.card.flat { box-shadow: none; }
.grid { display: grid; gap: 12px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 14px; align-items: start; }
.sidebar { display: grid; gap: 10px; position: sticky; top: 70px; }
.kpi { padding: 10px 12px; border: 1px solid var(--line); background: #fff; border-radius: 4px; }
.kpi strong { display: block; font-size: 22px; color: var(--brand-dark); margin-top: 2px; }
.small { font-size: 12px; color: var(--muted); }
.badge { display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--line-strong); border-radius: 3px; padding: 2px 7px; background: #fff; color: var(--muted); font-size: 12px; font-weight: 600; vertical-align: middle; }
.badge.good { background: var(--good-soft); border-color: #b6d7c2; color: var(--good); }
.badge.warn { background: var(--warn-soft); border-color: #efd28b; color: var(--warn); }
.badge.bad { background: var(--bad-soft); border-color: #e7b6b3; color: var(--bad); }
button, .btn { min-height: 34px; border: 1px solid var(--brand); background: var(--brand); color: #fff; border-radius: 3px; padding: 7px 12px; font: inherit; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
button:hover, .btn:hover { background: var(--brand-dark); text-decoration: none; }
button.secondary, .btn.secondary { background: #fff; color: var(--brand); border-color: var(--brand); }
button.secondary:hover, .btn.secondary:hover { background: var(--brand-soft); }
button.danger { background: var(--bad); border-color: var(--bad); }
button:disabled { opacity: .55; cursor: not-allowed; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
label { display: grid; gap: 5px; font-weight: 700; color: var(--ink); }
input, textarea, select { width: 100%; min-height: 34px; border: 1px solid var(--line-strong); border-radius: 3px; background: #fff; padding: 7px 9px; color: var(--ink); font: inherit; }
textarea { min-height: 86px; resize: vertical; }
input:focus, textarea:focus, select:focus, button:focus, a:focus { outline: 3px solid var(--focus); outline-offset: 1px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.form-grid .full { grid-column: 1 / -1; }
.form-row { display: flex; align-items: end; gap: 10px; }
table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); font-size: 12px; }
th, td { padding: 8px 9px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #eef1f4; color: #34404a; font-size: 11px; text-transform: uppercase; letter-spacing: .03em; font-weight: 700; }
tr:last-child td { border-bottom: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 14px 0; }
pre { margin: 0; background: #102033; color: #f3f7fb; padding: 12px; border-radius: 4px; overflow: auto; font-size: 12px; }
.message { border: 1px solid var(--line); border-left-width: 4px; background: #fff; padding: 9px 10px; border-radius: 3px; margin: 10px 0; }
.message.ok { border-color: #b6d7c2; border-left-color: var(--good); background: var(--good-soft); color: #174d2c; }
.message.err { border-color: #e7b6b3; border-left-color: var(--bad); background: var(--bad-soft); color: #681d1a; }
.list-button { width: 100%; text-align: left; background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 4px; padding: 10px; justify-content: flex-start; display: block; font-weight: 400; }
.list-button:hover, .list-button.active { background: var(--brand-soft); border-color: var(--brand); text-decoration: none; }
.proc-list { display: grid; gap: 6px; }
.proc-list-title { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 4px; }
.process-map { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 6px; margin: 12px 0 14px; }
.process-step { min-height: 54px; border: 1px solid var(--line-strong); background: #fff; border-radius: 4px; padding: 7px; color: var(--ink); cursor: pointer; text-align: left; }
.process-step span { display: block; font-size: 11px; color: var(--muted); }
.process-step strong { display: block; font-size: 12px; line-height: 1.2; margin-top: 2px; }
.process-step.complete { background: var(--good-soft); border-color: #90c7a2; }
.process-step.active { border-color: var(--brand); box-shadow: inset 0 0 0 2px var(--brand); }
.process-step.incomplete { background: #fff; }
.step-panel { border-top: 3px solid var(--brand); }
.step-help { background: #f8fafc; border: 1px solid var(--line); padding: 10px; border-radius: 4px; margin-bottom: 10px; }
.validation-list { margin: 8px 0 0; padding-left: 18px; color: var(--bad); }
.validation-list.warn { color: var(--warn); }
.eforms-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 12px; }
.eform-field-ok { color: var(--good); font-weight: 700; }
.eform-field-missing { color: var(--bad); font-weight: 700; }
.progress { height: 8px; background: #e3e7eb; border-radius: 999px; overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--brand); }
.notice-item { display: grid; gap: 8px; padding: 12px; border: 1px solid var(--line); border-radius: 4px; background: #fff; }
.meta { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 20px; background: var(--bg); }
.login-card { width: min(480px, 100%); }
footer { padding: 20px; color: var(--muted); text-align: center; }
@media (max-width: 1100px) { .process-map { grid-template-columns: repeat(5, minmax(0, 1fr)); } .eforms-grid { grid-template-columns: 1fr; } }
@media (max-width: 850px) { .split, .grid.two, .grid.three, .form-grid { grid-template-columns: 1fr; } .header { align-items: flex-start; flex-direction: column; } .sidebar { position: static; } .process-map { grid-template-columns: repeat(2, minmax(0, 1fr)); } .shell { padding: 12px; } }

/* V1.5 dynamic documents */
.dynamic-doc-shell { display: grid; gap: 12px; }
.dynamic-builder { border-top: 3px solid var(--brand-dark); }
.compact-panel { max-height: 420px; overflow: auto; }
.doc-preview-section, .supplier-section { border: 1px solid var(--line); background: #fff; border-radius: 4px; padding: 10px; margin: 10px 0; }
.doc-block.info_box { border-left: 4px solid var(--brand); background: var(--brand-soft); padding: 8px; color: var(--ink); }
.field-head { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }
.dyn-answer-form { border-top: 1px solid var(--line); padding: 10px 0; display: grid; gap: 7px; }
.supplier-doc + .supplier-doc { margin-top: 12px; }
.dynamic-supplier-docs { display: grid; gap: 12px; }

/* V1.5 dynamiska dokument */
.dense-shell { max-width: 1500px; }
.document-workbench { grid-template-columns: 360px minmax(0, 1fr); align-items: start; }
.builder-sidebar { position: sticky; top: 70px; }
.compact-form { gap: 8px; }
.check-row { display: flex; align-items: center; gap: 7px; font-weight: 600; }
.check-row input { width: auto; min-height: auto; }
.section-bar { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.document-canvas, .supplier-response-canvas { display: grid; gap: 10px; }
.doc-section { border: 1px solid var(--line); background: #fff; border-radius: 4px; padding: 12px; }
.doc-section h2, .doc-section h3 { margin-bottom: 6px; }
.doc-block { border-left: 3px solid var(--line-strong); padding: 7px 9px; margin: 6px 0; background: #f8fafc; }
.doc-block.info_box { border-left-color: var(--brand); background: var(--brand-soft); }
.field-row, .answer-field { border: 1px solid var(--line); border-radius: 4px; background: #fff; padding: 9px; margin: 7px 0; }
.answer-field label { display: block; margin-bottom: 6px; }
.field-row { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
@media (max-width: 1000px) { .document-workbench { grid-template-columns: 1fr; } .builder-sidebar { position: static; } .section-bar, .field-row { flex-direction: column; } }


/* Aktera V1.6.1, stram myndighetsnära applayout */
:root {
  --ak-blue: #0b376d;
  --ak-blue-2: #0d4f8b;
  --ak-sky: #d9ecfb;
  --ak-bg: #f5f7fa;
  --ak-panel: #ffffff;
  --ak-line: #d8e0ea;
  --ak-line-2: #e7edf4;
  --ak-text: #12263f;
  --ak-muted: #5d6b7a;
  --ak-green: #0b7a50;
  --ak-yellow: #b7791f;
  --ak-red: #b42318;
  --ak-shadow: 0 10px 26px rgba(15, 35, 55, .08);
}
body {
  background: var(--ak-bg);
  color: var(--ak-text);
  font-size: 13px;
  line-height: 1.42;
}
.header {
  min-height: 56px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--ak-line);
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 35, 55, .04);
}
.brand-logo img { height: 28px; }
.brand-logo span { font-size: 13px; color: var(--ak-blue); }
.nav { gap: 8px; }
.nav a, .nav button {
  border-radius: 3px;
  padding: 7px 10px;
  font-size: 12px;
  border-color: var(--ak-line);
}
.nav a.active, .nav button.primary { background: var(--ak-blue); color: #fff; }
.shell { max-width: 100%; padding: 22px 24px; }
h1 { font-size: 22px; letter-spacing: -.02em; line-height: 1.2; }
h2 { font-size: 16px; }
h3 { font-size: 13px; }
p, .lead { font-size: 13px; color: var(--ak-muted); }
.card {
  border-radius: 4px;
  border: 1px solid var(--ak-line);
  box-shadow: none;
  background: var(--ak-panel);
  padding: 18px;
}
.card.flat { border: 1px solid var(--ak-line); }
button, .btn { border-radius: 3px; background: var(--ak-blue); font-size: 12px; padding: 8px 12px; }
button.secondary, .btn.secondary { border: 1px solid var(--ak-line); color: var(--ak-blue); }
input, textarea, select { border-radius: 3px; padding: 8px 9px; font-size: 12px; border-color: var(--ak-line); }
label { gap: 5px; font-size: 12px; color: var(--ak-text); }
table { font-size: 12px; }
th { background: #f4f7fb; color: #4b5c70; font-weight: 700; letter-spacing: .04em; }
th, td { padding: 9px 10px; }
.badge { border-radius: 3px; padding: 3px 7px; font-size: 11px; }
.kpi { border-radius: 4px; box-shadow: none; border-color: var(--ak-line); padding: 14px; }
.kpi strong { font-size: 24px; color: var(--ak-blue); }
.app-frame { display: grid; grid-template-columns: 238px 1fr; min-height: calc(100vh - 56px); }
.app-sidebar { background: #fff; border-right: 1px solid var(--ak-line); padding: 14px 10px; }
.app-sidebar .side-section { margin: 10px 0 16px; }
.app-sidebar .side-label { color: #748395; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 7px 10px; }
.side-link { display: flex; align-items: center; gap: 8px; color: var(--ak-text); padding: 8px 10px; border-radius: 3px; font-size: 12px; text-decoration: none; margin: 1px 0; }
.side-link:hover { background: #f0f5fa; text-decoration: none; }
.side-link.active { background: #eaf3fb; color: var(--ak-blue); border-left: 3px solid var(--ak-blue); padding-left: 7px; }
.app-main { min-width: 0; padding: 22px 24px; }
.app-topbar { height: 56px; background: #fff; border-bottom: 1px solid var(--ak-line); display: flex; align-items: center; justify-content: space-between; padding: 0 22px; }
.app-page-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 16px; }
.app-page-title h1 { margin: 0 0 4px; }
.app-page-title p { margin: 0; max-width: 760px; }
.gov-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.gov-card-title { font-size: 12px; color: var(--ak-muted); margin-bottom: 8px; }
.gov-card-value { font-size: 26px; font-weight: 800; color: var(--ak-text); }
.list-button { border-radius: 4px; padding: 11px; border-color: var(--ak-line); }
.list-button.active { border-color: var(--ak-blue); background: #eef6fd; }
.doc-workspace { display: grid; grid-template-columns: 300px minmax(680px, 1fr) 340px; gap: 14px; min-height: calc(100vh - 112px); }
.doc-panel { background: #fff; border: 1px solid var(--ak-line); border-radius: 4px; min-height: 0; overflow: hidden; }
.doc-panel-head { border-bottom: 1px solid var(--ak-line); padding: 12px; display:flex; align-items:center; justify-content:space-between; gap: 8px; background: #f8fafc; }
.doc-panel-body { padding: 12px; overflow: auto; max-height: calc(100vh - 172px); }
.document-card { border: 1px solid var(--ak-line); background: #fff; border-radius: 4px; padding: 10px; margin-bottom: 8px; cursor: pointer; }
.document-card.active { border-color: var(--ak-blue); background: #eef6fd; }
.document-card strong { display:block; font-size: 12px; }
.document-card .small { display:block; margin-top:4px; }
.editor-chrome { display: grid; grid-template-rows: auto 1fr; min-height: calc(100vh - 112px); }
.editor-toolbar { background: #fff; border: 1px solid var(--ak-line); border-radius: 4px 4px 0 0; display:flex; align-items:center; justify-content:space-between; gap: 10px; padding: 9px 12px; }
.toolbar-group { display:flex; gap: 6px; flex-wrap: wrap; align-items:center; }
.toolbar-group button, .toolbar-group .btn { padding: 6px 9px; }
.word-stage { background: #e9eef4; border: 1px solid var(--ak-line); border-top: 0; border-radius: 0 0 4px 4px; overflow: auto; padding: 28px 18px 60px; max-height: calc(100vh - 165px); }
.word-page { width: min(900px, 100%); min-height: 1120px; margin: 0 auto; background: #fff; box-shadow: 0 8px 24px rgba(15, 35, 55, .14); border: 1px solid #d4dce6; padding: 54px 64px; }
.word-page h1 { font-size: 26px; border-bottom: 2px solid var(--ak-blue); padding-bottom: 12px; margin-bottom: 24px; }
.doc-meta-line { font-size: 11px; color: var(--ak-muted); margin-bottom: 24px; display:flex; gap: 8px; flex-wrap: wrap; }
.doc-section { border: 1px solid transparent; padding: 10px 8px; margin: 10px -8px 16px; border-radius: 3px; }
.doc-section:hover, .doc-section.selected { border-color: #b9d6ee; background: #f8fbfe; }
.doc-section-title { font-size: 18px; font-weight: 700; margin: 0 0 12px; outline: none; }
.doc-block { color: #23364b; min-height: 26px; outline: none; padding: 5px 0; margin: 4px 0; }
.doc-block.info_box { background: #eef6fd; border-left: 4px solid var(--ak-blue); padding: 10px 12px; }
.doc-field { border: 1px solid var(--ak-line); border-radius: 4px; margin: 10px 0; padding: 10px; background: #fbfcfe; }
.doc-field.selected { border-color: var(--ak-blue); box-shadow: 0 0 0 2px rgba(11, 55, 109, .08); }
.doc-field-label { display:flex; align-items:center; justify-content:space-between; gap: 8px; margin-bottom: 6px; }
.doc-field-label strong { font-size: 12px; }
.fake-input { border: 1px solid var(--ak-line); background: #fff; border-radius: 3px; min-height: 34px; padding: 8px; color: #8190a2; font-size: 12px; }
.fake-input.long { min-height: 86px; }
.fake-input.table { min-height: 120px; display:grid; place-items:center; }
.property-form { display:grid; gap: 10px; }
.field-palette { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.palette-button { background: #fff; border: 1px solid var(--ak-line); color: var(--ak-text); border-radius: 3px; justify-content: flex-start; padding: 8px; font-weight: 600; }
.palette-button:hover { background: #eef6fd; text-decoration:none; }
.empty-editor { min-height: 420px; display:grid; place-items:center; color: var(--ak-muted); text-align:center; }
.fullscreen-editor { position: fixed; inset: 0; background: var(--ak-bg); z-index: 1000; display: grid; grid-template-rows: 56px 1fr; }
.fullscreen-editor .app-topbar { height: 56px; }
.fullscreen-editor .doc-workspace { min-height: calc(100vh - 56px); grid-template-columns: 280px minmax(680px, 1fr) 340px; padding: 14px; }
.fullscreen-editor .word-stage { max-height: calc(100vh - 113px); }
.fullscreen-editor .doc-panel-body { max-height: calc(100vh - 125px); }
@media (max-width: 1100px) {
  .app-frame { grid-template-columns: 1fr; }
  .app-sidebar { display:none; }
  .doc-workspace { grid-template-columns: 1fr; }
  .doc-panel-body, .word-stage { max-height: none; }
  .word-page { padding: 30px 22px; min-height: 700px; }
  .gov-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}


/* V1.6.3 shell refinements */
.side-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:8px 10px 12px;
  border-bottom:1px solid var(--ak-line);
  margin-bottom:8px;
}
.side-head strong {
  color:var(--ak-blue);
  font-size:13px;
}
.sidebar-toggle {
  background:#fff;
  color:var(--ak-blue);
  border:1px solid var(--ak-line);
  border-radius:3px;
  padding:4px 7px;
  line-height:1;
}
.app-frame.menu-collapsed { grid-template-columns: 52px 1fr; }
.app-frame.menu-collapsed .app-sidebar { padding: 10px 6px; }
.app-frame.menu-collapsed .side-head strong,
.app-frame.menu-collapsed .side-label,
.app-frame.menu-collapsed .side-link { font-size:0; justify-content:center; padding:9px 6px; }
.app-frame.menu-collapsed .side-link::before { content:'•'; font-size:18px; color:var(--ak-blue); }
.app-frame.menu-collapsed .side-head { padding:6px 0 10px; justify-content:center; }
.app-frame.menu-collapsed .sidebar-toggle { font-size:12px; }
.editor-only-frame {
  min-height: calc(100vh - 56px);
  display:grid;
  grid-template-columns: 1fr;
}
.document-overview-grid {
  display:grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap:14px;
}
.document-overview-list {
  display:grid;
  gap:10px;
}
.editor-page-shell {
  display:grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap:14px;
  min-height: calc(100vh - 112px);
}
.editor-page-shell .word-stage { max-height: calc(100vh - 165px); }
.editor-fullscreen-active {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #e9eef4;
  display: grid;
  grid-template-rows: 48px 1fr;
}
.editor-fullscreen-active .app-topbar,
.editor-fullscreen-active .app-sidebar,
.editor-fullscreen-active .doc-list-panel,
.editor-fullscreen-active .preview-hidden-in-fullscreen {
  display:none !important;
}
.editor-fullscreen-active .editor-page-shell {
  min-height: calc(100vh - 48px);
  grid-template-columns: minmax(0, 1fr) 320px;
  padding:0;
  gap:0;
}
.editor-fullscreen-active .editor-toolbar {
  border-radius:0;
  border-left:0;
  border-right:0;
}
.editor-fullscreen-active .word-stage {
  max-height: calc(100vh - 48px);
  border:0;
  border-radius:0;
  padding:24px;
}
.editor-fullscreen-active .doc-panel {
  border-radius:0;
  border-top:0;
  border-right:0;
  border-bottom:0;
}
.preview-page {
  background:#e9eef4;
  min-height:100vh;
  padding:26px;
}
.preview-toolbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:#fff;
  border:1px solid var(--ak-line);
  padding:10px 14px;
  margin:0 auto 18px;
  max-width:900px;
}
.supplier-preview-field {
  border:1px solid var(--ak-line);
  background:#fbfcfe;
  padding:10px;
  border-radius:4px;
  margin:10px 0;
}
.supplier-preview-field label {
  font-weight:700;
  display:block;
  margin-bottom:6px;
}
.supplier-preview-field .supplier-input-preview {
  border:1px solid var(--ak-line);
  min-height:34px;
  background:#fff;
  padding:8px;
  color:#758399;
}
@media print {
  .preview-toolbar { display:none; }
  .preview-page { background:#fff; padding:0; }
  .word-page { box-shadow:none; border:0; width:auto; min-height:auto; padding:24mm 20mm; }
}


/* V1.6.3 editor fullscreen body mode */
.editor-fullscreen-active .app-frame { display:block; min-height:100vh; }
.editor-fullscreen-active .app-main { padding:0; }
.editor-fullscreen-active .editor-title { display:none; }
.editor-fullscreen-active .editor-page-shell { height:100vh; min-height:100vh; }
.editor-fullscreen-active .editor-toolbar { position:sticky; top:0; z-index:5; }
.document-overview-item {
  display:grid;
  grid-template-columns: 1fr auto;
  gap:12px;
  align-items:center;
  border:1px solid var(--ak-line);
  background:#fff;
  border-radius:4px;
  padding:12px;
}
.document-overview-item h3 { margin:0 0 4px; font-size:14px; }
.document-overview-item p { margin:0; }
.preview-hidden-in-fullscreen { display: initial; }
