:root {
  --base: #05070e;
  --surface: #0c1322;
  --surface-2: #111a2e;
  --line: #1c2840;
  --ink: #eef3fb;
  --muted: #94a3bd;
  --faint: #5b6b86;
  --accent: #3ee0d3;
  --accent-2: #5b8cff;
  --gold: #d2b072;
  --danger: #ff6b6b;
  --ok: #3ee0a0;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--base);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Top bar */
.topbar {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), transparent);
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(8px);
}
.topbar .wrap { display: flex; align-items: center; gap: 20px; min-height: 62px; padding: 10px 0; flex-wrap: wrap; }
.brand { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; white-space: nowrap; }
.brand span { color: var(--accent); }
.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--muted); padding: 8px 13px; border-radius: 999px; font-weight: 500;
  font-size: 14px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: var(--surface-2); text-decoration: none; }
.nav a.active { color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, transparent); }
.badge {
  display: inline-block; min-width: 18px; padding: 1px 6px; margin-left: 6px;
  font-size: 12px; font-weight: 700; text-align: center;
  background: var(--accent); color: #04121a; border-radius: 999px;
}

/* ── Nav-Dropdowns (natives <details>, max. 3 Hauptpunkte) ── */
.nav-sep { width: 1px; height: 22px; margin: 0 4px; background: var(--line); align-self: center; }
.nav-menu { position: relative; }
.nav-menu > summary {
  list-style: none; cursor: pointer; color: var(--muted); user-select: none; white-space: nowrap;
  padding: 9px 15px; border-radius: 999px; font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid transparent; transition: color .15s, background .15s, border-color .15s;
}
.nav-menu > summary::-webkit-details-marker { display: none; }
.nav-menu > summary::after {
  content: ""; width: 7px; height: 7px; margin-left: 1px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px); opacity: .5; transition: transform .2s, opacity .2s;
}
.nav-menu[open] > summary::after { transform: rotate(-135deg); opacity: .9; }
.nav-menu > summary:hover { color: var(--ink); background: var(--surface-2); }
.nav-menu[open] > summary { color: var(--ink); background: var(--surface-2); border-color: var(--line); }
.nav-menu.active > summary { color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); }
.nav-menu > summary.acct { padding: 4px 8px 4px 4px; gap: 4px; }

.nav-solo {
  color: var(--muted); padding: 9px 15px; border-radius: 999px; font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-solo:hover { color: var(--ink); background: var(--surface-2); text-decoration: none; }
.nav-solo.active { color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); }

/* Support-/Impersonation-Banner */
.impersonate-bar {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--gold);
  background: linear-gradient(90deg, color-mix(in srgb, var(--gold) 26%, var(--base)), color-mix(in srgb, var(--gold) 14%, var(--base)));
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
}
.impersonate-bar strong { color: #fff; }
.impersonate-bar .ib-back {
  background: var(--gold); color: #1a1206; padding: 6px 14px; border-radius: 999px; font-weight: 700; white-space: nowrap;
}
.impersonate-bar .ib-back:hover { filter: brightness(1.08); text-decoration: none; }

.nav-dropdown {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 246px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: 16px; padding: 8px; z-index: 40;
  box-shadow: 0 24px 55px -16px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .04);
  transform-origin: top right; animation: ddIn .16s cubic-bezier(.22, 1, .36, 1);
}
@keyframes ddIn { from { opacity: 0; transform: translateY(-8px) scale(.97); } to { opacity: 1; transform: none; } }
.nav-dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 11px;
  color: var(--muted); font-weight: 500; font-size: 14px;
}
.nav-dropdown a .di {
  width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex: 0 0 auto;
  background: var(--base); border: 1px solid var(--line); color: var(--muted); transition: color .15s, border-color .15s;
}
.nav-dropdown a .di svg { width: 17px; height: 17px; }
.nav-dropdown a .dl { flex: 1; }
.nav-dropdown a:hover { background: color-mix(in srgb, var(--accent) 10%, transparent); color: var(--ink); text-decoration: none; }
.nav-dropdown a:hover .di { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.nav-dropdown a.active { background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--accent); }
.nav-dropdown a.active .di { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 55%, transparent); }
.nav-dropdown .badge { margin-left: auto; }

/* Mobile-Navigation: Hamburger + Off-Canvas-Drawer */
.nav-toggle {
  display: none; margin-left: auto; flex: 0 0 auto; padding: 0; cursor: pointer;
  width: 44px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  border-radius: 12px; border: 1px solid var(--line); background: var(--surface-2); color: var(--muted);
  transition: color .18s, border-color .18s;
}
.nav-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-backdrop { display: none; }

@media (max-width: 720px) {
  .nav-sep { display: none; }
  .nav-toggle { display: inline-flex; }

  .topbar .wrap { min-height: 54px; gap: 12px; flex-wrap: nowrap; }
  .brand { flex: 1 1 auto; }

  /* Off-Canvas-Drawer, verankert unter der Kopfleiste (volle Breite) */
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; box-sizing: border-box;
    margin: 0; padding: 10px 12px calc(18px + env(safe-area-inset-bottom));
    flex-direction: column; flex-wrap: nowrap; align-items: stretch; gap: 6px;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - 54px); overflow-y: auto;
    box-shadow: 0 34px 60px -22px rgba(0, 0, 0, .85);
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 60;
  }
  body.nav-open .nav { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }

  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 8;
    background: rgba(2, 6, 14, .55);
    opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s;
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

  /* Hamburger → X */
  body.nav-open .nav-toggle { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Solo-Links & Gruppentitel als grosse Zeilen */
  .nav-solo, .nav-menu > summary {
    width: 100%; box-sizing: border-box; padding: 14px; border-radius: 12px; font-size: 15px;
  }
  .nav-menu { position: static; width: 100%; }
  .nav-menu > summary { display: flex; align-items: center; justify-content: space-between; }
  .nav-menu > summary.acct { padding: 12px 14px; }

  /* Gruppen-Inhalt als Inline-Accordion statt Overlay-Dropdown */
  .nav-dropdown {
    position: static; inset: auto; width: auto; min-width: 0;
    margin: 2px 0 8px 6px; padding: 4px 0 4px 10px;
    background: transparent; border: none; border-left: 2px solid var(--line);
    border-radius: 0; box-shadow: none; animation: none; max-height: none; overflow: visible;
  }
  .nav-dropdown a { padding: 12px 10px; font-size: 14.5px; }
}

/* Cards / panels */
main { padding: 32px 0 64px; }
h1 { font-size: 26px; margin: 0 0 6px; letter-spacing: -0.01em; }
.sub { color: var(--muted); margin: 0 0 26px; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 22px;
}
.grid { display: grid; gap: 16px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .cols-3, .cols-4 { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .grid[style*="1.3fr"], .grid[style*="1.6fr"], .grid[style*="1.1fr"] { grid-template-columns: 1fr !important; } }
/* Mobile: alle inline gesetzten Grid-Spalten auf 1 Spalte, breite Tabellen im Card scrollen lassen */
@media (max-width: 720px) {
  .grid[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .card:has(table) { overflow-x: auto; }
  .card table { min-width: 0; }
}

/* ── CRM: Kanban-Board ── */
.kanban { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; align-items: start; }
@media (max-width: 980px) { .kanban { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .kanban { grid-template-columns: 1fr; } }
.kcol { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 12px; }
.kcol h3 { margin: 0 0 4px; font-size: 14px; display: flex; justify-content: space-between; align-items: center; }
.kcol .ksum { color: var(--muted); font-size: 12px; margin-bottom: 10px; }
.kcard { display: block; background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; margin-bottom: 9px; transition: border-color .2s; }
.kcard:hover { border-color: var(--accent); text-decoration: none; }
.kcard .kt { color: var(--ink); font-weight: 600; font-size: 14px; }
.kcard .kv { color: var(--accent); font-size: 13px; margin-top: 3px; }
.kcard .km { color: var(--faint); font-size: 12px; margin-top: 4px; }
.stage-move { display: flex; gap: 4px; margin-top: 8px; flex-wrap: wrap; }
.stage-move button { background: transparent; border: 1px solid var(--line); color: var(--muted); border-radius: 6px; padding: 2px 7px; font-size: 11px; cursor: pointer; }
.stage-move button:hover { border-color: var(--accent); color: var(--accent); }

/* ── CRM: Timeline ── */
.timeline { position: relative; padding-left: 22px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 4px; bottom: 4px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 18px; }
.tl-item::before { content: ""; position: absolute; left: -19px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--base); }
.tl-item.done::before { background: var(--ok); }
.tl-item.tl-danger::before { background: var(--danger); box-shadow: 0 0 0 3px var(--base), 0 0 10px 1px rgba(255,107,107,.5); }
.tl-item.tl-danger { border-left: 2px solid rgba(255,107,107,.5); margin-left: -2px; padding-left: 12px; }
.pill.danger { color: var(--danger); border-color: rgba(255,107,107,.5); }
.tl-meta { color: var(--faint); font-size: 12px; }

/* Detail-Spalten */
.detail { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; align-items: start; }
@media (max-width: 860px) { .detail { grid-template-columns: 1fr; } }
dl.kv-list { margin: 0; }
dl.kv-list > div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); }
dl.kv-list dt { color: var(--faint); }
dl.kv-list dd { margin: 0; text-align: right; }

.stat { text-align: left; }
.stat .n { font-size: 30px; font-weight: 700; }
.stat .l { color: var(--muted); font-size: 13px; margin-top: 2px; }
.accent { color: var(--accent); }
.gold { color: var(--gold); }

/* Tables */
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 12px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--faint); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
tr.unread td { background: rgba(62, 224, 211, 0.04); }
tr.unread td:first-child { box-shadow: inset 2px 0 0 var(--accent); }
.row-link { color: var(--ink); font-weight: 600; }

/* Pills */
.pill {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600; border: 1px solid var(--line);
}
.pill.new { color: var(--accent); border-color: rgba(62,224,211,.4); }
.pill.read { color: var(--muted); }
.pill.archived { color: var(--faint); }

/* Forms */
label { display: block; font-size: 13px; color: var(--muted); margin: 0 0 6px; }
input[type=text], input[type=email], input[type=password], input[type=tel],
input[type=date], input[type=number], input[type=month], input[type=time],
input[type=datetime-local], input[type=search], input[type=url], textarea, select {
  width: 100%; padding: 11px 13px; border-radius: 10px;
  background: var(--base); border: 1px solid var(--line); color: var(--ink);
  font: inherit; outline: none;
}
/* Native Datums-/Zahlenfelder an das dunkle Theme angleichen (Segmente, Kalender, Spinner). */
input[type=date], input[type=number], input[type=month], input[type=time], input[type=datetime-local] {
  color-scheme: dark;
}
input[type=date]::-webkit-calendar-picker-indicator,
input[type=month]::-webkit-calendar-picker-indicator,
input[type=time]::-webkit-calendar-picker-indicator,
input[type=datetime-local]::-webkit-calendar-picker-indicator { filter: invert(.7); cursor: pointer; }
input:focus, textarea:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(62,224,211,.15); }
.field { margin-bottom: 16px; }
.row { display: flex; gap: 14px; flex-wrap: wrap; }
.row > .field { flex: 1 1 220px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 10px 18px; border-radius: 999px; font-weight: 600; font: inherit;
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink);
}
.btn:hover { border-color: var(--accent); text-decoration: none; }
.btn-primary { background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #04121a; border: 0; }
.btn-danger { color: var(--danger); border-color: rgba(255,107,107,.35); background: transparent; }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* Alerts */
.alert { padding: 12px 16px; border-radius: 12px; margin-bottom: 18px; font-size: 14px; }
.alert.ok { background: rgba(62,224,160,.1); color: var(--ok); border: 1px solid rgba(62,224,160,.3); }
.alert.err { background: rgba(255,107,107,.1); color: var(--danger); border: 1px solid rgba(255,107,107,.3); }

.muted { color: var(--muted); }
.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; }
.toolbar { display: flex; gap: 10px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.toolbar form { display: flex; gap: 8px; }
.spacer { flex: 1; }

/* Login screen */
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.login-card { width: 100%; max-width: 380px; }

/* Rollen-Chip in der Navigation */
.role-chip {
  padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600;
  color: var(--gold); border: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  background: color-mix(in srgb, var(--gold) 10%, transparent); margin-left: 4px;
}

/* Storno-Wasserzeichen (Anzeige-Overlay) */
.wm { position: relative; overflow: hidden; }
.wm::after {
  content: "STORNIERT"; position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; pointer-events: none;
  font-weight: 800; font-size: clamp(20px, 6vw, 46px); letter-spacing: .15em;
  color: rgba(255, 107, 107, .22); transform: rotate(-18deg);
  text-shadow: 0 1px 0 rgba(0,0,0,.2); border: 3px solid rgba(255,107,107,.18);
  border-radius: 10px;
}
.wm-strip {
  display: inline-block; padding: 2px 10px; border-radius: 6px; font-weight: 800;
  letter-spacing: .12em; font-size: 11px; color: #fff; background: var(--danger);
  transform: rotate(-3deg);
}
tr.deleted td { opacity: .5; }
tr.deleted td:first-child { box-shadow: inset 2px 0 0 var(--danger); }

/* Toggle-Schalter (Sichtbarkeit im Kundenportal) */
.switch { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.switch input { display: none; }
.switch .track {
  width: 40px; height: 22px; border-radius: 999px; background: var(--surface-2);
  border: 1px solid var(--line); position: relative; transition: background .2s;
}
.switch .track::after {
  content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--muted); transition: transform .2s, background .2s;
}
.switch input:checked + .track { background: color-mix(in srgb, var(--accent) 30%, transparent); border-color: var(--accent); }
.switch input:checked + .track::after { transform: translateX(18px); background: var(--accent); }

/* Datei-/Dokumentkarten im Portal */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.doc-card { border: 1px solid var(--line); border-radius: 14px; padding: 16px; background: var(--surface); }
.doc-ico { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: var(--surface-2); color: var(--accent); margin-bottom: 10px; }
.dropzone {
  border: 1.5px dashed var(--line); border-radius: 14px; padding: 26px; text-align: center;
  color: var(--muted); transition: border-color .2s, background .2s;
}
.dropzone.drag { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 6%, transparent); }

/* ── Benachrichtigungen (Topbar-Glocke) ───────────────────── */
.nav-bell > summary.acct { gap: 0; }
.nav-bell .bell svg { width: 20px; height: 20px; display: block; }
.notif-dropdown { min-width: 320px; max-width: 360px; padding: 0; }
.notif-head { display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; border-bottom: 1px solid var(--line); }
.link-btn { background: none; border: none; color: var(--accent); cursor: pointer;
  font: inherit; font-size: 12px; padding: 0; }
.notif-empty { padding: 18px 14px; font-size: 14px; }
.notif-item { display: block; padding: 11px 14px; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit; }
.notif-item:hover { background: var(--surface-2); }
.notif-item.unread { border-left: 3px solid var(--accent); }
.notif-title { display: block; font-weight: 600; font-size: 13px; }
.notif-body { display: block; font-size: 12px; color: var(--muted); margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notif-time { display: block; font-size: 11px; color: var(--muted); margin-top: 3px; }
.notif-all { display: block; padding: 11px 14px; text-align: center; font-size: 13px;
  color: var(--accent); text-decoration: none; }
.notif-all:hover { background: var(--surface-2); }

/* Zeilen-Aktionsmenü (Button + Dropdown). Popover ist position:fixed → wird nicht
   vom overflow der Tabellen-Card abgeschnitten; Positionierung via JS (admin_footer). */
.rowmenu { position: relative; display: inline-block; }
.rowmenu-pop { position: fixed; display: none; z-index: 1200; min-width: 190px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0,0,0,.45); padding: 6px; }
.rowmenu-pop a, .rowmenu-pop button { display: flex; align-items: center; gap: 8px; width: 100%;
  box-sizing: border-box; text-align: left; padding: 9px 12px; border-radius: 8px;
  background: none; border: 0; color: var(--text); font: inherit; font-size: 13px;
  cursor: pointer; text-decoration: none; white-space: nowrap; }
.rowmenu-pop a:hover, .rowmenu-pop button:hover { background: rgba(255,255,255,.06); }
.rowmenu-pop .danger { color: var(--danger); }
.rowmenu-pop form { margin: 0; }
.rowmenu-sep { height: 1px; background: var(--line); margin: 4px 6px; }
.rec-chip { display: inline-flex; align-items: center; gap: 3px; font-size: 11px;
  color: var(--accent); border: 1px solid var(--line); border-radius: 999px; padding: 1px 7px; }

/* Spaltenfilter unter der Tabellen-Kopfzeile (client-seitig, sofort). */
.jrow-filter th { padding: 4px 8px 8px; }
.col-filter { width: 100%; box-sizing: border-box; font-size: 12px; padding: 5px 8px; font-weight: 400; }

/* Aufklappbare Untergruppen in Nav-Dropdowns (z. B. Finanzen). */
.nav-sub { border-top: 1px solid var(--line); }
.nav-sub:first-child { border-top: 0; }
.nav-sub > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); font-weight: 600;
  padding: 10px 14px; user-select: none; border-radius: 11px; }
.nav-sub > summary::-webkit-details-marker { display: none; }
.nav-sub > summary::after { content: ''; width: 6px; height: 6px; margin-left: auto; margin-right: 2px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform .15s; opacity: .8; }
.nav-sub[open] > summary { color: var(--text); }
.nav-sub[open] > summary::after { transform: rotate(-135deg); }
.nav-sub > summary:hover { color: var(--text); background: color-mix(in srgb, var(--accent) 8%, transparent); }
.nav-subitems a { padding-left: 18px; }
