/* ============================================================
   MZ V2-UI - Shell (Tokens, Layout, Sidebar, Topbar, Dropdowns)
   Wird nur geladen, wenn das V2-Design aktiv ist (Cookie mz_ui=v2).
   Content-Komponenten: v2-content.css
   ============================================================ */

/* ---------- Design-Tokens ---------- */

body.ui-v2 {
  --v2-sidebar-w: 264px;
  --v2-topbar-h: 62px;
  --v2-radius: 10px;
  --v2-radius-sm: 8px;
  --v2-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --v2-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Dark (Default) */
  --v2-bg: #0f1319;
  --v2-bg-elev: #141a23;
  --v2-surface: #171e29;
  --v2-surface-2: #1d2532;
  --v2-surface-3: #232d3d;
  --v2-border: #263140;
  --v2-border-strong: #34415466;
  --v2-text: #e8ecf2;
  --v2-text-dim: #94a1b5;
  --v2-text-faint: #667186;
  --v2-accent: #4c8dff;
  --v2-accent-strong: #3576ea;
  --v2-accent-soft: rgba(76, 141, 255, 0.14);
  --v2-success: #34d399;
  --v2-success-soft: rgba(52, 211, 153, 0.14);
  --v2-danger: #f87171;
  --v2-danger-soft: rgba(248, 113, 113, 0.14);
  --v2-warning: #fbbf24;
  --v2-warning-soft: rgba(251, 191, 36, 0.14);
  --v2-info: #38bdf8;
  --v2-info-soft: rgba(56, 189, 248, 0.14);
  --v2-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 10px 28px -14px rgba(0, 0, 0, 0.55);
  --v2-shadow-pop: 0 4px 10px rgba(0, 0, 0, 0.4), 0 20px 50px -16px rgba(0, 0, 0, 0.6);
}

body.ui-v2[data-theme="light"] {
  --v2-bg: #f3f5f8;
  --v2-bg-elev: #ffffff;
  --v2-surface: #ffffff;
  --v2-surface-2: #f2f4f8;
  --v2-surface-3: #e9edf3;
  --v2-border: #e2e7ee;
  --v2-border-strong: #cdd5e0;
  --v2-text: #1d2635;
  --v2-text-dim: #5b6779;
  --v2-text-faint: #8b96a8;
  --v2-accent: #2f6fe4;
  --v2-accent-strong: #235cc7;
  --v2-accent-soft: rgba(47, 111, 228, 0.10);
  --v2-success: #0e9f6e;
  --v2-success-soft: rgba(14, 159, 110, 0.12);
  --v2-danger: #dc2626;
  --v2-danger-soft: rgba(220, 38, 38, 0.10);
  --v2-warning: #b45309;
  --v2-warning-soft: rgba(180, 83, 9, 0.12);
  --v2-info: #0284c7;
  --v2-info-soft: rgba(2, 132, 199, 0.10);
  --v2-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 8px 24px -12px rgba(16, 24, 40, 0.12);
  --v2-shadow-pop: 0 4px 10px rgba(16, 24, 40, 0.08), 0 20px 50px -16px rgba(16, 24, 40, 0.22);
}

/* ---------- Basis ---------- */

body.ui-v2 {
  font-family: var(--v2-font);
  font-size: 13.5px;
  line-height: 1.55;
  background: var(--v2-bg) !important;
  color: var(--v2-text) !important;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

body.ui-v2 ::selection {
  background: var(--v2-accent);
  color: #fff;
}

body.ui-v2 ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body.ui-v2 ::-webkit-scrollbar-track {
  background: transparent;
}

body.ui-v2 ::-webkit-scrollbar-thumb {
  background: var(--v2-border-strong);
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: content-box;
}

body.ui-v2 :focus-visible {
  outline: 2px solid var(--v2-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout-Vertrag ---------- */

body.ui-v2 .page-body {
  display: block;
  margin-left: var(--v2-sidebar-w);
  padding-top: var(--v2-topbar-h);
  min-height: 100vh;
  background: var(--v2-bg);
  transition: margin-left 0.22s ease;
}

body.ui-v2.v2-sidebar-hidden .page-body {
  margin-left: 0;
}

body.ui-v2 .page-content-wrapper {
  width: 100%;
  padding: 26px 30px 48px;
  margin: 0;
}

body.ui-v2 .page-content-wrapper-inner,
body.ui-v2 .content-viewport {
  padding: 0;
  margin: 0;
}

/* ---------- Sidebar ---------- */

body.ui-v2 .v2-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--v2-sidebar-w);
  display: flex;
  flex-direction: column;
  background: var(--v2-bg-elev);
  border-right: 1px solid var(--v2-border);
  z-index: 1030;
  transition: transform 0.22s ease;
}

body.ui-v2.v2-sidebar-hidden .v2-sidebar {
  transform: translateX(-100%);
}

body.ui-v2 .v2-brand {
  display: flex;
  align-items: center;
  height: var(--v2-topbar-h);
  padding: 0 18px;
  border-bottom: 1px solid var(--v2-border);
  flex-shrink: 0;
}

body.ui-v2 .v2-brand-link {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--v2-text);
}

body.ui-v2 .v2-brand-link:hover {
  text-decoration: none;
  color: var(--v2-text);
}

body.ui-v2 .v2-brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--v2-accent), var(--v2-accent-strong));
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 12px -4px var(--v2-accent);
}

body.ui-v2 .v2-brand-name {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

body.ui-v2 .v2-company-card {
  margin: 14px 14px 4px;
  padding: 12px 14px;
  background: var(--v2-surface-2);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  flex-shrink: 0;
}

body.ui-v2 .v2-company-name {
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.ui-v2 .v2-company-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 6px;
  gap: 8px;
}

body.ui-v2 .v2-company-meta-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--v2-text-faint);
}

body.ui-v2 .v2-company-meta-value {
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--v2-success);
}

body.ui-v2 .v2-company-meta-value img {
  width: 16px !important;
}

/* ---------- Sidebar: Filter ---------- */

body.ui-v2 .v2-nav-filter {
  position: relative;
  margin: 10px 14px;
  flex-shrink: 0;
}

body.ui-v2 .v2-nav-filter i {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--v2-text-faint);
  pointer-events: none;
}

body.ui-v2 .v2-nav-filter input {
  width: 100%;
  height: 32px;
  padding: 0 10px 0 30px;
  font-size: 12.5px;
  font-family: inherit;
  color: var(--v2-text);
  background: var(--v2-surface-2);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius-sm);
  transition: border-color 0.15s ease;
}

body.ui-v2 .v2-nav-filter input:focus {
  outline: none;
  border-color: var(--v2-accent);
}

body.ui-v2 .v2-nav-filter input::placeholder {
  color: var(--v2-text-faint);
}

/* ---------- Sidebar: Navigation ---------- */

body.ui-v2 .v2-nav {
  flex: 1;
  overflow-y: auto;
  padding: 4px 14px 16px;
  scrollbar-width: thin;
}

body.ui-v2 .v2-nav-group {
  margin-top: 14px;
}

body.ui-v2 .v2-nav-group-label {
  padding: 0 10px 6px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--v2-text-faint);
}

body.ui-v2 .v2-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  margin-bottom: 1px;
  border-radius: var(--v2-radius-sm);
  color: var(--v2-text-dim);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

body.ui-v2 .v2-nav-item:hover {
  background: var(--v2-surface-2);
  color: var(--v2-text);
  text-decoration: none;
}

body.ui-v2 .v2-nav-item.active {
  background: var(--v2-accent-soft);
  color: var(--v2-accent);
  font-weight: 650;
}

body.ui-v2 .v2-nav-item.active::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--v2-accent);
}

body.ui-v2 .v2-nav-icon {
  width: 18px;
  text-align: center;
  font-size: 13.5px;
  flex-shrink: 0;
}

body.ui-v2 .v2-nav-title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.ui-v2 .v2-nav-ext {
  font-size: 10px;
  color: var(--v2-text-faint);
}

body.ui-v2 .v2-nav-badge {
  display: inline-flex;
}

body.ui-v2 .v2-nav-badge img {
  width: 14px !important;
  opacity: 0.5;
}

/* Vom Footer-AJAX eingefuegte Zaehler (buchhaltungskram.js) */
body.ui-v2 .v2-nav-item .badge {
  min-width: 20px;
  padding: 2px 7px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
  text-align: center;
}

body.ui-v2 .v2-nav-item .badge.badge-danger {
  background: var(--v2-danger-soft);
  color: var(--v2-danger);
}

/* Live-Refresh: kurzes Aufblinken, wenn sich ein Zaehler aendert */
body.ui-v2 .v2-nav-item .badge.mz-badge-flash {
  animation: mzBadgeFlash 0.9s ease-out;
}

@keyframes mzBadgeFlash {
  0% {
    transform: scale(1.3);
    background: var(--v2-danger);
    color: #fff;
  }
  100% {
    transform: scale(1);
  }
}

body.ui-v2 .v2-nav-item.v2-filter-miss {
  display: none;
}

body.ui-v2 .v2-nav-group.v2-filter-empty {
  display: none;
}

/* ---------- Sidebar: Footer ---------- */

body.ui-v2 .v2-sidebar-footer {
  padding: 10px 14px;
  border-top: 1px solid var(--v2-border);
  display: grid;
  gap: 2px;
  flex-shrink: 0;
}

body.ui-v2 .v2-sidebar-footer-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 10px;
  border-radius: var(--v2-radius-sm);
  font-size: 12.5px;
  color: var(--v2-text-dim);
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

body.ui-v2 .v2-sidebar-footer-link:hover {
  background: var(--v2-surface-2);
  color: var(--v2-text);
  text-decoration: none;
}

/* ---------- Ladeindikator ---------- */

body.ui-v2 .v2-loading-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v2-text-faint);
  animation: v2pulse 1.2s ease-in-out infinite;
}

@keyframes v2pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.9; }
}

/* ---------- Topbar ---------- */

body.ui-v2 .v2-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: var(--v2-sidebar-w);
  height: var(--v2-topbar-h);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  background: color-mix(in srgb, var(--v2-bg-elev) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--v2-border);
  z-index: 1020;
  transition: left 0.22s ease;
}

body.ui-v2.v2-sidebar-hidden .v2-topbar {
  left: 0;
}

body.ui-v2 .v2-topbar-title {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.2;
}

body.ui-v2 .v2-topbar-title h1 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--v2-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.ui-v2 .v2-topbar-subtitle {
  font-size: 11px;
  color: var(--v2-text-faint);
  white-space: nowrap;
}

body.ui-v2 .v2-topbar-stats {
  display: flex;
  gap: 8px;
  margin-left: 6px;
}

body.ui-v2 .v2-stat {
  padding: 5px 12px;
  background: var(--v2-surface-2);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius-sm);
  line-height: 1.25;
  white-space: nowrap;
}

body.ui-v2 .v2-stat-label {
  display: block;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--v2-text-faint);
}

body.ui-v2 .v2-stat-value {
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

body.ui-v2 .v2-stat-alert {
  border-color: var(--v2-danger);
  background: var(--v2-danger-soft);
}

body.ui-v2 .v2-stat-alert .v2-stat-value {
  color: var(--v2-danger);
}

/* Verlinkte Stat-Box (z.B. Offene Ink Tickets -> mainsupcenter.com) */
body.ui-v2 a.v2-stat {
  color: inherit;
  text-decoration: none;
}

body.ui-v2 a.v2-stat:hover {
  border-color: var(--v2-accent);
  text-decoration: none;
}

body.ui-v2 .v2-search {
  position: relative;
  margin-left: auto;
  width: min(320px, 30vw);
}

body.ui-v2 .v2-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--v2-text-faint);
  pointer-events: none;
}

body.ui-v2 .v2-search input {
  width: 100%;
  height: 36px;
  padding: 0 12px 0 34px;
  font-size: 13px;
  font-family: inherit;
  color: var(--v2-text);
  background: var(--v2-surface-2);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.ui-v2 .v2-search input:focus {
  outline: none;
  border-color: var(--v2-accent);
  box-shadow: 0 0 0 3px var(--v2-accent-soft);
}

body.ui-v2 .v2-search input::placeholder {
  color: var(--v2-text-faint);
}

/* ---------- Topbar: Aktionen ---------- */

body.ui-v2 .v2-topbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

body.ui-v2 .v2-iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  min-width: 36px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: var(--v2-radius-sm);
  background: transparent;
  color: var(--v2-text-dim);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

body.ui-v2 .v2-iconbtn:hover {
  background: var(--v2-surface-2);
  color: var(--v2-text);
  text-decoration: none;
}

/* Theme-Toggle: je nach aktivem Modus nur ein Icon zeigen */
body.ui-v2 .v2-theme-icon-light { display: none; }
body.ui-v2 .v2-theme-icon-dark { display: inline-block; }
body.ui-v2[data-theme="light"] .v2-theme-icon-light { display: inline-block; }
body.ui-v2[data-theme="light"] .v2-theme-icon-dark { display: none; }

body.ui-v2 .v2-company-switch {
  border: 1px solid var(--v2-border);
  background: var(--v2-surface-2);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--v2-text);
}

body.ui-v2 .v2-company-switch-label {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.ui-v2 .v2-chevron {
  font-size: 10px;
  color: var(--v2-text-faint);
  transition: transform 0.15s ease;
}

body.ui-v2 .v2-dropdown.open .v2-chevron {
  transform: rotate(180deg);
}

/* ---------- Dropdown (Shell) ---------- */

body.ui-v2 .v2-dropdown {
  position: relative;
}

body.ui-v2 .v2-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  background: var(--v2-surface);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  box-shadow: var(--v2-shadow-pop);
  z-index: 1040;
  padding: 10px;
}

body.ui-v2 .v2-dropdown.open .v2-dropdown-menu {
  display: block;
}

/* ---------- Portal-Switcher ---------- */

body.ui-v2 .v2-portal-menu {
  min-width: 340px;
  max-width: min(90vw, 1080px);
  max-height: min(72vh, 680px);
  overflow: auto;
  padding: 14px;
}

body.ui-v2 .v2-portal-menu-toggle {
  display: inline-block;
  float: right;
  margin: 0 0 10px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-accent);
  background: var(--v2-accent-soft);
  border-radius: 99px;
  text-decoration: none;
  transition: filter 0.12s ease;
}

body.ui-v2 .v2-portal-menu-toggle:hover {
  text-decoration: none;
  filter: brightness(1.15);
}

body.ui-v2 .v2-portal-columns {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  clear: both;
}

body.ui-v2 .v2-portal-col {
  min-width: 250px;
  flex: 1 1 250px;
}

body.ui-v2 .v2-portal-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 10px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--v2-text);
  border-bottom: 1px solid var(--v2-border);
  margin-bottom: 6px;
}

body.ui-v2 .v2-portal-empty {
  padding: 14px 12px;
  font-size: 12.5px;
  color: var(--v2-text-dim);
  clear: both;
}

body.ui-v2 .v2-art-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v2-text-faint);
}

body.ui-v2 .v2-art-dating .v2-art-dot { background: #f472b6; }
body.ui-v2 .v2-art-astro .v2-art-dot { background: #34d399; }
body.ui-v2 .v2-art-kredit .v2-art-dot { background: #60a5fa; }

body.ui-v2 .v2-portal-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  margin-bottom: 2px;
  border: 1px solid transparent;
  border-radius: var(--v2-radius-sm);
  color: var(--v2-text);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.12s ease, border-color 0.12s ease;
}

body.ui-v2 .v2-portal-item:hover {
  background: var(--v2-surface-2);
  border-color: var(--v2-border);
  color: var(--v2-text);
  text-decoration: none;
}

body.ui-v2 .v2-portal-item-active {
  background: var(--v2-accent-soft);
  color: var(--v2-accent);
  font-weight: 650;
}

body.ui-v2 .v2-portal-item-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.ui-v2 .v2-portal-count {
  min-width: 22px;
  padding: 1px 7px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

body.ui-v2 .v2-portal-count-zero {
  background: var(--v2-surface-3);
  color: var(--v2-text-faint);
}

body.ui-v2 .v2-portal-count-open {
  background: var(--v2-danger-soft);
  color: var(--v2-danger);
}

body.ui-v2 .v2-portal-flag {
  padding: 1px 6px;
  border-radius: 5px;
  background: var(--v2-warning-soft);
  color: var(--v2-warning);
  font-size: 10.5px;
  font-weight: 800;
}

/* ---------- Backdrop (Mobile) ---------- */

body.ui-v2 .v2-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 16, 0.6);
  z-index: 1025;
}

/* ---------- Responsive ---------- */

@media (max-width: 1500px) {
  body.ui-v2 .v2-topbar-stats {
    display: none;
  }
}

@media (max-width: 1280px) {
  body.ui-v2 .v2-company-switch-label {
    display: none;
  }
}

@media (max-width: 1100px) {
  body.ui-v2 .page-body,
  body.ui-v2.v2-sidebar-hidden .page-body {
    margin-left: 0;
  }

  body.ui-v2 .v2-topbar,
  body.ui-v2.v2-sidebar-hidden .v2-topbar {
    left: 0;
  }

  body.ui-v2 .v2-sidebar {
    transform: translateX(-100%);
    box-shadow: var(--v2-shadow-pop);
  }

  body.ui-v2.v2-mobile-nav-open .v2-sidebar {
    transform: translateX(0);
  }

  body.ui-v2.v2-mobile-nav-open .v2-backdrop {
    display: block;
  }

  body.ui-v2 .page-content-wrapper {
    padding: 18px 16px 40px;
  }

  body.ui-v2 .v2-search {
    width: min(220px, 40vw);
  }
}

@media (max-width: 640px) {
  body.ui-v2 .v2-topbar {
    gap: 8px;
    padding: 0 12px;
  }

  body.ui-v2 .v2-topbar-subtitle {
    display: none;
  }

  /* Suche ausblenden, damit der Seitentitel Platz behaelt */
  body.ui-v2 .v2-search {
    display: none;
  }

  body.ui-v2 .v2-topbar-actions {
    margin-left: auto;
  }

  /* Dropdowns (Portal-Switcher) als vollbreites Overlay unter dem Topbar */
  body.ui-v2 .v2-dropdown-menu {
    position: fixed;
    left: 10px;
    right: 10px;
    top: calc(var(--v2-topbar-h) + 6px);
    min-width: 0;
    max-width: none;
  }

  body.ui-v2 .v2-portal-columns {
    flex-wrap: wrap;
  }

  body.ui-v2 .v2-portal-col {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  /* kram.css erzwingt hier klassisches Dunkelgrau per !important -
     fuer V2 auf Theme-Tokens zuruecksetzen */
  body.ui-v2 .page-body,
  body.ui-v2 .page-content-wrapper {
    background: var(--v2-bg) !important;
  }

  body.ui-v2 .page-body {
    padding-bottom: 24px;
  }
}

@media print {
  body.ui-v2 .v2-sidebar,
  body.ui-v2 .v2-topbar,
  body.ui-v2 .v2-backdrop {
    display: none !important;
  }

  body.ui-v2 .page-body {
    margin: 0;
    padding: 0;
  }
}
