/* Malta CSP Tax Return SaaS — design system (2026 refresh)
   One source of truth for tokens + components. Light & dark themes.
   Do not scatter colours in templates; use these classes / variables. */

:root {
  color-scheme: light;
  /* neutral surfaces */
  --bg: #F6F7F9;
  --bg-tint: radial-gradient(1200px 600px at 100% -10%, #EEF2FF 0%, rgba(238,242,255,0) 55%),
             radial-gradient(1000px 500px at -10% 0%, #F0FDFA 0%, rgba(240,253,250,0) 45%);
  --surface: #FFFFFF;
  --surface-alt: #F5F7FA;
  --surface-hover: #F8FAFC;
  --border: #E9EDF2;
  --border-strong: #D5DCE5;
  /* brand */
  --primary: #4F46E5;
  --primary-hover: #4338CA;
  --primary-soft: #EEF0FE;
  --primary-grad: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  --on-primary: #FFFFFF;
  /* text */
  --text: #101828;
  --text-secondary: #475467;
  --muted: #737C8C;
  /* semantic */
  --success: #067A57; --success-bg: #E4F7EF;
  --warning: #B25E09; --warning-bg: #FDF1DD;
  --error: #C4341E;   --error-bg: #FCEBE7;
  --info: #3457D5;    --info-bg: #E9EEFE;
  --neutral-bg: #EEF1F5;
  /* sidebar (dark in both themes — premium look) */
  --side-bg: #0C111D;
  --side-bg-2: #10151F;
  --side-text: #A7B0C0;
  --side-text-dim: #6B7488;
  --side-active: rgba(99,102,241,0.16);
  --side-hover: rgba(255,255,255,0.05);
  /* shape + depth */
  --radius: 14px; --radius-sm: 10px; --radius-lg: 20px; --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(16,24,40,0.04);
  --shadow: 0 1px 3px rgba(16,24,40,0.06), 0 4px 12px rgba(16,24,40,0.05);
  --shadow-lg: 0 8px 28px rgba(16,24,40,0.10);
  --ring: 0 0 0 3px rgba(79,70,229,0.22);
  --sidebar-w: 260px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

:root[data-theme="dark"], :root.dark {
  color-scheme: dark;
  --bg: #0A0E17;
  --bg-tint: radial-gradient(1200px 600px at 100% -10%, rgba(99,102,241,0.10) 0%, rgba(99,102,241,0) 55%),
             radial-gradient(1000px 500px at -10% 0%, rgba(45,212,191,0.06) 0%, rgba(45,212,191,0) 45%);
  --surface: #121826;
  --surface-alt: #171E2E;
  --surface-hover: #1A2233;
  --border: #232B3B;
  --border-strong: #303A4E;
  --primary: #7C83FF;
  --primary-hover: #6970F5;
  --primary-soft: #1E2338;
  --on-primary: #0A0E17;
  --text: #E8EBF2;
  --text-secondary: #AAB3C5;
  --muted: #7E8798;
  --success: #34D399; --success-bg: #0F2A22;
  --warning: #FBBF6B; --warning-bg: #2E2213;
  --error: #F98F7B;   --error-bg: #2E1815;
  --info: #8AA2FF;    --info-bg: #16203B;
  --neutral-bg: #1B2233;
  --side-bg: #080B12; --side-bg-2: #0C111C;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow: 0 1px 3px rgba(0,0,0,0.4), 0 6px 16px rgba(0,0,0,0.35);
  --shadow-lg: 0 10px 34px rgba(0,0,0,0.5);
  --ring: 0 0 0 3px rgba(124,131,255,0.30);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #0A0E17; --surface: #121826; --surface-alt: #171E2E; --surface-hover: #1A2233;
    --border: #232B3B; --border-strong: #303A4E; --primary: #7C83FF; --primary-hover: #6970F5;
    --primary-soft: #1E2338; --on-primary: #0A0E17; --text: #E8EBF2; --text-secondary: #AAB3C5;
    --muted: #7E8798; --success: #34D399; --success-bg: #0F2A22; --warning: #FBBF6B; --warning-bg: #2E2213;
    --error: #F98F7B; --error-bg: #2E1815; --info: #8AA2FF; --info-bg: #16203B; --neutral-bg: #1B2233;
    --bg-tint: radial-gradient(1200px 600px at 100% -10%, rgba(99,102,241,0.10) 0%, rgba(99,102,241,0) 55%);
    --shadow: 0 1px 3px rgba(0,0,0,0.4), 0 6px 16px rgba(0,0,0,0.35); --ring: 0 0 0 3px rgba(124,131,255,0.30);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  background-image: var(--bg-tint);
  background-attachment: fixed;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.05px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--primary); text-decoration: none; transition: color .12s var(--ease); }
a:hover { text-decoration: underline; }
::selection { background: rgba(99,102,241,0.22); }

/* ---------------------------------------------------------------- shell --- */
.app { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-w); flex-shrink: 0;
  background: linear-gradient(180deg, var(--side-bg-2) 0%, var(--side-bg) 100%);
  color: var(--side-text); display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.sidebar .brand {
  padding: 20px 20px 18px; font-weight: 700; font-size: 15px; color: #fff;
  letter-spacing: -0.2px; display: flex; align-items: center; gap: 11px;
}
.sidebar .brand .mark {
  width: 32px; height: 32px; border-radius: 9px; background: var(--primary-grad);
  display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff;
  box-shadow: 0 4px 14px rgba(79,70,229,0.45); flex-shrink: 0;
}
.sidebar .brand small { display: block; font-weight: 400; font-size: 11px; color: var(--side-text-dim); letter-spacing: 0; margin-top: 1px; }
.sidebar .new-cta { margin: 4px 14px 8px; }
.sidebar .new-cta .btn { width: 100%; justify-content: center; box-shadow: 0 4px 14px rgba(79,70,229,0.4); }
.sidebar nav { padding: 8px 12px; display: flex; flex-direction: column; gap: 3px; }
.sidebar .nav-label { color: var(--side-text-dim); font-size: 10.5px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase; padding: 12px 12px 5px; }
.sidebar nav a {
  color: var(--side-text); padding: 9px 12px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 13.5px; display: flex; align-items: center; gap: 11px;
  position: relative; transition: background .14s var(--ease), color .14s var(--ease);
}
.sidebar nav a:hover { background: var(--side-hover); text-decoration: none; color: #fff; }
.sidebar nav a.active { background: var(--side-active); color: #fff; }
.sidebar nav a.active::before {
  content: ""; position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 18px; border-radius: 0 3px 3px 0; background: var(--primary-grad);
}
.sidebar nav a .ico { width: 18px; text-align: center; opacity: 0.85; font-size: 14px; }
.sidebar .tenant {
  margin-top: auto; padding: 15px 18px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; color: var(--side-text-dim); display: flex; align-items: center; gap: 10px;
}
.sidebar .tenant .tmark { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 12px; flex-shrink: 0; }
.sidebar .tenant b { color: #fff; display: block; font-size: 12.5px; font-weight: 600; }

.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.topbar {
  height: 60px; background: color-mix(in srgb, var(--surface) 78%, transparent);
  backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border); display: flex; align-items: center;
  padding: 0 28px; gap: 14px; position: sticky; top: 0; z-index: 20;
}
.topbar .crumbs { color: var(--muted); font-size: 13px; font-weight: 500; }
.topbar .crumbs a { color: var(--text-secondary); }
.topbar .crumbs .sep { margin: 0 8px; color: var(--border-strong); }
.topbar .spacer { margin-left: auto; }
.topbar .user { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-secondary); }
.topbar .avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--primary-grad);
  color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 12px;
}
.icon-btn {
  width: 34px; height: 34px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--surface); color: var(--text-secondary); display: grid; place-items: center;
  cursor: pointer; font-size: 15px; transition: all .14s var(--ease);
}
.icon-btn:hover { background: var(--surface-hover); color: var(--text); border-color: var(--border-strong); }
.content { padding: 28px; max-width: 1200px; width: 100%; margin: 0 auto; animation: fade-in .3s var(--ease); }
@keyframes fade-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------- type ----- */
h1 { font-size: 24px; font-weight: 700; margin: 0 0 4px; letter-spacing: -0.5px; }
h2 { font-size: 15.5px; font-weight: 650; margin: 0 0 14px; letter-spacing: -0.2px; }
h3 { font-size: 13.5px; font-weight: 650; margin: 0 0 8px; letter-spacing: -0.1px; }
.page-head { margin-bottom: 24px; }
.page-head .sub { color: var(--muted); font-size: 14px; }
.muted { color: var(--muted); font-size: 13px; }
.secondary { color: var(--text-secondary); }

/* --------------------------------------------------------------- cards ---- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; margin-bottom: 18px; box-shadow: var(--shadow-sm);
  transition: box-shadow .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.card > h2:first-child, .card > h3:first-child { margin-top: 0; }
.card-row { display: flex; gap: 18px; flex-wrap: wrap; }
.card-row > .card { flex: 1; min-width: 300px; }
.grid { display: grid; gap: 18px; }

/* metric / stat tiles */
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-bottom: 24px; }
.metric {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: box-shadow .18s var(--ease), transform .18s var(--ease);
}
.metric:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.metric .label { color: var(--muted); font-size: 12.5px; font-weight: 550; }
.metric .value { font-size: 30px; font-weight: 730; margin-top: 8px; color: var(--text); letter-spacing: -0.8px; font-variant-numeric: tabular-nums; }
.metric .value.success { color: var(--success); }
.metric .value.warning { color: var(--warning); }
.metric .value.error { color: var(--error); }
.metric .foot { color: var(--muted); font-size: 12px; margin-top: 4px; }

/* --------------------------------------------------------------- badges --- */
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px;
  border-radius: var(--radius-pill); font-size: 11.5px; font-weight: 600; line-height: 1.7;
  border: 1px solid transparent; white-space: nowrap; letter-spacing: -0.1px;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.success { background: var(--success-bg); color: var(--success); }
.badge.warning { background: var(--warning-bg); color: var(--warning); }
.badge.error { background: var(--error-bg); color: var(--error); }
.badge.info { background: var(--info-bg); color: var(--info); }
.badge.neutral { background: var(--neutral-bg); color: var(--text-secondary); border-color: var(--border); }

/* --------------------------------------------------------------- tables --- */
table { border-collapse: collapse; width: 100%; font-size: 13.5px; }
thead th {
  text-align: left; color: var(--muted); font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 14px;
  border-bottom: 1px solid var(--border); background: var(--surface-alt);
}
thead th:first-child { border-top-left-radius: var(--radius-sm); }
thead th:last-child { border-top-right-radius: var(--radius-sm); }
tbody td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr { transition: background .12s var(--ease); }
tbody tr:hover { background: var(--surface-hover); }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--primary); color: var(--on-primary); background-image: var(--primary-grad);
  padding: 9px 16px; border: 1px solid transparent; border-radius: var(--radius-sm);
  cursor: pointer; font-size: 13.5px; font-weight: 600; font-family: inherit; letter-spacing: -0.1px;
  transition: transform .12s var(--ease), box-shadow .14s var(--ease), filter .14s var(--ease);
  box-shadow: 0 1px 2px rgba(16,24,40,0.10);
}
.btn:hover { filter: brightness(1.06); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn.secondary { background: var(--surface); background-image: none; color: var(--text); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.btn.secondary:hover { background: var(--surface-hover); filter: none; }
.btn.success { background: var(--success); background-image: linear-gradient(135deg, color-mix(in srgb, var(--success) 88%, #fff) 0%, var(--success) 100%); }
.btn.ghost { background: transparent; background-image: none; color: var(--text-secondary); border-color: transparent; box-shadow: none; }
.btn.ghost:hover { background: var(--surface-alt); filter: none; }
.btn[disabled], .btn.disabled {
  background: var(--surface-alt); background-image: none; color: var(--muted); border-color: var(--border);
  cursor: not-allowed; pointer-events: none; box-shadow: none; filter: none;
}
.btn.lg { padding: 11px 22px; font-size: 14px; }

/* --------------------------------------------------------------- forms ---- */
input, select, textarea {
  padding: 10px 12px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font-size: 13.5px; font-family: inherit; color: var(--text); background: var(--surface); width: 100%;
  transition: border-color .14s var(--ease), box-shadow .14s var(--ease);
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: var(--ring); }
.btn:focus-visible, a:focus-visible, .icon-btn:focus-visible { outline: none; box-shadow: var(--ring); }
label { font-weight: 600; font-size: 13px; display: block; margin-bottom: 7px; color: var(--text); }
.field { margin-bottom: 16px; }
.field .hint { color: var(--muted); font-size: 12px; margin-top: 5px; font-weight: 400; }
.form-narrow { max-width: 460px; }

/* segmented control (flow toggles) */
.segmented { display: inline-flex; background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 3px; gap: 3px; }
.segmented label { margin: 0; cursor: pointer; padding: 7px 15px; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text-secondary); transition: all .14s var(--ease); }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented input:checked + label { background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm); }

/* --------------------------------------------------------------- panels --- */
.panel { border: 1px solid var(--border); border-left-width: 3px; border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 14px; background: var(--surface); }
.panel.success { border-left-color: var(--success); background: color-mix(in srgb, var(--success-bg) 55%, var(--surface)); }
.panel.warning { border-left-color: var(--warning); background: color-mix(in srgb, var(--warning-bg) 55%, var(--surface)); }
.panel.error { border-left-color: var(--error); background: color-mix(in srgb, var(--error-bg) 55%, var(--surface)); }
.panel.info { border-left-color: var(--info); background: color-mix(in srgb, var(--info-bg) 55%, var(--surface)); }
.panel h3 { margin: 0 0 6px; display: flex; align-items: center; gap: 8px; }
.panel.success h3 { color: var(--success); }
.panel.warning h3 { color: var(--warning); }
.panel.error h3 { color: var(--error); }
.panel.info h3 { color: var(--info); }

/* --------------------------------------------------------------- stepper -- */
.stepper { display: flex; gap: 0; margin: 0 0 24px; flex-wrap: wrap; align-items: center; }
.step { display: flex; align-items: center; gap: 9px; padding: 0 16px 0 0; color: var(--muted); }
.step .num {
  width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface); border: 1.5px solid var(--border-strong); font-size: 12px; font-weight: 700; color: var(--muted);
  transition: all .18s var(--ease);
}
.step.active .num { background: var(--primary); background-image: var(--primary-grad); border-color: transparent; color: #fff; box-shadow: 0 3px 10px rgba(79,70,229,0.4); }
.step.done .num { background: var(--success); border-color: transparent; color: #fff; }
.step.active .lbl { color: var(--text); font-weight: 650; }
.step.done .lbl { color: var(--text-secondary); }
.step .lbl { font-size: 13px; }
.step .bar { width: 28px; height: 2px; background: var(--border); margin-left: 4px; border-radius: 2px; }
.step.done .bar { background: var(--success); }

/* ----------------------------------------------------------- doc cards ---- */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.doc-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; background: var(--surface); box-shadow: var(--shadow-sm); transition: box-shadow .18s var(--ease), border-color .18s var(--ease); }
.doc-card:hover { box-shadow: var(--shadow); }
.doc-card.missing { border-style: dashed; background: var(--surface-alt); }
.doc-card .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.doc-card .title { font-weight: 650; font-size: 13.5px; }
.doc-card .meta { color: var(--muted); font-size: 12.5px; }
.doc-card .file { font-size: 13px; color: var(--text-secondary); margin-top: 8px; word-break: break-all; }

/* --------------------------------------------------------------- misc ----- */
.summary-list { list-style: none; padding: 0; margin: 0; }
.summary-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; gap: 12px; }
.summary-list li:last-child { border-bottom: 0; }
.summary-list .k { color: var(--muted); }
.summary-list .v { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--border); margin: 16px 0; }
.empty { text-align: center; padding: 52px 20px; color: var(--muted); }
.empty .icon { font-size: 34px; opacity: 0.7; }
.empty h2 { color: var(--text); margin-top: 12px; }
.inline-list { margin: 8px 0 0; padding-left: 18px; }
.inline-list li { margin: 3px 0; font-size: 13px; }
.kbar { display: flex; gap: 10px; flex-wrap: wrap; }
.kbar .k { font-size: 12.5px; color: var(--text-secondary); background: var(--surface-alt); border: 1px solid var(--border); padding: 5px 11px; border-radius: var(--radius-pill); }
.kbar .k b { color: var(--text); font-weight: 650; }
.tag-types { font-size: 12px; color: var(--muted); background: var(--surface-alt); padding: 2px 8px; border-radius: 5px; }

/* ------------------------------------------------------------- progress --- */
.progress { height: 10px; border-radius: var(--radius-pill); background: var(--surface-alt); border: 1px solid var(--border); overflow: hidden; margin: 18px 0 8px; }
.progress-fill { height: 100%; width: 0; border-radius: var(--radius-pill); background: var(--primary-grad);
  box-shadow: 0 0 12px rgba(99,102,241,0.5); transition: width .3s var(--ease); }
.progress-meta { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--text); }
.progress-meta #eta { font-weight: 400; }
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border-strong);
  border-top-color: var(--primary); display: inline-block; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.stage-list { list-style: none; padding: 0; margin: 16px 0 0; }
.stage-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; color: var(--muted); transition: color .2s var(--ease); }
.stage-list li::before { content: "○"; font-size: 12px; color: var(--border-strong); width: 14px; text-align: center; }
.stage-list li.active { color: var(--text); font-weight: 600; }
.stage-list li.active::before { content: "◐"; color: var(--primary); animation: spin 1.2s linear infinite; }
.stage-list li.done { color: var(--text-secondary); }
.stage-list li.done::before { content: "✓"; color: var(--success); }

/* --------------------------------------------------- guidance / checklist - */
.steps-list, .check-list { list-style: none; padding: 0; margin: 0; }
.steps-list li { padding: 9px 0; border-top: 1px solid var(--border); }
.steps-list li:first-child { border-top: 0; }
.check-list .check-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--border); }
.check-list .check-item:first-child { border-top: 0; }
.check-list .ci-badge { flex-shrink: 0; min-width: 92px; }

/* collapsible sections + scrollable wide tables */
details.collapsible { border-top: 1px solid var(--border); padding-top: 12px; }
details.collapsible > summary { cursor: pointer; font-weight: 650; font-size: 13.5px; color: var(--text); list-style: none; display: flex; align-items: center; gap: 8px; padding: 4px 0; }
details.collapsible > summary::-webkit-details-marker { display: none; }
details.collapsible > summary::before { content: "▸"; color: var(--muted); transition: transform .15s var(--ease); }
details.collapsible[open] > summary::before { transform: rotate(90deg); }
.table-scroll { overflow-x: auto; margin-top: 10px; max-height: 460px; overflow-y: auto; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.table-scroll table thead th { position: sticky; top: 0; z-index: 1; }

/* login */
.login-wrap { display: grid; place-items: center; min-height: 100vh; background: var(--bg); background-image: var(--bg-tint); padding: 20px; }
.login-card { width: 400px; max-width: 100%; box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); padding: 30px; }
.login-card .brand { text-align: center; margin-bottom: 22px; }
.login-card .brand .mark { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-grad); color: #fff; display: inline-grid; place-items: center; font-weight: 700; box-shadow: 0 8px 22px rgba(79,70,229,0.45); }

@media (max-width: 900px) {
  .sidebar { width: 68px; }
  .sidebar .brand span:not(.mark), .sidebar .nav-label, .sidebar nav a .lbl, .sidebar .tenant b, .sidebar .tenant span, .sidebar .new-cta .lbl { display: none; }
  .sidebar .new-cta .btn { padding: 9px 0; }
  .sidebar nav a { justify-content: center; }
  .content { padding: 20px 16px; }
}
