:root {
  --ndwh-surface: #ffffff;
  --ndwh-bg: #f5f7fb;
  --ndwh-border: #e2e8f0;
  --ndwh-primary: #2563eb;
  --ndwh-primary-soft: rgba(37, 99, 235, 0.08);
  --ndwh-ink: #0f172a;
  --ndwh-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

body.ndwh-jet-admin .help-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

body.ndwh-jet-admin .help-index {
  display: grid;
  gap: .65rem;
  padding: 1rem;
}

body.ndwh-jet-admin .help-index h2 {
  margin: 0 0 .25rem;
  font-size: 1rem;
}

body.ndwh-jet-admin .help-doc-link,
body.ndwh-jet-admin .help-doc-card {
  display: grid;
  gap: .25rem;
  padding: .75rem .85rem;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: #fff;
}

body.ndwh-jet-admin .help-doc-link:hover,
body.ndwh-jet-admin .help-doc-card:hover,
body.ndwh-jet-admin .help-doc-link.active {
  border-color: rgba(37, 99, 235, .35);
  background: #eff6ff;
}

body.ndwh-jet-admin .help-doc-link span,
body.ndwh-jet-admin .help-doc-card strong {
  font-weight: 700;
}

body.ndwh-jet-admin .help-doc-link small,
body.ndwh-jet-admin .help-doc-card span,
body.ndwh-jet-admin .help-content-head p {
  color: #64748b;
}

body.ndwh-jet-admin .help-content {
  padding: 1.25rem;
}

body.ndwh-jet-admin .help-content-head {
  display: grid;
  gap: .35rem;
  margin-bottom: 1rem;
}

body.ndwh-jet-admin .help-content-head h2 {
  margin: 0;
  font-size: 1.35rem;
}

body.ndwh-jet-admin .help-markdown {
  display: grid;
  gap: .75rem;
  line-height: 1.65;
}

body.ndwh-jet-admin .help-markdown h2,
body.ndwh-jet-admin .help-markdown h3,
body.ndwh-jet-admin .help-markdown h4,
body.ndwh-jet-admin .help-markdown h5 {
  margin: .65rem 0 0;
}

body.ndwh-jet-admin .help-markdown p,
body.ndwh-jet-admin .help-markdown ul {
  margin: 0;
}

body.ndwh-jet-admin .help-markdown code,
body.ndwh-jet-admin .help-markdown pre {
  border-radius: 6px;
  background: #f1f5f9;
}

body.ndwh-jet-admin .help-markdown code {
  padding: .1rem .3rem;
}

body.ndwh-jet-admin .help-markdown pre {
  overflow: auto;
  padding: .85rem;
}

body.ndwh-jet-admin .help-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

body.ndwh-jet-admin .ndwh-help-launcher {
  position: fixed;
  right: 1.25rem;
  bottom: 6rem;
  z-index: 1060;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid var(--ndwh-float-border, rgba(226, 232, 240, .94));
  border-radius: 999px;
  padding: .8rem 1rem;
  background: var(--ndwh-float-bg, #fff);
  color: var(--ndwh-float-label, #1f2a44);
  box-shadow: var(--ndwh-float-shadow, 0 22px 44px rgba(15, 23, 42, .14));
  font-weight: 800;
}

body.ndwh-jet-admin .ndwh-help-launcher .ki-duotone {
  color: #1b84ff;
}

body.ndwh-jet-admin .ndwh-help-panel {
  position: fixed;
  top: 5.5rem;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(720px, calc(100vw - 2rem));
  z-index: 1070;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid var(--ndwh-panel-border, rgba(226, 232, 240, .96));
  border-radius: 1.25rem;
  background: var(--ndwh-panel-bg, rgba(255, 255, 255, .96));
  box-shadow: 0 28px 70px rgba(15, 23, 42, .22);
  overflow: hidden;
  transform: translateX(calc(100% + 2rem));
  opacity: 0;
  pointer-events: none;
  transition: transform .2s ease, opacity .2s ease;
}

body.ndwh-help-open .ndwh-help-panel {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

body.ndwh-jet-admin .ndwh-help-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--ndwh-divider, #e2e8f0);
}

body.ndwh-jet-admin .ndwh-help-panel__head span {
  display: block;
  color: var(--ndwh-muted, #64748b);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .ndwh-help-panel__head strong {
  display: block;
  color: var(--ndwh-shell-ink, #0f172a);
  font-size: 1rem;
}

body.ndwh-jet-admin .ndwh-help-panel__head button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ndwh-divider, #e2e8f0);
  border-radius: 999px;
  background: var(--ndwh-input-bg, #f8fafc);
  color: var(--ndwh-shell-ink, #0f172a);
  font-size: 1.35rem;
  line-height: 1;
}

body.ndwh-jet-admin .ndwh-help-panel__body {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 0;
}

body.ndwh-jet-admin .ndwh-help-panel__nav {
  display: grid;
  align-content: start;
  gap: .5rem;
  padding: .85rem;
  overflow: auto;
  border-right: 1px solid var(--ndwh-divider, #e2e8f0);
}

body.ndwh-jet-admin .ndwh-help-panel__doc {
  display: grid;
  gap: .2rem;
  width: 100%;
  border: 1px solid transparent;
  border-radius: .75rem;
  padding: .65rem .7rem;
  background: transparent;
  color: inherit;
  text-align: left;
}

body.ndwh-jet-admin .ndwh-help-panel__doc:hover,
body.ndwh-jet-admin .ndwh-help-panel__doc.active {
  border-color: rgba(27, 132, 255, .28);
  background: rgba(27, 132, 255, .08);
}

body.ndwh-jet-admin .ndwh-help-panel__doc span {
  font-weight: 800;
  line-height: 1.25;
}

body.ndwh-jet-admin .ndwh-help-panel__doc small {
  color: var(--ndwh-muted, #64748b);
}

body.ndwh-jet-admin .ndwh-help-panel__content {
  min-width: 0;
  overflow: auto;
  padding: 1rem 1.15rem 1.5rem;
}

body.ndwh-jet-admin .ndwh-help-panel__content .help-markdown,
body.ndwh-jet-admin .ndwh-help-panel__content {
  line-height: 1.6;
}

body.ndwh-jet-admin .ndwh-help-panel__content h2,
body.ndwh-jet-admin .ndwh-help-panel__content h3,
body.ndwh-jet-admin .ndwh-help-panel__content h4,
body.ndwh-jet-admin .ndwh-help-panel__content h5 {
  margin: .75rem 0 .45rem;
}

body.ndwh-jet-admin .ndwh-help-panel__content p,
body.ndwh-jet-admin .ndwh-help-panel__content ul {
  margin: 0 0 .75rem;
}

body.ndwh-jet-admin .ndwh-help-panel__content a {
  color: #1b84ff;
  font-weight: 700;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .help-doc-link,
html[data-bs-theme="dark"] body.ndwh-jet-admin .help-doc-card {
  background: #111827;
  border-color: rgba(148, 163, 184, .22);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .help-doc-link:hover,
html[data-bs-theme="dark"] body.ndwh-jet-admin .help-doc-card:hover,
html[data-bs-theme="dark"] body.ndwh-jet-admin .help-doc-link.active {
  background: #172554;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .help-markdown code,
html[data-bs-theme="dark"] body.ndwh-jet-admin .help-markdown pre {
  background: #0f172a;
}

@media (max-width: 991px) {
  body.ndwh-jet-admin .help-layout {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .ndwh-help-panel {
    top: 4.25rem;
    right: .75rem;
    bottom: .75rem;
    width: calc(100vw - 1.5rem);
  }

  body.ndwh-jet-admin .ndwh-help-panel__body {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .ndwh-help-panel__nav {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ndwh-divider, #e2e8f0);
  }

  body.ndwh-jet-admin .ndwh-help-panel__doc {
    min-width: 180px;
  }

  body.ndwh-jet-admin .ndwh-help-launcher {
    right: 1rem;
    bottom: 5.25rem;
  }
}

body.ndwh-jet-admin {
  background-attachment: fixed;
}

body.ndwh-jet-admin::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.14), transparent 24%),
    url("/theme-assets/assets/media/misc/pattern-1.jpg") center/cover no-repeat;
  opacity: 0.11;
  mix-blend-mode: multiply;
}

body.ndwh-jet-admin .app-root,
body.ndwh-jet-admin .d-flex.flex-column.flex-root,
body.ndwh-jet-admin .app-container,
body.ndwh-jet-admin .app-sidebar,
body.ndwh-jet-admin .app-main {
  position: relative;
  z-index: 1;
}

body.ndwh-jet-admin .app-wrapper {
  min-height: 100vh;
}

body.ndwh-jet-admin .app-main {
  min-height: 100vh;
  min-width: 0;
  transition: margin-left .24s ease, width .24s ease;
}

body.ndwh-jet-admin .ndwh-sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 109;
  border: 0;
  padding: 0;
  background: rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

body.ndwh-jet-admin.ndwh-sidebar-open .ndwh-sidebar-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.ndwh-jet-admin .ndwh-sidebar-close {
  appearance: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.ndwh-jet-admin .ndwh-sidebar-close:hover,
body.ndwh-jet-admin .ndwh-sidebar-close:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  border-color: rgba(27, 132, 255, 0.28);
}

body.ndwh-jet-admin .ndwh-sidebar-close span {
  font-size: 1.5rem;
  line-height: 1;
}

body.ndwh-jet-admin .ndwh-toolbar-burger {
  appearance: none;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.82);
  color: #1f2a44;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.ndwh-jet-admin .ndwh-toolbar-burger:hover,
body.ndwh-jet-admin .ndwh-toolbar-burger:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  border-color: rgba(27, 132, 255, 0.28);
}

@media (min-width: 1200px) {
  body.ndwh-jet-admin .app-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 295px;
    min-width: 295px;
    z-index: 101;
    display: flex;
  }

  body.ndwh-jet-admin .app-sidebar-menu {
    min-height: 0;
    overflow: hidden;
  }

  body.ndwh-jet-admin .app-main {
    margin-left: 295px;
    width: calc(100% - 295px);
  }

  body.ndwh-jet-admin .ndwh-sidebar-overlay,
  body.ndwh-jet-admin .ndwh-sidebar-close {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  body.ndwh-jet-admin {
    overflow-x: hidden;
  }

  body.ndwh-jet-admin.ndwh-sidebar-open {
    overflow: hidden;
  }

  body.ndwh-jet-admin .app-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, calc(100vw - 1.25rem));
    min-width: 0;
    max-width: calc(100vw - 1.25rem);
    z-index: 120;
    display: flex;
    border-right: 1px solid var(--ndwh-sidebar-border);
    border-radius: 0 1.75rem 1.75rem 0;
    overflow: hidden;
    transform: translate3d(calc(-100% - 1.5rem), 0, 0);
    transition: transform .24s ease, box-shadow .24s ease;
    box-shadow: none;
  }

  body.ndwh-jet-admin.ndwh-sidebar-open .app-sidebar {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 30px 58px rgba(15, 23, 42, 0.22);
  }

  body.ndwh-jet-admin .app-sidebar-logo {
    position: relative;
    padding-right: 5rem !important;
  }

  body.ndwh-jet-admin .app-sidebar-menu {
    min-height: 0;
  }

  body.ndwh-jet-admin .app-sidebar-wrapper {
    padding-bottom: 1rem;
  }

  body.ndwh-jet-admin .app-main {
    margin-left: 0;
    width: 100%;
  }

  body.ndwh-jet-admin .app-toolbar {
    padding-top: calc(1.1rem + env(safe-area-inset-top, 0px));
  }

  body.ndwh-jet-admin .ndwh-toolbar-panel {
    padding-left: calc(1.15rem + 56px + 1rem);
  }

  body.ndwh-jet-admin .ndwh-toolbar-burger {
    position: fixed;
    top: calc(1.1rem + env(safe-area-inset-top, 0px));
    left: max(1rem, env(safe-area-inset-left, 0px));
    z-index: 150;
  }

  body.ndwh-jet-admin.ndwh-sidebar-open .ndwh-toolbar-burger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

body.ndwh-jet-admin .app-sidebar .menu-link {
  min-height: 52px;
}

body.ndwh-jet-admin .app-sidebar .ndwh-sidebar-menu-section {
  padding-top: 1rem;
}

body.ndwh-jet-admin .app-sidebar .ndwh-sidebar-menu-section:first-of-type {
  padding-top: 0.35rem;
}

body.ndwh-jet-admin .app-sidebar .menu-content {
  padding: 0.55rem 1rem 0.35rem;
}

body.ndwh-jet-admin .app-sidebar .menu-heading {
  color: var(--ndwh-sidebar-subtitle-color);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0.82;
}

body.ndwh-jet-admin .app-sidebar .menu-link .menu-title {
  color: var(--ndwh-sidebar-link);
  opacity: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color .18s ease;
}

body.ndwh-jet-admin .app-sidebar .menu-link .menu-icon,
body.ndwh-jet-admin .app-sidebar .menu-link .menu-icon .ki-duotone {
  color: var(--ndwh-sidebar-link-icon);
  opacity: 1;
  transition: color .18s ease, opacity .18s ease;
}

body.ndwh-jet-admin .app-sidebar .menu-link.active .menu-title,
body.ndwh-jet-admin .app-sidebar .menu-link:hover .menu-title {
  color: #fff;
}

body.ndwh-jet-admin .app-sidebar .menu-link.active .menu-icon,
body.ndwh-jet-admin .app-sidebar .menu-link.active .menu-icon .ki-duotone,
body.ndwh-jet-admin .app-sidebar .menu-link:hover .menu-icon,
body.ndwh-jet-admin .app-sidebar .menu-link:hover .menu-icon .ki-duotone {
  color: currentColor;
}

body.ndwh-jet-admin .ndwh-sidebar-brand {
  min-height: 60px;
  align-items: center;
}

body.ndwh-jet-admin .ndwh-sidebar-brand__copy {
  gap: 0.18rem;
}

body.ndwh-jet-admin .ndwh-sidebar-title {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

body.ndwh-jet-admin .ndwh-sidebar-subtitle {
  display: block;
  max-width: 12rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

body.ndwh-jet-admin .ndwh-sidebar-card--compact {
  border-radius: 1.5rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

body.ndwh-jet-admin .ndwh-sidebar-card--compact .card-body {
  padding: 1rem !important;
}

body.ndwh-jet-admin .ndwh-sidebar-card--compact .symbol-label {
  border-radius: 1rem;
}

body.ndwh-jet-admin .ndwh-sidebar-user {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body.ndwh-jet-admin .ndwh-sidebar-role {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  line-height: 1.2;
}

body.ndwh-jet-admin .ndwh-context-sidebar {
  margin-bottom: 1rem;
}

body.ndwh-jet-admin .ndwh-context-chip,
body.ndwh-jet-admin .ndwh-context-switcher {
  width: 100%;
  min-width: 220px;
  border: 1px solid var(--ndwh-panel-border);
  background: var(--ndwh-input-bg);
  border-radius: 1rem;
  padding: 0.75rem 0.85rem;
}

body.ndwh-jet-admin .ndwh-context-chip__label,
body.ndwh-jet-admin .ndwh-context-switcher label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ndwh-muted);
  font-weight: 700;
}

body.ndwh-jet-admin .ndwh-context-chip__value {
  display: block;
  color: var(--ndwh-toolbar-user);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body.ndwh-jet-admin .ndwh-context-switcher__row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

body.ndwh-jet-admin .ndwh-context-switcher select {
  min-width: 0;
  height: 34px;
  padding: 0.25rem 0.55rem;
  border-radius: 0.7rem;
  font-size: 0.82rem;
}

body.ndwh-jet-admin .ndwh-context-switcher button {
  flex: 0 0 auto;
}

body.ndwh-jet-admin .ndwh-toolbar-context {
  width: min(100%, 360px);
}

body.ndwh-jet-admin .ndwh-toolbar-context .ndwh-context-chip,
body.ndwh-jet-admin .ndwh-toolbar-context .ndwh-context-switcher {
  min-width: 240px;
  padding: 0.55rem 0.65rem;
  border-radius: 0.9rem;
}

body.ndwh-jet-admin .ndwh-toolbar-context .ndwh-context-switcher__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

body.ndwh-jet-admin .ndwh-scope-context-bar {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 1rem;
  align-items: end;
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--ndwh-panel-border);
  border-radius: 1.2rem;
  background: var(--ndwh-toolbar-bg);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

body.ndwh-jet-admin .ndwh-scope-context-bar__summary {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

body.ndwh-jet-admin .ndwh-scope-context-bar__summary span,
body.ndwh-jet-admin .ndwh-scope-context-bar__field span {
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ndwh-muted);
  font-weight: 700;
}

body.ndwh-jet-admin .ndwh-scope-context-bar__summary strong {
  color: var(--ndwh-toolbar-user);
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

body.ndwh-jet-admin .ndwh-scope-context-bar__fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
  align-items: end;
}

body.ndwh-jet-admin .ndwh-scope-context-bar__field {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

body.ndwh-jet-admin .ndwh-scope-context-bar__field select {
  min-height: 38px;
  border-radius: 0.75rem;
  font-size: 0.86rem;
}

body.ndwh-jet-admin .ndwh-scope-context-bar__field select:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}

body.ndwh-jet-admin .ndwh-scope-context-bar button {
  align-self: end;
  min-height: 38px;
}

body.ndwh-jet-admin .scope-config-tabs-wrap {
  margin: 0 0 1rem;
  border-bottom: 1px solid var(--ndwh-divider);
}

body.ndwh-jet-admin .scope-config-tabs {
  gap: 0.35rem;
  padding: 0 0.25rem;
  scrollbar-width: thin;
}

body.ndwh-jet-admin .scope-config-tabs .nav-link {
  min-height: 42px;
  white-space: nowrap;
  font-weight: 800;
  color: var(--ndwh-muted);
}

body.ndwh-jet-admin .scope-config-tabs .nav-link.active {
  color: var(--bs-primary);
}

body.ndwh-jet-admin .scope-config-tab-content {
  min-width: 0;
}

body.ndwh-jet-admin .scope-config-tab-content .tab-pane > .card,
body.ndwh-jet-admin .scope-config-tab-content .tab-pane > .inline-actions,
body.ndwh-jet-admin .scope-config-section-stack {
  margin: 0 0 1rem;
}

body.ndwh-jet-admin .scope-channel-webhooks {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ndwh-divider);
}

body.ndwh-jet-admin .scope-health-details summary {
  cursor: pointer;
  color: var(--bs-primary);
  font-weight: 700;
}

body.ndwh-jet-admin .scope-health-details[open] summary {
  margin-bottom: 0.5rem;
}

body.ndwh-jet-admin .conversation-diagnostics-tabs-wrap,
body.ndwh-jet-admin .conversation-diagnostics-channel-tabs-wrap {
  margin-bottom: 1.1rem;
}

body.ndwh-jet-admin .conversation-diagnostics-tab-content,
body.ndwh-jet-admin .conversation-diagnostics-channel-tab-content {
  min-width: 0;
}

body.ndwh-jet-admin .conversation-diagnostics-table-shell {
  width: 100%;
  overflow-x: auto;
}

body.ndwh-jet-admin .conversation-diagnostics-timeline {
  display: grid;
  gap: 0.25rem;
}

body.ndwh-jet-admin .operational-tabs-page,
body.ndwh-jet-admin form.operational-tabs-page {
  min-width: 0;
}

body.ndwh-jet-admin .operational-tabs-wrap {
  margin: 0 0 1.1rem;
}

body.ndwh-jet-admin .operational-tab-content {
  min-width: 0;
}

body.ndwh-jet-admin .operational-tab-content > .tab-pane > .card,
body.ndwh-jet-admin .operational-tab-content > .tab-pane > section,
body.ndwh-jet-admin .operational-tab-content > .tab-pane > .row-grid,
body.ndwh-jet-admin .operational-tab-content > .tab-pane > .dashboard-lists-grid,
body.ndwh-jet-admin .operational-tab-content > .tab-pane > .dashboard-feature-stack,
body.ndwh-jet-admin .operational-tab-content > .tab-pane > .metrics-grid,
body.ndwh-jet-admin .operational-tab-content > .tab-pane > .logs-viewer-grid,
body.ndwh-jet-admin .operational-tab-content > .tab-pane > form {
  margin-top: 0;
}

body.ndwh-jet-admin .operational-tab-content > .tab-pane > .row-grid,
body.ndwh-jet-admin .operational-tab-content > .tab-pane > .grid,
body.ndwh-jet-admin .operational-tab-content > .tab-pane > .dashboard-lists-grid,
body.ndwh-jet-admin .operational-tab-content > .tab-pane > .metrics-grid {
  width: 100%;
}

@media (max-width: 991px) {
  body.ndwh-jet-admin .ndwh-scope-context-bar {
    grid-template-columns: 1fr;
  }
}

body.ndwh-jet-admin .ndwh-sidebar-status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #17c653;
  box-shadow: 0 0 0 4px rgba(23, 198, 83, 0.12);
}

body.ndwh-jet-admin .ndwh-sidebar-logout {
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 0.95rem;
}

body.ndwh-jet-admin .ndwh-sidebar-logout .ki-duotone {
  font-size: 1rem !important;
}

html[data-bs-theme="light"] body.ndwh-jet-admin .app-sidebar {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,255,.98)),
    url("/theme-assets/assets/media/misc/menu-header-bg.jpg") center bottom/cover no-repeat;
}

html[data-bs-theme="light"] body.ndwh-jet-admin .app-sidebar .menu-link:hover .menu-title,
html[data-bs-theme="light"] body.ndwh-jet-admin .app-sidebar .menu-link:hover .menu-icon {
  color: var(--ndwh-sidebar-link-hover);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .app-sidebar {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.98)),
    url("/theme-assets/assets/media/misc/menu-header-dark.png") center bottom/cover no-repeat;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .ndwh-sidebar-card--compact {
  box-shadow: 0 20px 38px rgba(2, 6, 23, 0.26);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .ndwh-sidebar-status-dot {
  box-shadow: 0 0 0 4px rgba(23, 198, 83, 0.18);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .ndwh-sidebar-close,
html[data-bs-theme="dark"] body.ndwh-jet-admin .ndwh-toolbar-burger {
  background: rgba(8, 15, 29, 0.92);
  color: #e2e8f0;
  border-color: rgba(71, 85, 105, 0.72);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.24);
}

body.ndwh-jet-admin .ndwh-toolbar-panel {
  background-image: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.68));
}

body.ndwh-jet-admin .ndwh-page-surface {
  padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
}

body.ndwh-jet-admin .ndwh-page-surface > *:last-child {
  margin-bottom: 0;
}

body.ndwh-jet-admin .table-responsive {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 1.35rem;
  padding: 0.45rem 1.15rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
  overflow: auto;
}

body.ndwh-jet-admin table.table {
  margin-bottom: 0;
}

body.ndwh-jet-admin table.table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  border-bottom-style: dashed;
}

body.ndwh-jet-admin table.table tbody td {
  color: #334155;
}

body.ndwh-jet-admin table.table thead th:first-child,
body.ndwh-jet-admin table.table tbody td:first-child {
  padding-left: 1rem;
}

body.ndwh-jet-admin table.table thead th:last-child,
body.ndwh-jet-admin table.table tbody td:last-child {
  padding-right: 1rem;
}

body.ndwh-jet-admin .btn {
  min-height: 42px;
  padding: 0.72rem 1.05rem;
  border-radius: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

body.ndwh-jet-admin .btn:hover:not(:disabled),
body.ndwh-jet-admin .btn:focus-visible:not(:disabled) {
  transform: translateY(-1px);
}

body.ndwh-jet-admin .btn.btn-primary {
  background: linear-gradient(135deg, #1b84ff, #0d6efd);
  border-color: rgba(27,132,255,.35);
  box-shadow: 0 16px 30px rgba(27, 132, 255, 0.24);
}

body.ndwh-jet-admin .btn.btn-primary:hover:not(:disabled),
body.ndwh-jet-admin .btn.btn-primary:focus-visible:not(:disabled) {
  box-shadow: 0 18px 34px rgba(27, 132, 255, 0.3);
}

body.ndwh-jet-admin .btn.btn-light-primary,
body.ndwh-jet-admin .btn.btn-light-danger,
body.ndwh-jet-admin .btn.btn-light {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 10px 24px rgba(15,23,42,.06);
}

body.ndwh-jet-admin .btn.btn-light-primary {
  color: #1b84ff;
  border-color: rgba(27,132,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,246,255,.94));
}

body.ndwh-jet-admin .btn.btn-light-danger {
  color: #f1416c;
  border-color: rgba(241,65,108,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,241,242,.94));
}

body.ndwh-jet-admin .btn.btn-light {
  color: #334155;
  border-color: rgba(148,163,184,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.94));
}

body.ndwh-jet-admin .btn:disabled,
body.ndwh-jet-admin .btn.disabled {
  opacity: 0.58;
  transform: none !important;
  box-shadow: none;
}

body.ndwh-jet-admin .form-control,
body.ndwh-jet-admin .form-select {
  border-radius: 1rem;
  border-color: rgba(203, 213, 225, 0.96);
  background-color: rgba(248, 250, 252, 0.96);
}

body.ndwh-jet-admin textarea.form-control {
  min-height: 320px;
}

body.ndwh-jet-admin .form-control:focus,
body.ndwh-jet-admin .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.55);
}

body.ndwh-jet-admin .section-head {
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(203, 213, 225, 0.9);
}

body.ndwh-jet-admin .section-head--subtle {
  margin-top: 1.25rem;
}

body.ndwh-jet-admin .links a,
body.ndwh-jet-admin .inline-actions a,
body.ndwh-jet-admin .inline-actions button {
  white-space: nowrap;
}

body.ndwh-jet-admin .status-card,
body.ndwh-jet-admin .structured-entry,
body.ndwh-jet-admin .qr-frame {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), var(--ndwh-shadow);
}

body.ndwh-jet-admin .structured-entry__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.9rem;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.92);
}

body.ndwh-jet-admin .structured-entry__toggle label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-weight: 700;
  color: var(--ndwh-ink);
}

body.ndwh-jet-admin .metric,
body.ndwh-jet-admin .status-card,
body.ndwh-jet-admin .structured-entry {
  height: 100%;
}

body.ndwh-jet-admin .metric h3,
body.ndwh-jet-admin .status-card h3,
body.ndwh-jet-admin .card h2,
body.ndwh-jet-admin .card h3 {
  color: var(--ndwh-ink);
}

body.ndwh-jet-admin .mono {
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 0.9rem;
  padding: 0.55rem 0.75rem;
}

body.ndwh-jet-admin .contacts-page .metric span {
  max-width: 12rem;
  line-height: 1.5;
}

body.ndwh-jet-admin .contacts-filters-card,
body.ndwh-jet-admin .contacts-table-card {
  padding: 1.55rem 1.75rem 1.45rem;
}

body.ndwh-jet-admin .contacts-filters-card .section-head p,
body.ndwh-jet-admin .contacts-table-card .section-head p {
  max-width: 44rem;
  line-height: 1.55;
}

body.ndwh-jet-admin .contacts-filters-card .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: start;
}

body.ndwh-jet-admin .contacts-filters-card .section-head > div:first-child,
body.ndwh-jet-admin .contacts-table-card .section-head > div:first-child {
  padding-left: 0.15rem;
}

body.ndwh-jet-admin .contacts-filters-card .inline-actions {
  justify-content: flex-end;
  align-content: start;
}

body.ndwh-jet-admin .contacts-filters-card .inline-actions a,
body.ndwh-jet-admin .contacts-filters-card .inline-actions button,
body.ndwh-jet-admin .contacts-form-actions a,
body.ndwh-jet-admin .contacts-form-actions button {
  min-height: 40px;
  padding: 0.58rem 0.95rem;
  border-radius: 0.9rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.1;
}

body.ndwh-jet-admin .contacts-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.82fr));
  gap: 0.9rem 1rem;
  align-items: end;
}

body.ndwh-jet-admin .contacts-inline-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0;
}

body.ndwh-jet-admin .contacts-inline-form label span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

body.ndwh-jet-admin .contacts-inline-form input,
body.ndwh-jet-admin .contacts-inline-form select {
  min-height: 50px;
  padding-inline: 1rem;
}

body.ndwh-jet-admin .contacts-form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 0.15rem;
}

body.ndwh-jet-admin .contacts-summary {
  max-width: 36rem;
}

body.ndwh-jet-admin .contacts-table-shell {
  margin-top: 0.35rem;
  padding: 0.55rem 1.35rem;
}

body.ndwh-jet-admin .contacts-table-shell table {
  min-width: 860px;
}

body.ndwh-jet-admin .contacts-table-shell thead th {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
}

body.ndwh-jet-admin .contacts-table-shell tbody td {
  vertical-align: middle;
  font-size: 0.95rem;
  line-height: 1.55;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

body.ndwh-jet-admin .contacts-table-shell .mono {
  white-space: nowrap;
  padding: 0.45rem 0.6rem;
  font-size: 0.79rem;
}

body.ndwh-jet-admin .contacts-source-copy {
  display: inline-block;
  max-width: 13rem;
  white-space: normal;
  color: #475569;
  line-height: 1.55;
}

body.ndwh-jet-admin .blocked-create-card,
body.ndwh-jet-admin .blocked-filters-card,
body.ndwh-jet-admin .blocked-table-card {
  padding: 1.55rem 1.75rem 1.45rem;
}

body.ndwh-jet-admin .blocked-create-card .section-head p,
body.ndwh-jet-admin .blocked-filters-card .section-head p,
body.ndwh-jet-admin .blocked-table-card .section-head p {
  max-width: 44rem;
  line-height: 1.55;
}

body.ndwh-jet-admin .blocked-create-card .section-head > div:first-child,
body.ndwh-jet-admin .blocked-filters-card .section-head > div:first-child,
body.ndwh-jet-admin .blocked-table-card .section-head > div:first-child {
  padding-left: 0.15rem;
}

body.ndwh-jet-admin .blocked-create-form label,
body.ndwh-jet-admin .blocked-inline-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0;
}

body.ndwh-jet-admin .blocked-create-form label span,
body.ndwh-jet-admin .blocked-inline-form label span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

body.ndwh-jet-admin .blocked-create-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

body.ndwh-jet-admin .blocked-create-form input,
body.ndwh-jet-admin .blocked-create-form select,
body.ndwh-jet-admin .blocked-inline-form input,
body.ndwh-jet-admin .blocked-inline-form select {
  min-height: 50px;
  padding-inline: 1rem;
}

body.ndwh-jet-admin .blocked-create-actions,
body.ndwh-jet-admin .blocked-form-actions {
  display: flex;
  gap: 0.75rem;
}

body.ndwh-jet-admin .blocked-create-actions {
  justify-content: flex-end;
}

body.ndwh-jet-admin .blocked-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 0.9fr));
  gap: 0.9rem 1rem;
  align-items: end;
}

body.ndwh-jet-admin .blocked-form-actions {
  grid-column: 1 / -1;
  justify-content: flex-end;
  padding-top: 0.15rem;
}

body.ndwh-jet-admin .blocked-create-actions a,
body.ndwh-jet-admin .blocked-create-actions button,
body.ndwh-jet-admin .blocked-form-actions a,
body.ndwh-jet-admin .blocked-form-actions button,
body.ndwh-jet-admin .blocked-table-action button {
  min-height: 40px;
  padding: 0.58rem 0.95rem;
  border-radius: 0.9rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.1;
}

body.ndwh-jet-admin .blocked-table-shell {
  margin-top: 0.35rem;
  padding: 0.55rem 1.35rem;
}

body.ndwh-jet-admin .blocked-table-shell table {
  min-width: 920px;
}

body.ndwh-jet-admin .blocked-table-shell thead th {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
}

body.ndwh-jet-admin .blocked-table-shell tbody td {
  vertical-align: middle;
  font-size: 0.95rem;
  line-height: 1.55;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

body.ndwh-jet-admin .blocked-table-shell .mono {
  white-space: nowrap;
  padding: 0.45rem 0.6rem;
  font-size: 0.79rem;
}

body.ndwh-jet-admin .blocked-cell-copy {
  display: inline-block;
  max-width: 13rem;
  white-space: normal;
  color: #475569;
  line-height: 1.55;
}

body.ndwh-jet-admin .abuse-page .metric span {
  max-width: 12.5rem;
  line-height: 1.5;
}

body.ndwh-jet-admin .abuse-active-card,
body.ndwh-jet-admin .abuse-history-card {
  padding: 1.55rem 1.75rem 1.45rem;
}

body.ndwh-jet-admin .abuse-active-card .section-head p,
body.ndwh-jet-admin .abuse-history-card .section-head p {
  max-width: 44rem;
  line-height: 1.55;
}

body.ndwh-jet-admin .abuse-active-card .section-head > div:first-child,
body.ndwh-jet-admin .abuse-history-card .section-head > div:first-child {
  padding-left: 0.15rem;
}

body.ndwh-jet-admin .abuse-table-action button {
  min-height: 40px;
  padding: 0.58rem 0.95rem;
  border-radius: 0.9rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.1;
}

body.ndwh-jet-admin .abuse-table-shell {
  margin-top: 0.35rem;
  padding: 0.55rem 1.35rem;
}

body.ndwh-jet-admin .abuse-table-shell table {
  min-width: 980px;
}

body.ndwh-jet-admin .abuse-table-shell thead th {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
}

body.ndwh-jet-admin .abuse-table-shell tbody td {
  vertical-align: middle;
  font-size: 0.95rem;
  line-height: 1.55;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

body.ndwh-jet-admin .abuse-table-shell .mono {
  white-space: nowrap;
  padding: 0.45rem 0.6rem;
  font-size: 0.79rem;
}

body.ndwh-jet-admin .abuse-cell-copy {
  display: inline-block;
  max-width: 13rem;
  white-space: normal;
  color: #475569;
  line-height: 1.55;
}

body.ndwh-jet-admin .knowledge-page .metric span {
  max-width: 12.5rem;
  line-height: 1.5;
}

body.ndwh-jet-admin .knowledge-filters-card,
body.ndwh-jet-admin .knowledge-breakdown-card,
body.ndwh-jet-admin .knowledge-candidates-card,
body.ndwh-jet-admin .knowledge-entries-card {
  padding: 1.55rem 1.75rem 1.45rem;
}

body.ndwh-jet-admin .knowledge-filters-card .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: start;
}

body.ndwh-jet-admin .knowledge-filters-card .section-head p,
body.ndwh-jet-admin .knowledge-breakdown-card .section-head p,
body.ndwh-jet-admin .knowledge-candidates-card .section-head p,
body.ndwh-jet-admin .knowledge-entries-card .section-head p {
  max-width: 44rem;
  line-height: 1.55;
}

body.ndwh-jet-admin .knowledge-filters-card .section-head > div:first-child,
body.ndwh-jet-admin .knowledge-breakdown-card .section-head > div:first-child,
body.ndwh-jet-admin .knowledge-candidates-card .section-head > div:first-child,
body.ndwh-jet-admin .knowledge-entries-card .section-head > div:first-child {
  padding-left: 0.15rem;
}

body.ndwh-jet-admin .knowledge-header-actions {
  justify-content: flex-end;
  align-content: start;
}

body.ndwh-jet-admin .knowledge-header-actions a,
body.ndwh-jet-admin .knowledge-header-actions button,
body.ndwh-jet-admin .knowledge-form-actions button {
  min-height: 40px;
  padding: 0.58rem 0.95rem;
  border-radius: 0.9rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.1;
}

body.ndwh-jet-admin .knowledge-filter-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  align-items: end;
}

body.ndwh-jet-admin .knowledge-filter-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0;
}

body.ndwh-jet-admin .knowledge-filter-form label span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

body.ndwh-jet-admin .knowledge-filter-form input,
body.ndwh-jet-admin .knowledge-filter-form select {
  min-height: 50px;
  padding-inline: 1rem;
}

body.ndwh-jet-admin .knowledge-form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 0.15rem;
}

body.ndwh-jet-admin .knowledge-table-shell {
  margin-top: 0.35rem;
  padding: 0.55rem 1.35rem;
}

body.ndwh-jet-admin .knowledge-table-shell table {
  min-width: 760px;
}

body.ndwh-jet-admin .knowledge-table-shell thead th {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
}

body.ndwh-jet-admin .knowledge-table-shell tbody td {
  vertical-align: middle;
  font-size: 0.95rem;
  line-height: 1.55;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

body.ndwh-jet-admin .knowledge-cell-copy {
  display: inline-block;
  max-width: 16rem;
  white-space: normal;
  color: #475569;
  line-height: 1.55;
}

body.ndwh-jet-admin .support-page .metric span {
  max-width: 12.5rem;
  line-height: 1.5;
}

body.ndwh-jet-admin .support-list-card,
body.ndwh-jet-admin .support-config-card,
body.ndwh-jet-admin .support-settings-card,
body.ndwh-jet-admin .support-diagnostics-card,
body.ndwh-jet-admin .support-guide-card,
body.ndwh-jet-admin .support-form-card,
body.ndwh-jet-admin .support-detail-card,
body.ndwh-jet-admin .support-table-card,
body.ndwh-jet-admin .support-copy-card {
  padding: 1.55rem 1.75rem 1.45rem;
}

body.ndwh-jet-admin .support-list-card .section-head,
body.ndwh-jet-admin .support-settings-card .section-head,
body.ndwh-jet-admin .support-form-card .section-head,
body.ndwh-jet-admin .support-detail-card .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: start;
}

body.ndwh-jet-admin .support-list-card .section-head p,
body.ndwh-jet-admin .support-config-card .section-head p,
body.ndwh-jet-admin .support-settings-card .section-head p,
body.ndwh-jet-admin .support-diagnostics-card .section-head p,
body.ndwh-jet-admin .support-form-card .section-head p,
body.ndwh-jet-admin .support-detail-card .section-head p,
body.ndwh-jet-admin .support-table-card .section-head p {
  max-width: 44rem;
  line-height: 1.55;
}

body.ndwh-jet-admin .support-list-card .section-head > div:first-child,
body.ndwh-jet-admin .support-config-card .section-head > div:first-child,
body.ndwh-jet-admin .support-settings-card .section-head > div:first-child,
body.ndwh-jet-admin .support-diagnostics-card .section-head > div:first-child,
body.ndwh-jet-admin .support-form-card .section-head > div:first-child,
body.ndwh-jet-admin .support-detail-card .section-head > div:first-child,
body.ndwh-jet-admin .support-table-card .section-head > div:first-child {
  padding-left: 0.15rem;
}

body.ndwh-jet-admin .support-header-actions {
  justify-content: flex-end;
  align-content: start;
}

body.ndwh-jet-admin .support-header-actions a,
body.ndwh-jet-admin .support-header-actions button,
body.ndwh-jet-admin .support-form-actions a,
body.ndwh-jet-admin .support-form-actions button {
  min-height: 40px;
  padding: 0.58rem 0.95rem;
  border-radius: 0.9rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.1;
}

body.ndwh-jet-admin .support-filter-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  align-items: end;
}

body.ndwh-jet-admin .support-filter-form__search {
  grid-column: span 2;
}

body.ndwh-jet-admin .support-filter-form label,
body.ndwh-jet-admin .support-create-form label,
body.ndwh-jet-admin .support-stack-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0;
}

body.ndwh-jet-admin .support-filter-form label span,
body.ndwh-jet-admin .support-create-form label span,
body.ndwh-jet-admin .support-stack-form label span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

body.ndwh-jet-admin .support-filter-form input,
body.ndwh-jet-admin .support-filter-form select,
body.ndwh-jet-admin .support-create-form input,
body.ndwh-jet-admin .support-create-form select,
body.ndwh-jet-admin .support-create-form textarea,
body.ndwh-jet-admin .support-stack-form input,
body.ndwh-jet-admin .support-stack-form textarea {
  min-height: 50px;
  padding-inline: 1rem;
}

body.ndwh-jet-admin .support-create-form textarea,
body.ndwh-jet-admin .support-stack-form textarea {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

body.ndwh-jet-admin .support-create-form,
body.ndwh-jet-admin .support-stack-form {
  display: grid;
  gap: 1rem;
}

body.ndwh-jet-admin .support-form-grid {
  display: grid;
  gap: 0.9rem 1rem;
}

body.ndwh-jet-admin .support-form-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.ndwh-jet-admin .support-form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.ndwh-jet-admin .support-form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.15rem;
}

body.ndwh-jet-admin .support-table-shell,
body.ndwh-jet-admin .support-data-shell {
  margin-top: 0.35rem;
  padding: 0.55rem 1.35rem;
}

body.ndwh-jet-admin .support-table-shell table {
  min-width: 980px;
}

body.ndwh-jet-admin .support-data-shell table {
  min-width: 640px;
}

body.ndwh-jet-admin .support-table-shell thead th {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
}

body.ndwh-jet-admin .support-table-shell tbody td,
body.ndwh-jet-admin .support-data-shell tbody td {
  vertical-align: middle;
  font-size: 0.95rem;
  line-height: 1.55;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

body.ndwh-jet-admin .support-detail-copy {
  margin-top: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(248, 250, 252, 0.82);
  color: #334155;
  line-height: 1.65;
  white-space: pre-wrap;
}

body.ndwh-jet-admin .support-copy-card h3,
body.ndwh-jet-admin .support-detail-card h3 {
  margin-bottom: 0.7rem;
}

body.ndwh-jet-admin .support-plain-copy {
  color: #334155;
  line-height: 1.65;
  white-space: pre-wrap;
}

body.ndwh-jet-admin .support-guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

body.ndwh-jet-admin .support-guide-list li {
  padding: 0.92rem 1rem;
  border-radius: 1.12rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(248, 250, 252, 0.82);
  color: #475569;
  line-height: 1.55;
}

body.ndwh-jet-admin .knowledge-editor-page {
  display: grid;
  gap: 1.2rem;
}

body.ndwh-jet-admin .knowledge-editor-hero,
body.ndwh-jet-admin .knowledge-editor-section,
body.ndwh-jet-admin .knowledge-editor-aside-card {
  padding: 1.6rem 1.8rem 1.5rem;
}

body.ndwh-jet-admin .knowledge-editor-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 34%);
  border: 1px solid rgba(191, 219, 254, 0.92);
}

body.ndwh-jet-admin .knowledge-editor-hero h2 {
  margin-bottom: 0.55rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

body.ndwh-jet-admin .knowledge-editor-hero p {
  max-width: 52rem;
  margin-bottom: 0;
  color: #52617d;
  line-height: 1.65;
}

body.ndwh-jet-admin .knowledge-editor-hero__eyebrow,
body.ndwh-jet-admin .knowledge-editor-aside-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .knowledge-editor-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

body.ndwh-jet-admin .knowledge-editor-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(191, 219, 254, 0.96);
  color: #475569;
  box-shadow: 0 12px 26px rgba(148, 163, 184, 0.12);
}

body.ndwh-jet-admin .knowledge-editor-chip strong {
  color: #1f2a44;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .knowledge-editor-chip span {
  font-size: 0.92rem;
  font-weight: 700;
}

body.ndwh-jet-admin .knowledge-editor-hero__actions {
  display: flex;
  justify-content: flex-end;
}

body.ndwh-jet-admin .knowledge-editor-hero__actions a {
  min-height: 42px;
  padding: 0.62rem 1rem;
  border-radius: 0.95rem;
  font-size: 0.95rem;
  font-weight: 700;
}

body.ndwh-jet-admin .knowledge-editor-form {
  display: block;
}

body.ndwh-jet-admin .knowledge-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  align-items: start;
}

body.ndwh-jet-admin .knowledge-editor-main,
body.ndwh-jet-admin .knowledge-editor-aside {
  display: grid;
  gap: 1rem;
}

body.ndwh-jet-admin .knowledge-editor-section .section-head,
body.ndwh-jet-admin .knowledge-editor-aside-card {
  margin-bottom: 0;
}

body.ndwh-jet-admin .knowledge-editor-section .section-head p {
  max-width: 46rem;
  line-height: 1.58;
}

body.ndwh-jet-admin .knowledge-editor-grid {
  display: grid;
  gap: 0.95rem 1rem;
}

body.ndwh-jet-admin .knowledge-editor-grid--meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.ndwh-jet-admin .knowledge-editor-grid--content,
body.ndwh-jet-admin .knowledge-editor-grid--responses {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.ndwh-jet-admin .knowledge-editor-grid--links {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.7fr);
  margin-bottom: 0.35rem;
}

body.ndwh-jet-admin .knowledge-editor-grid--site {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.ndwh-jet-admin .knowledge-editor-field {
  display: grid;
  gap: 0.46rem;
  margin-bottom: 0;
}

body.ndwh-jet-admin .knowledge-editor-field--full,
body.ndwh-jet-admin .knowledge-editor-field--wide {
  grid-column: 1 / -1;
}

body.ndwh-jet-admin .knowledge-editor-field span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

body.ndwh-jet-admin .knowledge-editor-field input,
body.ndwh-jet-admin .knowledge-editor-field select,
body.ndwh-jet-admin .knowledge-editor-field textarea {
  width: 100%;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 1.15rem;
  background: rgba(248, 250, 252, 0.94);
  color: #42516f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.ndwh-jet-admin .knowledge-editor-field input,
body.ndwh-jet-admin .knowledge-editor-field select {
  min-height: 52px;
  padding-inline: 1rem;
}

body.ndwh-jet-admin .knowledge-editor-field input:focus,
body.ndwh-jet-admin .knowledge-editor-field select:focus,
body.ndwh-jet-admin .knowledge-editor-field textarea:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.85);
  box-shadow:
    0 0 0 4px rgba(59, 130, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

body.ndwh-jet-admin .knowledge-editor-field textarea {
  padding: 1rem 1.05rem;
  resize: vertical;
}

body.ndwh-jet-admin .knowledge-editor-textarea {
  min-height: 220px;
  line-height: 1.65;
}

body.ndwh-jet-admin .knowledge-editor-textarea--code {
  font-family: ui-monospace, SFMono-Regular, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.92rem;
}

body.ndwh-jet-admin .knowledge-editor-section--site {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 34%);
}

body.ndwh-jet-admin .knowledge-editor-site-note {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  background: rgba(255, 255, 255, 0.72);
  color: #52617d;
  line-height: 1.6;
}

body.ndwh-jet-admin .knowledge-editor-aside {
  position: sticky;
  top: 6.6rem;
}

body.ndwh-jet-admin .knowledge-editor-aside-card {
  border: 1px solid rgba(226, 232, 240, 0.96);
}

body.ndwh-jet-admin .knowledge-editor-aside-card--summary {
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 36%);
}

body.ndwh-jet-admin .knowledge-editor-aside-stat {
  display: grid;
  gap: 0.18rem;
  padding: 0.82rem 0;
  border-bottom: 1px dashed rgba(191, 219, 254, 0.92);
}

body.ndwh-jet-admin .knowledge-editor-aside-stat:first-of-type {
  padding-top: 0;
}

body.ndwh-jet-admin .knowledge-editor-aside-stat:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

body.ndwh-jet-admin .knowledge-editor-aside-stat span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .knowledge-editor-aside-stat strong {
  color: #1f2a44;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
}

body.ndwh-jet-admin .knowledge-editor-checklist {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.ndwh-jet-admin .knowledge-editor-checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: #52617d;
  line-height: 1.58;
}

body.ndwh-jet-admin .knowledge-editor-checklist li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1b84ff, #22c55e);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

body.ndwh-jet-admin .knowledge-editor-aside-card--hint p {
  margin: 0;
  color: #52617d;
  line-height: 1.6;
}

body.ndwh-jet-admin .knowledge-editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1rem;
}

body.ndwh-jet-admin .knowledge-editor-actions a,
body.ndwh-jet-admin .knowledge-editor-actions button {
  min-height: 42px;
  padding: 0.62rem 1rem;
  border-radius: 0.95rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
}

body.ndwh-jet-admin .users-table-card,
body.ndwh-jet-admin .users-audit-card,
body.ndwh-jet-admin .users-create-card,
body.ndwh-jet-admin .profiles-table-card,
body.ndwh-jet-admin .templates-admin-card,
body.ndwh-jet-admin .templates-profile-card {
  padding: 1.55rem 1.75rem 1.45rem;
}

body.ndwh-jet-admin .users-table-card .section-head p,
body.ndwh-jet-admin .users-audit-card .section-head p,
body.ndwh-jet-admin .users-create-card .section-head p,
body.ndwh-jet-admin .profiles-table-card .section-head p,
body.ndwh-jet-admin .templates-admin-card .section-head p,
body.ndwh-jet-admin .templates-profile-card .section-head p {
  max-width: 44rem;
  line-height: 1.55;
}

body.ndwh-jet-admin .users-table-card .section-head > div:first-child,
body.ndwh-jet-admin .users-audit-card .section-head > div:first-child,
body.ndwh-jet-admin .users-create-card .section-head > div:first-child,
body.ndwh-jet-admin .profiles-table-card .section-head > div:first-child,
body.ndwh-jet-admin .templates-admin-card .section-head > div:first-child,
body.ndwh-jet-admin .templates-profile-card .section-head > div:first-child {
  padding-left: 0.15rem;
}

body.ndwh-jet-admin .users-header-actions,
body.ndwh-jet-admin .templates-page .links,
body.ndwh-jet-admin .profiles-action-links {
  gap: 0.55rem;
}

body.ndwh-jet-admin .users-header-actions a,
body.ndwh-jet-admin .templates-page table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.4rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(191, 219, 254, 0.9);
  background: rgba(239, 246, 255, 0.92);
  color: #1d4ed8;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

body.ndwh-jet-admin .profiles-actions-cell {
  min-width: 0;
}

body.ndwh-jet-admin .profiles-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  min-width: 0;
  max-width: 31rem;
}

body.ndwh-jet-admin .profiles-action-link {
  --profiles-action-accent: #1b84ff;
  --profiles-action-border: rgba(191, 219, 254, 0.96);
  --profiles-action-bg: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(239, 246, 255, 0.94));
  --profiles-action-shadow: 0 12px 22px rgba(148, 163, 184, 0.12);
  display: inline-grid;
  justify-items: start;
  align-content: center;
  gap: 0.18rem;
  min-height: 54px;
  min-width: 8.6rem;
  max-width: 10.8rem;
  padding: 0.62rem 0.8rem 0.58rem;
  border-radius: 1rem;
  border: 1px solid var(--profiles-action-border);
  background: var(--profiles-action-bg);
  box-shadow: var(--profiles-action-shadow);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.ndwh-jet-admin .profiles-action-link:hover,
body.ndwh-jet-admin .profiles-action-link:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--profiles-action-accent) 34%, white);
  box-shadow:
    0 16px 26px rgba(148, 163, 184, 0.16),
    0 0 0 4px color-mix(in srgb, var(--profiles-action-accent) 10%, transparent);
}

body.ndwh-jet-admin .profiles-action-link__kicker {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--profiles-action-accent) 72%, #64748b);
}

body.ndwh-jet-admin .profiles-action-link__label {
  color: #163d8f;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: normal;
}

body.ndwh-jet-admin .profiles-action-link--content {
  --profiles-action-accent: #2563eb;
  --profiles-action-bg: linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(219, 234, 254, 0.92));
}

body.ndwh-jet-admin .profiles-action-link--intent {
  --profiles-action-accent: #0f766e;
  --profiles-action-border: rgba(153, 246, 228, 0.96);
  --profiles-action-bg: linear-gradient(180deg, rgba(240, 253, 250, 0.98), rgba(204, 251, 241, 0.9));
}

body.ndwh-jet-admin .profiles-action-link--flow {
  --profiles-action-accent: #7c3aed;
  --profiles-action-border: rgba(221, 214, 254, 0.96);
  --profiles-action-bg: linear-gradient(180deg, rgba(245, 243, 255, 0.98), rgba(237, 233, 254, 0.92));
}

body.ndwh-jet-admin .profiles-action-link--identity {
  --profiles-action-accent: #d97706;
  --profiles-action-border: rgba(253, 230, 138, 0.96);
  --profiles-action-bg: linear-gradient(180deg, rgba(255, 251, 235, 0.98), rgba(254, 243, 199, 0.92));
}

body.ndwh-jet-admin .profiles-action-link--config {
  --profiles-action-accent: #475569;
  --profiles-action-border: rgba(203, 213, 225, 0.96);
  --profiles-action-bg: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.94));
}

body.ndwh-jet-admin .profiles-action-link--mail {
  --profiles-action-accent: #be185d;
  --profiles-action-border: rgba(251, 207, 232, 0.96);
  --profiles-action-bg: linear-gradient(180deg, rgba(253, 242, 248, 0.98), rgba(252, 231, 243, 0.92));
}

body.ndwh-jet-admin .profiles-action-link--sched {
  --profiles-action-accent: #15803d;
  --profiles-action-border: rgba(187, 247, 208, 0.96);
  --profiles-action-bg: linear-gradient(180deg, rgba(240, 253, 244, 0.98), rgba(220, 252, 231, 0.92));
}

body.ndwh-jet-admin .profiles-ndsched-card {
  margin-top: 1.2rem;
  padding: 1.55rem 1.75rem 1.45rem;
}

body.ndwh-jet-admin .profiles-ndsched-card--detail {
  margin-top: 0;
}

body.ndwh-jet-admin .profiles-ndsched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1rem;
  min-width: 0;
}

body.ndwh-jet-admin .profiles-ndsched-grid--detail {
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  margin-top: 1rem;
}

body.ndwh-jet-admin .profiles-ndsched-profile,
body.ndwh-jet-admin .profiles-ndsched-flow {
  display: grid;
  gap: 0.95rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.95rem;
  background: rgba(248, 250, 252, 0.76);
}

body.ndwh-jet-admin .profiles-ndsched-profile-head,
body.ndwh-jet-admin .profiles-ndsched-flow-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  min-width: 0;
}

body.ndwh-jet-admin .inline-statuses {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

body.ndwh-jet-admin .profiles-ndsched-profile h3,
body.ndwh-jet-admin .profiles-ndsched-flow h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

body.ndwh-jet-admin .profiles-ndsched-profile p,
body.ndwh-jet-admin .profiles-ndsched-flow p {
  margin: 0.22rem 0 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.45;
}

body.ndwh-jet-admin .profiles-ndsched-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.72rem;
  margin: 0;
}

body.ndwh-jet-admin .profiles-ndsched-meta--compact {
  grid-template-columns: 1fr;
}

body.ndwh-jet-admin .profiles-ndsched-meta div {
  min-width: 0;
}

body.ndwh-jet-admin .profiles-ndsched-meta dt,
body.ndwh-jet-admin .profiles-ndsched-list span {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.ndwh-jet-admin .profiles-ndsched-meta dd {
  margin: 0.18rem 0 0;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body.ndwh-jet-admin .profiles-ndsched-list p {
  margin-top: 0.18rem;
  color: #334155;
  font-weight: 600;
}

body.ndwh-jet-admin .profiles-ndsched-actions {
  justify-content: flex-start;
  gap: 0.55rem;
}

body.ndwh-jet-admin .admin-compact-button {
  min-height: 38px;
  padding: 0.54rem 0.88rem;
  border-radius: 0.92rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.05;
}

body.ndwh-jet-admin .roles-page,
body.ndwh-jet-admin .logs-page,
body.ndwh-jet-admin .password-page,
body.ndwh-jet-admin .editor-page {
  display: grid;
  gap: 1.4rem;
}

body.ndwh-jet-admin .roles-overview-card,
body.ndwh-jet-admin .roles-policy-card,
body.ndwh-jet-admin .roles-audit-card,
body.ndwh-jet-admin .logs-overview-card,
body.ndwh-jet-admin .logs-list-card,
body.ndwh-jet-admin .logs-viewer-card,
body.ndwh-jet-admin .password-hero-card,
body.ndwh-jet-admin .password-form-card,
body.ndwh-jet-admin .password-guide-card,
body.ndwh-jet-admin .editor-hero-card,
body.ndwh-jet-admin .editor-main-card,
body.ndwh-jet-admin .editor-side-card,
body.ndwh-jet-admin .editor-backups-card,
body.ndwh-jet-admin .editor-viewer-card,
body.ndwh-jet-admin .editor-workbench-card {
  padding: 1.55rem 1.75rem 1.45rem;
}

body.ndwh-jet-admin .roles-overview-card,
body.ndwh-jet-admin .logs-overview-card,
body.ndwh-jet-admin .password-hero-card,
body.ndwh-jet-admin .editor-hero-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94));
}

body.ndwh-jet-admin .roles-overview-card::after,
body.ndwh-jet-admin .logs-overview-card::after,
body.ndwh-jet-admin .password-hero-card::after,
body.ndwh-jet-admin .editor-hero-card::after {
  content: "";
  position: absolute;
  inset: auto -5% -20% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 68%);
  pointer-events: none;
}

body.ndwh-jet-admin .roles-overview-top,
body.ndwh-jet-admin .logs-overview-top,
body.ndwh-jet-admin .password-hero-card,
body.ndwh-jet-admin .editor-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.4rem;
  align-items: start;
}

body.ndwh-jet-admin .roles-overview-copy,
body.ndwh-jet-admin .logs-overview-copy,
body.ndwh-jet-admin .password-hero-copy,
body.ndwh-jet-admin .editor-hero-copy {
  position: relative;
  z-index: 1;
}

body.ndwh-jet-admin .roles-overview-eyebrow,
body.ndwh-jet-admin .logs-overview-eyebrow,
body.ndwh-jet-admin .password-hero-eyebrow,
body.ndwh-jet-admin .editor-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.94);
  border: 1px solid rgba(191, 219, 254, 0.88);
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .roles-overview-copy h2,
body.ndwh-jet-admin .logs-overview-copy h2,
body.ndwh-jet-admin .password-hero-copy h2,
body.ndwh-jet-admin .editor-hero-copy h2 {
  margin: 0.9rem 0 0;
  letter-spacing: -0.03em;
}

body.ndwh-jet-admin .roles-overview-copy p,
body.ndwh-jet-admin .logs-overview-copy p,
body.ndwh-jet-admin .password-hero-copy p,
body.ndwh-jet-admin .editor-hero-copy p {
  max-width: 46rem;
  margin: 0.45rem 0 0;
  line-height: 1.6;
  color: #475569;
}

body.ndwh-jet-admin .roles-overview-actions,
body.ndwh-jet-admin .logs-overview-actions,
body.ndwh-jet-admin .password-hero-chips,
body.ndwh-jet-admin .editor-hero-actions {
  justify-content: flex-end;
  align-content: start;
}

body.ndwh-jet-admin .roles-overview-metrics,
body.ndwh-jet-admin .logs-overview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
  position: relative;
  z-index: 1;
}

body.ndwh-jet-admin .roles-policies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

body.ndwh-jet-admin .roles-policy-head {
  align-items: flex-start;
}

body.ndwh-jet-admin .roles-policy-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

body.ndwh-jet-admin .roles-policy-title-row h2 {
  margin: 0;
}

body.ndwh-jet-admin .roles-policy-title-row .status-pill {
  min-height: 34px;
  padding: 0.45rem 0.82rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

body.ndwh-jet-admin .roles-policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

body.ndwh-jet-admin .roles-policy-key {
  white-space: nowrap;
}

body.ndwh-jet-admin .roles-policy-form label,
body.ndwh-jet-admin .roles-audit-form label,
body.ndwh-jet-admin .password-form label,
body.ndwh-jet-admin .editor-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0;
}

body.ndwh-jet-admin .roles-policy-form label > span,
body.ndwh-jet-admin .roles-audit-form label > span,
body.ndwh-jet-admin .password-form label > span,
body.ndwh-jet-admin .editor-form label > span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

body.ndwh-jet-admin .roles-policy-form-grid,
body.ndwh-jet-admin .roles-audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  align-items: end;
}

body.ndwh-jet-admin .roles-policy-form input,
body.ndwh-jet-admin .roles-policy-form select,
body.ndwh-jet-admin .roles-audit-form select,
body.ndwh-jet-admin .password-form input {
  min-height: 50px;
  padding-inline: 1rem;
}

body.ndwh-jet-admin .roles-permissions-shell {
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(248, 250, 252, 0.82);
  border-radius: 1.35rem;
  padding: 1rem 1.05rem;
}

body.ndwh-jet-admin .roles-permissions-head {
  margin-bottom: 0.85rem;
}

body.ndwh-jet-admin .roles-permissions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

body.ndwh-jet-admin .roles-permission-toggle {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  min-height: 72px;
  padding: 0.72rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9));
  box-shadow: 0 10px 20px rgba(148, 163, 184, 0.06);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

body.ndwh-jet-admin .roles-permission-toggle:hover,
body.ndwh-jet-admin .roles-permission-toggle:focus-within {
  transform: translateY(-1px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 14px 24px rgba(148, 163, 184, 0.1);
}

body.ndwh-jet-admin .roles-permission-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

body.ndwh-jet-admin .roles-permission-toggle__switch {
  position: relative;
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e8edf6, #dbe5f1);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8);
  transition: background .18s ease, box-shadow .18s ease;
}

body.ndwh-jet-admin .roles-permission-toggle__switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.16);
  transition: transform .18s ease;
}

body.ndwh-jet-admin .roles-permission-toggle input:focus-visible + .roles-permission-toggle__switch {
  outline: 3px solid rgba(59, 130, 246, 0.2);
  outline-offset: 2px;
}

body.ndwh-jet-admin .roles-permission-toggle__body {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
}

body.ndwh-jet-admin .roles-permission-toggle__body strong {
  color: #0f172a;
  font-size: 0.9rem;
  line-height: 1.2;
}

body.ndwh-jet-admin .roles-permission-toggle__body small {
  color: #64748b;
  font-size: 0.77rem;
  line-height: 1.38;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

body.ndwh-jet-admin .roles-permission-toggle--active,
body.ndwh-jet-admin .roles-permission-toggle input:checked + .roles-permission-toggle__switch,
body.ndwh-jet-admin .roles-permission-toggle--active .roles-permission-toggle__switch {
  background: linear-gradient(135deg, #1b84ff, #3b82f6);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.2);
}

body.ndwh-jet-admin .roles-permission-toggle input:checked + .roles-permission-toggle__switch::after,
body.ndwh-jet-admin .roles-permission-toggle--active .roles-permission-toggle__switch::after {
  transform: translateX(18px);
}

body.ndwh-jet-admin .roles-permission-toggle--active {
  border-color: rgba(96, 165, 250, 0.66);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(219, 234, 254, 0.9));
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.12);
}

body.ndwh-jet-admin .roles-permission-toggle--active .roles-permission-toggle__body strong,
body.ndwh-jet-admin .roles-permission-toggle input:checked ~ .roles-permission-toggle__body strong {
  color: #1d4ed8;
}

body.ndwh-jet-admin .roles-permission-toggle input:disabled + .roles-permission-toggle__switch {
  opacity: 0.7;
}

body.ndwh-jet-admin .roles-permission-toggle input:disabled ~ .roles-permission-toggle__body {
  opacity: 0.9;
}

body.ndwh-jet-admin .roles-policy-actions,
body.ndwh-jet-admin .roles-audit-actions,
body.ndwh-jet-admin .password-actions,
body.ndwh-jet-admin .editor-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

body.ndwh-jet-admin .roles-policy-actions {
  justify-content: space-between;
}

body.ndwh-jet-admin .roles-audit-actions {
  grid-column: 1 / -1;
  justify-content: flex-end;
}

body.ndwh-jet-admin .logs-layout,
body.ndwh-jet-admin .password-layout,
body.ndwh-jet-admin .editor-main-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

body.ndwh-jet-admin .password-guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

body.ndwh-jet-admin .password-guide-list li {
  padding: 0.92rem 1rem;
  border-radius: 1.12rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(248, 250, 252, 0.82);
  color: #475569;
  line-height: 1.55;
}

body.ndwh-jet-admin .password-guide-list strong {
  display: block;
  margin-bottom: 0.16rem;
  color: #0f172a;
}

body.ndwh-jet-admin .editor-hero-path {
  grid-column: 1 / -1;
  position: relative;
  z-index: 1;
  overflow: auto;
}

body.ndwh-jet-admin .editor-main-card .section-head p,
body.ndwh-jet-admin .editor-side-card .section-head p,
body.ndwh-jet-admin .editor-backups-card .section-head p,
body.ndwh-jet-admin .editor-viewer-card .section-head p,
body.ndwh-jet-admin .logs-list-card .section-head p,
body.ndwh-jet-admin .logs-viewer-card .section-head p,
body.ndwh-jet-admin .password-form-card .section-head p,
body.ndwh-jet-admin .password-guide-card .section-head p,
body.ndwh-jet-admin .roles-audit-card .section-head p {
  max-width: 42rem;
  line-height: 1.55;
}

body.ndwh-jet-admin .editor-code-shell,
body.ndwh-jet-admin .editor-viewer-shell,
body.ndwh-jet-admin .logs-code-shell {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
  border-radius: 1.25rem;
  padding: 0.85rem;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

body.ndwh-jet-admin .editor-code-area {
  min-height: 540px;
  border: 0 !important;
  background: transparent !important;
  color: #e2e8f0;
  padding: 0.2rem;
  font-size: 0.84rem;
  line-height: 1.65;
  box-shadow: none !important;
}

body.ndwh-jet-admin .editor-code-area:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

body.ndwh-jet-admin .editor-viewer-code,
body.ndwh-jet-admin .logs-code {
  margin: 0;
  max-height: 620px;
  overflow: auto;
  white-space: pre-wrap;
  color: #e2e8f0;
  font-size: 0.84rem;
  line-height: 1.65;
}

body.ndwh-jet-admin .editor-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

body.ndwh-jet-admin .editor-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.92);
  background: rgba(239, 246, 255, 0.94);
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 700;
}

body.ndwh-jet-admin .editor-info-list {
  display: grid;
  gap: 0.75rem;
}

body.ndwh-jet-admin .editor-info-row,
body.ndwh-jet-admin .logs-meta-card {
  display: grid;
  gap: 0.2rem;
  padding: 0.88rem 0.95rem;
  border-radius: 1.12rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(248, 250, 252, 0.82);
}

body.ndwh-jet-admin .editor-info-row span,
body.ndwh-jet-admin .logs-meta-card span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #64748b;
}

body.ndwh-jet-admin .editor-info-row strong,
body.ndwh-jet-admin .logs-meta-card strong {
  color: #0f172a;
  line-height: 1.5;
}

body.ndwh-jet-admin .editor-note-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.48rem;
  color: #475569;
}

body.ndwh-jet-admin .editor-note-list li {
  line-height: 1.55;
}

body.ndwh-jet-admin .editor-workbench-card .editor-toolbar {
  margin-bottom: 1rem;
}

body.ndwh-jet-admin .editor-filter-row {
  margin-bottom: 1rem;
}

body.ndwh-jet-admin .editor-filter-row label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0;
}

body.ndwh-jet-admin .editor-filter-row input {
  min-height: 50px;
  padding-inline: 1rem;
}

body.ndwh-jet-admin .roles-table-shell,
body.ndwh-jet-admin .logs-table-shell,
body.ndwh-jet-admin .editor-table-shell {
  margin-top: 0.35rem;
  padding: 0.55rem 1.35rem;
}

body.ndwh-jet-admin .roles-table-shell table {
  min-width: 760px;
}

body.ndwh-jet-admin .logs-table-shell table {
  min-width: 640px;
}

body.ndwh-jet-admin .editor-table-shell table {
  min-width: 620px;
}

body.ndwh-jet-admin .roles-table-shell a,
body.ndwh-jet-admin .logs-table-link,
body.ndwh-jet-admin .editor-table-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.4rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(191, 219, 254, 0.9);
  background: rgba(239, 246, 255, 0.92);
  color: #1d4ed8;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

body.ndwh-jet-admin .logs-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

body.ndwh-jet-admin .logs-empty-state {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 1.25rem;
  text-align: center;
  color: #64748b;
  border-radius: 1.25rem;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  background: rgba(248, 250, 252, 0.72);
}

body.ndwh-jet-admin .users-create-form label,
body.ndwh-jet-admin .users-membership-create-form label,
body.ndwh-jet-admin .scope-catalog-form label,
body.ndwh-jet-admin .users-audit-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0;
}

body.ndwh-jet-admin .users-create-form label > span,
body.ndwh-jet-admin .users-membership-create-form label > span,
body.ndwh-jet-admin .scope-catalog-form label > span,
body.ndwh-jet-admin .users-audit-form label > span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

body.ndwh-jet-admin .users-create-grid,
body.ndwh-jet-admin .scope-catalog-grid,
body.ndwh-jet-admin .users-audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
}

body.ndwh-jet-admin .users-create-form input,
body.ndwh-jet-admin .users-create-form select,
body.ndwh-jet-admin .users-membership-create-form input,
body.ndwh-jet-admin .users-membership-create-form select,
body.ndwh-jet-admin .scope-catalog-form input,
body.ndwh-jet-admin .scope-catalog-form select,
body.ndwh-jet-admin .users-audit-form select {
  min-height: 50px;
  padding-inline: 1rem;
}

body.ndwh-jet-admin .users-toggle-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  flex-wrap: wrap;
  gap: 0.75rem 0.9rem;
}

body.ndwh-jet-admin .users-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
  width: fit-content;
  max-width: 100%;
  padding: 0.68rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9));
  color: #334155;
  box-shadow: 0 10px 20px rgba(148, 163, 184, 0.06);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

body.ndwh-jet-admin .users-toggle input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

body.ndwh-jet-admin .users-toggle:hover,
body.ndwh-jet-admin .users-toggle:focus-within {
  transform: translateY(-1px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 14px 24px rgba(148, 163, 184, 0.1);
}

body.ndwh-jet-admin .users-toggle__switch {
  position: relative;
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e8edf6, #dbe5f1);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8);
  transition: background .18s ease, box-shadow .18s ease;
}

body.ndwh-jet-admin .users-toggle__switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.16);
  transition: transform .18s ease;
}

body.ndwh-jet-admin .users-toggle input[type="checkbox"]:focus-visible + .users-toggle__switch {
  outline: 3px solid rgba(59, 130, 246, 0.2);
  outline-offset: 2px;
}

body.ndwh-jet-admin .users-toggle input[type="checkbox"]:checked + .users-toggle__switch {
  background: linear-gradient(135deg, #1b84ff, #3b82f6);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.2);
}

body.ndwh-jet-admin .users-toggle input[type="checkbox"]:checked + .users-toggle__switch::after {
  transform: translateX(18px);
}

body.ndwh-jet-admin .users-toggle input[type="checkbox"]:checked ~ .users-toggle__label {
  color: #1d4ed8;
}

body.ndwh-jet-admin .users-toggle input[type="checkbox"]:disabled {
  opacity: 0.7;
}

body.ndwh-jet-admin .users-toggle input[type="checkbox"]:disabled + .users-toggle__switch,
body.ndwh-jet-admin .users-toggle input[type="checkbox"]:disabled ~ .users-toggle__label {
  opacity: 0.72;
  cursor: not-allowed;
}

body.ndwh-jet-admin .users-toggle__label {
  min-width: 0;
  line-height: 1.15;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #334155;
  white-space: nowrap;
}

body.ndwh-jet-admin .users-toggle--compact {
  min-height: 40px;
  padding: 0.45rem 0.65rem;
  border-radius: 0.8rem;
}

body.ndwh-jet-admin .users-toggle--compact .users-toggle__switch {
  width: 38px;
  height: 24px;
}

body.ndwh-jet-admin .users-toggle--compact .users-toggle__switch::after {
  width: 16px;
  height: 16px;
}

body.ndwh-jet-admin .users-toggle--compact input[type="checkbox"]:checked + .users-toggle__switch::after {
  transform: translateX(14px);
}

body.ndwh-jet-admin .users-membership-inline-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

body.ndwh-jet-admin .users-membership-role-input {
  width: 8.5rem;
  min-height: 40px;
  padding-inline: 0.75rem;
}

body.ndwh-jet-admin .users-membership-create-form {
  margin-top: 1rem;
}

body.ndwh-jet-admin .scope-catalog-form {
  margin-top: 1rem;
}

body.ndwh-jet-admin .scope-catalog-card {
  overflow: hidden;
}

body.ndwh-jet-admin .scope-catalog-tabs-wrap {
  border-bottom: 1px solid rgba(203, 213, 225, 0.72);
  margin-bottom: 1rem;
}

body.ndwh-jet-admin .scope-catalog-tabs {
  gap: 0.35rem;
  padding: 0 0.25rem;
  scrollbar-width: thin;
}

body.ndwh-jet-admin .scope-catalog-tabs .nav-link {
  min-height: 44px;
  white-space: nowrap;
  font-weight: 800;
  color: #64748b;
}

body.ndwh-jet-admin .scope-catalog-tabs .nav-link.active {
  color: #1d4ed8;
}

body.ndwh-jet-admin .scope-catalog-tab-content {
  min-width: 0;
}

body.ndwh-jet-admin .scope-catalog-actions {
  min-width: 24rem;
}

body.ndwh-jet-admin .scope-catalog-archived {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(203, 213, 225, 0.72);
}

body.ndwh-jet-admin .scope-catalog-archived__head {
  margin-bottom: 0.45rem;
}

body.ndwh-jet-admin .scope-catalog-archived__head h3 {
  font-size: 1rem;
}

body.ndwh-jet-admin .scope-catalog-inline-edit {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(203, 213, 225, 0.88);
}

body.ndwh-jet-admin .scope-catalog-inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(9rem, 1fr));
  gap: 0.55rem;
}

body.ndwh-jet-admin .scope-catalog-inline-grid label {
  display: grid;
  gap: 0.3rem;
  margin: 0;
}

body.ndwh-jet-admin .scope-catalog-inline-grid label > span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

body.ndwh-jet-admin .scope-catalog-inline-grid input,
body.ndwh-jet-admin .scope-catalog-inline-grid select {
  min-height: 38px;
  padding-inline: 0.7rem;
}

body.ndwh-jet-admin .scope-config-json {
  max-width: 18rem;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #475569;
  background: transparent;
}

body.ndwh-jet-admin .users-create-actions,
body.ndwh-jet-admin .users-audit-actions {
  display: flex;
  gap: 0.75rem;
}

body.ndwh-jet-admin .users-create-actions {
  justify-content: flex-end;
}

body.ndwh-jet-admin .users-audit-actions {
  grid-column: 1 / -1;
  justify-content: flex-end;
  padding-top: 0.15rem;
}

body.ndwh-jet-admin .users-create-actions button,
body.ndwh-jet-admin .users-audit-actions a,
body.ndwh-jet-admin .users-audit-actions button {
  min-height: 40px;
  padding: 0.58rem 0.95rem;
  border-radius: 0.9rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.1;
}

body.ndwh-jet-admin .users-table-shell,
body.ndwh-jet-admin .profiles-table-shell,
body.ndwh-jet-admin .templates-table-shell {
  margin-top: 0.35rem;
  padding: 0.55rem 1.35rem;
}

body.ndwh-jet-admin .users-table-shell table,
body.ndwh-jet-admin .profiles-table-shell table,
body.ndwh-jet-admin .templates-table-shell table {
  min-width: 760px;
}

body.ndwh-jet-admin .users-table-shell thead th,
body.ndwh-jet-admin .profiles-table-shell thead th,
body.ndwh-jet-admin .templates-table-shell thead th {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
}

body.ndwh-jet-admin .users-table-shell tbody td,
body.ndwh-jet-admin .profiles-table-shell tbody td,
body.ndwh-jet-admin .templates-table-shell tbody td {
  vertical-align: middle;
  font-size: 0.95rem;
  line-height: 1.55;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

body.ndwh-jet-admin .users-cell-copy,
body.ndwh-jet-admin .profiles-cell-copy,
body.ndwh-jet-admin .profiles-path-copy,
body.ndwh-jet-admin .templates-path-copy {
  display: inline-block;
  white-space: normal;
  color: #475569;
  line-height: 1.55;
}

body.ndwh-jet-admin .users-cell-copy {
  max-width: 18rem;
}

body.ndwh-jet-admin .profiles-cell-copy {
  max-width: 14rem;
}

body.ndwh-jet-admin .profiles-path-copy,
body.ndwh-jet-admin .templates-path-copy {
  max-width: 24rem;
  font-size: 0.79rem;
}

body.ndwh-jet-admin .ndwh-auth-panel {
  border-radius: 2rem;
}

body.ndwh-jet-admin .ndwh-auth-aside {
  min-height: 100%;
}

body.ndwh-jet-admin .ndwh-auth-aside img {
  max-height: 290px;
  object-fit: contain;
  align-self: center;
}

body.ndwh-jet-admin .ndwh-auth-linkbar {
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(203, 213, 225, 0.9);
}

body.ndwh-jet-admin .ndwh-auth-brand {
  position: relative;
  z-index: 1;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-shell::before,
body.ndwh-jet-admin.auth-page-login .ndwh-auth-shell::after {
  content: "";
  position: absolute;
  border-radius: 2rem;
  transform: rotate(-18deg);
  opacity: 0.78;
  pointer-events: none;
  z-index: 0;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-shell::before {
  width: 220px;
  height: 300px;
  left: -76px;
  bottom: -104px;
  background: linear-gradient(180deg, rgba(255, 232, 184, 0.38), rgba(255, 243, 214, 0.04));
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-shell::after {
  width: 260px;
  height: 260px;
  right: -82px;
  bottom: -88px;
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.16), rgba(59, 130, 246, 0.08));
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-brand {
  margin-bottom: 2.1rem !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-brand-copy {
  display: none !important;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-brand-mark {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  filter: none;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-card-simple {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel {
  max-width: 100%;
  border-radius: 1.75rem;
  border: 1px solid rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .p-10 {
  padding: 2.75rem 3rem !important;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-subcopy {
  max-width: 24rem;
  margin: 0 auto;
  line-height: 1.58;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel h1 {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .mb-10 {
  margin-bottom: 1.75rem !important;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .form-label {
  margin-bottom: 0.72rem;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .form-control {
  min-height: 3.9rem;
  border-radius: 0.95rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.98rem;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .form-control.form-control-solid {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(243, 246, 251, 0.98));
  border: 1px solid rgba(226, 232, 240, 0.92);
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .form-control:focus {
  border-color: rgba(27, 132, 255, 0.42);
  box-shadow: 0 0 0 0.28rem rgba(27, 132, 255, 0.12);
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .btn.btn-primary {
  min-height: 3.95rem;
  border-radius: 0.95rem;
  box-shadow: 0 15px 28px rgba(27, 132, 255, 0.22);
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .btn.btn-primary:hover,
body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .btn.btn-primary:focus-visible {
  transform: translateY(-1px);
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .error {
  text-align: left;
}

body.ndwh-jet-admin.auth-page-login .ndwh-auth-legal {
  color: var(--ndwh-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel {
  border-color: rgba(71, 85, 105, 0.58);
  background: linear-gradient(180deg, rgba(8, 15, 29, 0.96), rgba(11, 19, 35, 0.92));
}

html[data-bs-theme="dark"] body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .form-control.form-control-solid {
  background: linear-gradient(180deg, rgba(12, 20, 35, 0.98), rgba(8, 15, 29, 0.95));
  border-color: rgba(71, 85, 105, 0.52);
  color: #e2e8f0;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin.auth-page-login .ndwh-auth-shell::before {
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.12), rgba(251, 191, 36, 0.02));
}

html[data-bs-theme="dark"] body.ndwh-jet-admin.auth-page-login .ndwh-auth-shell::after {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.14), rgba(59, 130, 246, 0.08));
}

body.ndwh-jet-admin .notice a,
body.ndwh-jet-admin .warning a,
body.ndwh-jet-admin .error a {
  color: inherit;
  font-weight: 700;
}

body.app-default {
  background: var(--bs-body-bg, var(--ndwh-bg));
}

body.app-default .card {
  background: var(--bs-card-bg, var(--ndwh-surface));
  border: 1px solid var(--bs-border-color, var(--ndwh-border));
  box-shadow: var(--bs-card-box-shadow, 0 1px 3px rgba(15, 23, 42, .08));
}

body.app-default .metric {
  background: var(--bs-gray-100, #f1f5f9);
}

body.app-default .metric strong {
  color: var(--bs-primary, var(--ndwh-primary));
}

body.app-default input,
body.app-default select,
body.app-default textarea {
  background: var(--bs-body-bg, #fff);
  color: var(--bs-body-color, #1e293b);
}

body.app-default .card,
body.app-default .mono {
  backdrop-filter: blur(4px);
}

@media (max-width: 991px) {
  body.ndwh-jet-admin .table-responsive {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  body.ndwh-jet-admin .ndwh-auth-panel {
    border-radius: 1.5rem;
  }

  body.ndwh-jet-admin.auth-page-login .ndwh-auth-card-simple {
    width: 100%;
  }

  body.ndwh-jet-admin.auth-page-login .ndwh-auth-panel .p-10 {
    padding: 2.1rem 1.35rem !important;
  }

  body.ndwh-jet-admin.auth-page-login .ndwh-auth-brand {
    margin-bottom: 1.6rem !important;
  }

  body.ndwh-jet-admin .ndwh-sidebar-subtitle {
    max-width: 14rem;
  }
}

body.ndwh-jet-admin .ndwh-theme-toggle {
  min-width: 150px;
  justify-content: center;
  gap: 0.6rem;
}

body.ndwh-jet-admin .ndwh-theme-toggle .svg-icon {
  color: currentColor;
}

body.ndwh-jet-admin .ndwh-theme-widget-shell {
  position: fixed;
  right: 1.5rem;
  bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
  z-index: 140;
  pointer-events: none;
}

body.ndwh-jet-admin .ndwh-theme-widget {
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  appearance: none;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--ndwh-float-border);
  background: var(--ndwh-float-bg);
  box-shadow: var(--ndwh-float-shadow);
  backdrop-filter: blur(24px) saturate(160%);
  color: var(--ndwh-float-label);
  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.ndwh-jet-admin .ndwh-theme-widget::before {
  content: "";
  position: absolute;
  inset: auto -22% -30% auto;
  width: 92px;
  height: 92px;
  background: radial-gradient(circle, rgba(27,132,255,.22), transparent 70%);
  pointer-events: none;
}

body.ndwh-jet-admin .ndwh-theme-widget:hover,
body.ndwh-jet-admin .ndwh-theme-widget:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 50px rgba(15,23,42,.18);
  outline: none;
}

body.ndwh-jet-admin .ndwh-theme-widget__icon,
body.ndwh-jet-admin .ndwh-theme-widget__copy {
  position: relative;
  z-index: 1;
}

body.ndwh-jet-admin .ndwh-theme-widget__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

body.ndwh-jet-admin .ndwh-theme-widget__icon .svg-icon {
  color: var(--ndwh-float-label);
}

body.ndwh-jet-admin .ndwh-theme-widget__copy {
  display: none;
}

body.ndwh-jet-admin .ndwh-theme-widget__eyebrow {
  color: var(--ndwh-float-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .ndwh-theme-widget__label {
  color: var(--ndwh-float-label);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.ndwh-jet-admin .ndwh-theme-widget[data-current-theme="light"] .ndwh-theme-widget__icon {
  background: transparent;
}

body.ndwh-jet-admin .ndwh-theme-widget[data-current-theme="dark"] .ndwh-theme-widget__icon {
  background: transparent;
}

body.ndwh-jet-admin .dashboard-hero-shell {
  position: relative;
  margin-bottom: 1.5rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 1.75rem;
  border: 1px solid var(--ndwh-panel-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.72)),
    radial-gradient(circle at top right, rgba(27,132,255,.08), transparent 30%);
  box-shadow: var(--ndwh-panel-shadow);
  overflow: hidden;
}

body.ndwh-jet-admin .dashboard-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(27,132,255,.08), transparent 68%);
  pointer-events: none;
}

body.ndwh-jet-admin .dashboard-hero-header,
body.ndwh-jet-admin .dashboard-hero-header__actions {
  display: flex;
  gap: 1rem;
}

body.ndwh-jet-admin .dashboard-hero-header {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

body.ndwh-jet-admin .dashboard-hero-header__eyebrow {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(27,132,255,.1);
  color: #1b84ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .dashboard-hero-header__title {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.08;
  color: var(--ndwh-shell-ink);
}

body.ndwh-jet-admin .dashboard-hero-header__subtitle {
  max-width: 52rem;
  margin: 0.75rem 0 0;
  color: var(--ndwh-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

body.ndwh-jet-admin .dashboard-hero-header__actions {
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.ndwh-jet-admin .dashboard-hero-header__stamp {
  padding: 0.75rem 1rem;
  border: 1px dashed rgba(148,163,184,.35);
  border-radius: 1rem;
  background: rgba(248,250,252,.86);
  color: var(--ndwh-muted);
  font-size: 0.83rem;
  white-space: nowrap;
}

body.ndwh-jet-admin .dashboard-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

body.ndwh-jet-admin .dashboard-hero-card {
  display: grid;
  gap: 0.9rem;
  min-height: 250px;
  padding: 1.45rem 1.45rem 1.2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(226,232,240,.95);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.95)),
    radial-gradient(circle at top right, var(--dashboard-accent-soft), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 18px 36px rgba(15,23,42,.05);
}

body.ndwh-jet-admin .dashboard-hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.ndwh-jet-admin .dashboard-hero-card__label {
  color: var(--ndwh-muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .dashboard-hero-card__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--dashboard-accent-soft);
  color: var(--dashboard-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .dashboard-hero-card__value {
  color: var(--ndwh-metric-value);
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.04em;
}

body.ndwh-jet-admin .dashboard-hero-card__caption {
  margin: 0;
  max-width: 28rem;
  color: var(--ndwh-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

body.ndwh-jet-admin .dashboard-hero-card__chart {
  margin-top: auto;
}

body.ndwh-jet-admin .dashboard-hero-card__sparkline {
  display: block;
  width: 100%;
  height: 108px;
}

body.ndwh-jet-admin .dashboard-hero-card__grid-line {
  stroke: rgba(148,163,184,.38);
  stroke-width: 1;
  stroke-dasharray: 5 6;
  fill: none;
}

body.ndwh-jet-admin .dashboard-hero-card__trend-line {
  stroke: var(--dashboard-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

body.ndwh-jet-admin .dashboard-mini-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

body.ndwh-jet-admin .dashboard-support-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

body.ndwh-jet-admin .dashboard-support-card {
  display: grid;
  align-content: start;
  gap: 1.25rem;
  min-height: 208px;
  padding: 1.7rem 1.7rem 1.55rem;
  border-radius: 2rem;
  border: 1px solid rgba(226,232,240,.92);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,255,.96)),
    radial-gradient(circle at bottom right, rgba(27,132,255,.1), transparent 36%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88), 0 18px 36px rgba(15,23,42,.05);
}

body.ndwh-jet-admin .dashboard-support-card__label {
  color: #1f2a44;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .dashboard-support-card__value {
  color: #1b84ff;
  font-size: clamp(2.6rem, 3.6vw, 4rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

body.ndwh-jet-admin .dashboard-support-card__caption {
  margin: 0;
  max-width: 22rem;
  color: var(--ndwh-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

body.ndwh-jet-admin .dashboard-tabs-shell {
  margin-top: 1.25rem;
}

body.ndwh-jet-admin .dashboard-tabs-wrap,
body.ndwh-jet-admin .dashboard-channel-tabs-wrap {
  margin-bottom: 1.15rem;
}

body.ndwh-jet-admin .dashboard-tab-content > .tab-pane,
body.ndwh-jet-admin .dashboard-channel-tab-content > .tab-pane {
  min-width: 0;
}

body.ndwh-jet-admin .dashboard-tab-card {
  margin: 0;
}

body.ndwh-jet-admin .system-status-list {
  display: grid;
}

body.ndwh-jet-admin .system-status-panel {
  padding: 1.6rem 1.9rem 1.25rem;
}

body.ndwh-jet-admin .system-status-panel .section-head {
  margin-bottom: 0.55rem;
  padding-bottom: 1rem;
}

body.ndwh-jet-admin .system-status-panel .section-head h2 {
  margin: 0;
  color: var(--ndwh-shell-ink);
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

body.ndwh-jet-admin .system-status-panel .section-head p {
  max-width: 42rem;
  margin-top: 0.55rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

body.ndwh-jet-admin .system-status-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px dashed rgba(203,213,225,.9);
}

body.ndwh-jet-admin .system-status-row:first-child {
  padding-top: 0.45rem;
}

body.ndwh-jet-admin .system-status-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body.ndwh-jet-admin .system-status-row__main {
  flex: 1;
  min-width: 0;
}

body.ndwh-jet-admin .system-status-row__title {
  margin: 0;
  color: var(--ndwh-shell-ink);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.ndwh-jet-admin .system-status-row__description {
  margin: 0.35rem 0 0;
  color: var(--ndwh-muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

body.ndwh-jet-admin .system-status-row__footer {
  margin-top: 0.95rem;
}

body.ndwh-jet-admin .system-status-row__footer .inline-actions,
body.ndwh-jet-admin .system-status-row__footer .links {
  gap: 0.65rem;
}

body.ndwh-jet-admin .system-status-row__status {
  flex: 0 0 auto;
  min-width: 168px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

body.ndwh-jet-admin .system-status-panel .status-pill {
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

body.ndwh-jet-admin .dashboard-ops-row {
  align-items: start;
  gap: 1.5rem;
}

body.ndwh-jet-admin .row-grid > .col-6,
body.ndwh-jet-admin .row-grid > .col-12 {
  width: auto;
  max-width: none;
  justify-self: stretch;
}

body.ndwh-jet-admin .channel-status-panel,
body.ndwh-jet-admin .sensitive-activity-panel {
  padding: 1.45rem 1.55rem 1.3rem;
}

body.ndwh-jet-admin .channel-status-panel--wide .section-head p,
body.ndwh-jet-admin .sensitive-activity-panel--wide .section-head p {
  max-width: 42rem;
}

body.ndwh-jet-admin .channel-status-panel .section-head,
body.ndwh-jet-admin .sensitive-activity-panel .section-head {
  margin-bottom: 0.55rem;
  padding-bottom: 1rem;
}

body.ndwh-jet-admin .channel-status-panel .section-head h2,
body.ndwh-jet-admin .sensitive-activity-panel .section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 1.8vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

body.ndwh-jet-admin .channel-status-panel .section-head p,
body.ndwh-jet-admin .sensitive-activity-panel .section-head p {
  margin-top: 0.55rem;
  max-width: 24rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

body.ndwh-jet-admin .channel-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.ndwh-jet-admin .channel-status-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

body.ndwh-jet-admin .channel-status-grid--single .channel-status-section {
  max-width: none;
}

body.ndwh-jet-admin .channel-status-section {
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(226,232,240,.88);
  border-radius: 1.45rem;
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

body.ndwh-jet-admin .channel-status-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.85rem;
}

body.ndwh-jet-admin .channel-status-section__title {
  margin: 0;
  color: var(--ndwh-shell-ink);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.ndwh-jet-admin .channel-status-section__subtitle {
  margin: 0.35rem 0 0;
  color: var(--ndwh-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

body.ndwh-jet-admin .channel-status-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.75rem;
}

body.ndwh-jet-admin .channel-status-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 46px;
  padding: 0.68rem 0.82rem;
  border-radius: 1rem;
  background: rgba(248,250,252,.92);
  border: 1px solid rgba(226,232,240,.84);
}

body.ndwh-jet-admin .channel-status-info-row__label {
  color: var(--ndwh-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

body.ndwh-jet-admin .channel-status-info-row__value {
  display: inline-flex;
  justify-content: flex-end;
}

body.ndwh-jet-admin .channel-status-info-row__plain {
  color: var(--ndwh-shell-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

body.ndwh-jet-admin .channel-status-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-top: 0.85rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(226,232,240,.84);
}

body.ndwh-jet-admin .channel-status-action-row {
  display: grid;
  gap: 0.45rem;
  min-width: 180px;
  flex: 1 1 180px;
}

body.ndwh-jet-admin .channel-status-action-row__label {
  color: var(--ndwh-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .channel-status-action-row__controls {
  min-width: 0;
}

body.ndwh-jet-admin .channel-status-section .inline-actions {
  justify-content: flex-start;
  gap: 0.45rem;
}

body.ndwh-jet-admin .channel-status-section .btn.btn-light-primary {
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
}

body.ndwh-jet-admin .channel-status-section .status-pill {
  min-height: 36px;
  padding: 0.5rem 0.9rem;
  font-size: 0.72rem;
}

body.ndwh-jet-admin .sensitive-activity-panel__table {
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 1.45rem;
  background: rgba(255,255,255,.72);
  overflow: hidden;
}

body.ndwh-jet-admin .sensitive-activity-panel__head,
body.ndwh-jet-admin .sensitive-metric-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1.05rem;
}

body.ndwh-jet-admin .sensitive-activity-panel__head {
  color: var(--ndwh-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px dashed rgba(203,213,225,.92);
}

body.ndwh-jet-admin .sensitive-activity-panel__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.ndwh-jet-admin .sensitive-metric-row {
  border-bottom: 1px dashed rgba(226,232,240,.88);
}

body.ndwh-jet-admin .sensitive-metric-row:last-child {
  border-bottom: 0;
}

body.ndwh-jet-admin .sensitive-metric-row:nth-child(odd) {
  border-right: 1px dashed rgba(226,232,240,.88);
}

body.ndwh-jet-admin .sensitive-metric-row__label {
  color: var(--ndwh-shell-ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

body.ndwh-jet-admin .sensitive-metric-row__value {
  color: var(--ndwh-shell-ink);
  font-size: 1.02rem;
  text-align: right;
  font-weight: 800;
}

body.ndwh-jet-admin .sensitive-metric-row--neutral .sensitive-metric-row__value {
  color: #64748b;
}

body.ndwh-jet-admin .sensitive-metric-row--alert .sensitive-metric-row__value {
  color: #f1416c;
}

body.ndwh-jet-admin .dashboard-mini-stat {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

body.ndwh-jet-admin .dashboard-mini-stat__label {
  color: var(--ndwh-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .dashboard-mini-stat__value {
  color: var(--dashboard-mini-accent, var(--ndwh-shell-ink));
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 800;
}

body.ndwh-jet-admin .dashboard-mini-stat--blue { --dashboard-mini-accent: #1b84ff; }
body.ndwh-jet-admin .dashboard-mini-stat--green { --dashboard-mini-accent: #17c653; }
body.ndwh-jet-admin .dashboard-mini-stat--amber { --dashboard-mini-accent: #f6c000; }
body.ndwh-jet-admin .dashboard-mini-stat--rose { --dashboard-mini-accent: #f1416c; }
body.ndwh-jet-admin .dashboard-mini-stat--cyan { --dashboard-mini-accent: #00a3ff; }
body.ndwh-jet-admin .dashboard-mini-stat--indigo { --dashboard-mini-accent: #3f4254; }
body.ndwh-jet-admin .dashboard-mini-stat--violet { --dashboard-mini-accent: #7239ea; }
body.ndwh-jet-admin .dashboard-mini-stat--orange { --dashboard-mini-accent: #ff8a00; }
body.ndwh-jet-admin .dashboard-mini-stat--slate { --dashboard-mini-accent: #7e8299; }
body.ndwh-jet-admin .dashboard-mini-stat--teal { --dashboard-mini-accent: #20c997; }

body.ndwh-jet-admin .dashboard-lists-grid {
  align-items: stretch;
}

body.ndwh-jet-admin .dashboard-list-card {
  display: grid;
  gap: 1.15rem;
  min-height: 100%;
  padding: 1.45rem 1.45rem 1.3rem;
  border-radius: 1.9rem;
  border: 1px solid rgba(226,232,240,.94);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,255,.95)),
    radial-gradient(circle at top right, var(--dashboard-list-accent-soft), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 22px 44px rgba(15,23,42,.06);
}

body.ndwh-jet-admin .dashboard-list-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.05rem;
  border-bottom: 1px dashed rgba(203,213,225,.92);
}

body.ndwh-jet-admin .dashboard-list-card__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: var(--dashboard-list-accent-soft);
  color: var(--dashboard-list-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .dashboard-list-card__title {
  margin: 0.72rem 0 0;
  color: var(--ndwh-shell-ink);
  font-size: clamp(1.45rem, 1.85vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

body.ndwh-jet-admin .dashboard-list-card__subtitle {
  margin: 0.55rem 0 0;
  max-width: 26rem;
  color: var(--ndwh-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

body.ndwh-jet-admin .dashboard-list-card__metric {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 0.2rem;
  min-width: 92px;
  padding: 0.85rem 0.95rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(226,232,240,.86);
  background: rgba(255,255,255,.84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78);
}

body.ndwh-jet-admin .dashboard-list-card__metric strong {
  color: var(--dashboard-list-accent);
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

body.ndwh-jet-admin .dashboard-list-card__metric span {
  color: var(--ndwh-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .dashboard-list-card__table-shell {
  overflow: auto;
  padding: 0 0.4rem;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,250,252,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

body.ndwh-jet-admin .dashboard-list-card__table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

body.ndwh-jet-admin .dashboard-list-card__table thead th {
  padding: 1rem 1.15rem;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(248,250,252,.92);
  border-bottom: 1px dashed rgba(203,213,225,.92);
}

body.ndwh-jet-admin .dashboard-list-card__table thead th:last-child,
body.ndwh-jet-admin .dashboard-list-card__table tbody td:last-child {
  text-align: right;
}

body.ndwh-jet-admin .dashboard-list-card__table thead th:first-child,
body.ndwh-jet-admin .dashboard-list-card__table tbody td:first-child {
  padding-left: 1.4rem;
}

body.ndwh-jet-admin .dashboard-list-card__table thead th:last-child,
body.ndwh-jet-admin .dashboard-list-card__table tbody td:last-child {
  padding-right: 1.4rem;
}

body.ndwh-jet-admin .dashboard-list-card__table tbody td {
  padding: 1rem 1.15rem;
  color: var(--ndwh-shell-ink);
  font-size: 0.96rem;
  line-height: 1.55;
  border-top: 1px dashed rgba(226,232,240,.86);
  background: transparent;
}

body.ndwh-jet-admin .dashboard-list-card__table tbody tr:first-child td {
  border-top: 0;
}

body.ndwh-jet-admin .dashboard-list-card__table tbody tr:hover td {
  background: rgba(248,250,252,.88);
}

body.ndwh-jet-admin .dashboard-list-card__table tbody td:last-child {
  font-weight: 800;
}

body.ndwh-jet-admin .dashboard-list-card__table tbody td.muted,
body.ndwh-jet-admin .dashboard-list-card__table tbody td[colspan] {
  color: #334155;
  font-weight: 700;
  text-align: left;
  padding-top: 1.22rem;
  padding-bottom: 1.22rem;
}

body.ndwh-jet-admin .dashboard-feature-stack {
  display: grid;
  gap: 1.35rem;
}

body.ndwh-jet-admin .dashboard-feature-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.55rem 1.65rem 1.45rem;
  border-radius: 1.95rem;
  border: 1px solid rgba(226,232,240,.94);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,255,.95)),
    radial-gradient(circle at top right, var(--dashboard-feature-accent-soft), transparent 38%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.84), 0 22px 44px rgba(15,23,42,.06);
}

body.ndwh-jet-admin .dashboard-feature-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(203,213,225,.92);
}

body.ndwh-jet-admin .dashboard-feature-card__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: var(--dashboard-feature-accent-soft);
  color: var(--dashboard-feature-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .dashboard-feature-card__title {
  margin: 0.72rem 0 0;
  color: var(--ndwh-shell-ink);
  font-size: clamp(1.45rem, 1.85vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

body.ndwh-jet-admin .dashboard-feature-card__subtitle {
  margin: 0.55rem 0 0;
  max-width: 40rem;
  color: var(--ndwh-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

body.ndwh-jet-admin .dashboard-feature-card__aside {
  display: grid;
  justify-items: end;
  gap: 0.85rem;
  min-width: 164px;
}

body.ndwh-jet-admin .dashboard-feature-card__metric {
  display: grid;
  justify-items: end;
  gap: 0.18rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(226,232,240,.88);
  background: rgba(255,255,255,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

body.ndwh-jet-admin .dashboard-feature-card__metric strong {
  color: var(--dashboard-feature-accent);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

body.ndwh-jet-admin .dashboard-feature-card__metric span {
  color: var(--ndwh-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .dashboard-feature-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
  width: 100%;
}

body.ndwh-jet-admin .dashboard-feature-card__actions form {
  margin: 0;
}

body.ndwh-jet-admin .dashboard-feature-card__actions .btn {
  min-height: 40px;
  padding: 0.66rem 1rem;
}

body.ndwh-jet-admin .dashboard-feature-card__table-shell {
  overflow: auto;
  padding: 0 0.42rem;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,250,252,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

body.ndwh-jet-admin .dashboard-feature-card__table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

body.ndwh-jet-admin .dashboard-feature-card__table thead th {
  padding: 1rem 1.15rem;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(248,250,252,.92);
  border-bottom: 1px dashed rgba(203,213,225,.92);
}

body.ndwh-jet-admin .dashboard-feature-card__table thead th:first-child,
body.ndwh-jet-admin .dashboard-feature-card__table tbody td:first-child {
  padding-left: 1.4rem;
}

body.ndwh-jet-admin .dashboard-feature-card__table thead th:last-child,
body.ndwh-jet-admin .dashboard-feature-card__table tbody td:last-child {
  padding-right: 1.4rem;
}

body.ndwh-jet-admin .dashboard-feature-card__table tbody td {
  padding: 1rem 1.15rem;
  color: var(--ndwh-shell-ink);
  font-size: 0.95rem;
  line-height: 1.58;
  vertical-align: top;
  border-top: 1px dashed rgba(226,232,240,.86);
}

body.ndwh-jet-admin .dashboard-feature-card__table tbody tr:first-child td {
  border-top: 0;
}

body.ndwh-jet-admin .dashboard-feature-card__table tbody tr:hover td {
  background: rgba(248,250,252,.88);
}

body.ndwh-jet-admin .dashboard-feature-card__table tbody td.muted,
body.ndwh-jet-admin .dashboard-feature-card__table tbody td[colspan] {
  color: #334155;
  font-weight: 700;
  padding-top: 1.22rem;
  padding-bottom: 1.22rem;
}

body.ndwh-jet-admin .dashboard-feature-card__table .mono {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}

body.ndwh-jet-admin .dashboard-feature-card__table .links {
  gap: 0.55rem;
}

body.ndwh-jet-admin .dashboard-feature-card__table .links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(27,132,255,.14);
  background: var(--dashboard-feature-accent-soft);
  color: var(--dashboard-feature-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

body.ndwh-jet-admin .dashboard-feature-card__table .status-pill {
  min-height: 34px;
  padding: 0.45rem 0.82rem;
  font-size: 0.72rem;
}

body.ndwh-jet-admin .reports-hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 4% -34% auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(17,24,39,.08), transparent 68%);
  pointer-events: none;
}

body.ndwh-jet-admin .reports-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

body.ndwh-jet-admin .reports-summary-card {
  display: grid;
  gap: 1rem;
  height: 100%;
  padding: 1.45rem 1.45rem 1.3rem;
  border-radius: 1.95rem;
  border: 1px solid rgba(226,232,240,.92);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,255,.95)),
    radial-gradient(circle at top right, var(--reports-summary-accent-soft), transparent 38%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88), 0 20px 40px rgba(15,23,42,.05);
}

body.ndwh-jet-admin .reports-summary-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

body.ndwh-jet-admin .reports-summary-card__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: var(--reports-summary-accent-soft);
  color: var(--reports-summary-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .reports-summary-card__title {
  margin: 0.72rem 0 0;
  color: var(--ndwh-shell-ink);
  font-size: clamp(1.28rem, 1.55vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

body.ndwh-jet-admin .reports-summary-card__subtitle {
  margin: 0.52rem 0 0;
  color: var(--ndwh-muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

body.ndwh-jet-admin .reports-summary-card__metric {
  display: grid;
  justify-items: end;
  gap: 0.18rem;
  min-width: 116px;
  padding: 0.88rem 0.95rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(226,232,240,.88);
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

body.ndwh-jet-admin .reports-summary-card__metric strong {
  color: var(--reports-summary-accent);
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

body.ndwh-jet-admin .reports-summary-card__metric span {
  color: var(--ndwh-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

body.ndwh-jet-admin .reports-summary-card__body {
  display: grid;
  gap: 0.72rem;
}

body.ndwh-jet-admin .reports-summary-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 46px;
  padding: 0.72rem 0.82rem;
  border-radius: 1rem;
  border: 1px solid rgba(226,232,240,.86);
  background: rgba(248,250,252,.9);
}

body.ndwh-jet-admin .reports-summary-card__row span {
  color: var(--ndwh-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

body.ndwh-jet-admin .reports-summary-card__row strong {
  color: var(--ndwh-shell-ink);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.ndwh-jet-admin .reports-summary-card__footer {
  display: flex;
  justify-content: flex-start;
  padding-top: 0.15rem;
}

body.ndwh-jet-admin .reports-summary-card__footer form {
  margin: 0;
}

body.ndwh-jet-admin .reports-summary-card__footer .secondary {
  min-height: 38px;
  padding: 0.55rem 0.92rem;
}

body.ndwh-jet-admin .reports-summary-card__footer .inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

body.ndwh-jet-admin .campaigns-hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 -34% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(23,198,83,.12), transparent 68%);
  pointer-events: none;
}

body.ndwh-jet-admin .campaign-studio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

body.ndwh-jet-admin .campaign-studio-grid--catalog {
  grid-template-columns: 1fr;
}

body.ndwh-jet-admin .campaign-studio-panel {
  margin: 0;
}

body.ndwh-jet-admin .campaign-filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(180px, .8fr)) auto;
  gap: 0.9rem;
  align-items: end;
  margin-bottom: 1.1rem;
}

body.ndwh-jet-admin .campaign-filter-bar__field,
body.ndwh-jet-admin .campaign-form-field {
  display: grid;
  gap: 0.48rem;
}

body.ndwh-jet-admin .campaign-filter-bar__field span,
body.ndwh-jet-admin .campaign-form-field span {
  color: var(--ndwh-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .campaign-filter-bar__field input,
body.ndwh-jet-admin .campaign-filter-bar__field select,
body.ndwh-jet-admin .campaign-form-field input,
body.ndwh-jet-admin .campaign-form-field select,
body.ndwh-jet-admin .campaign-form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(226,232,240,.9);
  background: linear-gradient(180deg, rgba(248,250,252,.96), rgba(243,246,251,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78);
}

body.ndwh-jet-admin .campaign-filter-bar__field input:focus,
body.ndwh-jet-admin .campaign-filter-bar__field select:focus,
body.ndwh-jet-admin .campaign-form-field input:focus,
body.ndwh-jet-admin .campaign-form-field select:focus,
body.ndwh-jet-admin .campaign-form-field textarea:focus {
  border-color: rgba(27,132,255,.38);
  box-shadow: 0 0 0 0.24rem rgba(27,132,255,.1);
}

body.ndwh-jet-admin .campaign-filter-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

body.ndwh-jet-admin .campaign-studio-form {
  display: grid;
  gap: 1.2rem;
}

body.ndwh-jet-admin .campaign-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
  display: grid;
  gap: 1.1rem;
}

body.ndwh-jet-admin .campaign-fieldset--catalog {
  gap: 0;
}

body.ndwh-jet-admin .campaign-catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.82fr);
  gap: 1rem;
  align-items: start;
}

body.ndwh-jet-admin .campaign-catalog-main,
body.ndwh-jet-admin .campaign-catalog-aside {
  display: grid;
  gap: 1rem;
}

body.ndwh-jet-admin .campaign-catalog-card {
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(226,232,240,.92);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.95));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

body.ndwh-jet-admin .campaign-catalog-card--aside {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,255,.95)),
    radial-gradient(circle at top right, rgba(27,132,255,.08), transparent 46%);
}

body.ndwh-jet-admin .campaign-catalog-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px dashed rgba(203,213,225,.92);
}

body.ndwh-jet-admin .campaign-catalog-card__header h4 {
  margin: 0;
  color: var(--ndwh-shell-ink);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.ndwh-jet-admin .campaign-catalog-card__header p {
  margin: 0.4rem 0 0;
  color: var(--ndwh-muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

body.ndwh-jet-admin .campaign-catalog-card__body {
  display: grid;
  gap: 1rem;
}

body.ndwh-jet-admin .campaign-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.ndwh-jet-admin .campaign-form-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.ndwh-jet-admin .campaign-form-grid--dual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.ndwh-jet-admin .campaign-form-field small {
  font-size: 0.8rem;
  line-height: 1.55;
}

body.ndwh-jet-admin .campaign-form-field--full {
  grid-column: 1 / -1;
}

body.ndwh-jet-admin .campaign-textarea {
  min-height: 142px;
}

body.ndwh-jet-admin .campaign-textarea--tall {
  min-height: 250px;
}

body.ndwh-jet-admin .campaign-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.95rem;
  border-top: 1px dashed rgba(203,213,225,.9);
}

body.ndwh-jet-admin .campaign-inline-note {
  color: var(--ndwh-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

body.ndwh-jet-admin .campaign-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

body.ndwh-jet-admin .campaign-check-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.85rem;
  min-height: 96px;
  padding: 1rem 1rem;
  border-radius: 1.1rem;
  border: 1px dashed rgba(226,232,240,.92);
  background: rgba(248,250,252,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

body.ndwh-jet-admin .campaign-check-card input[type="checkbox"] {
  margin: 0.1rem 0 0;
  width: 18px;
  height: 18px;
  accent-color: #1b84ff;
}

body.ndwh-jet-admin .campaign-check-card__copy {
  display: grid;
  gap: 0.32rem;
}

body.ndwh-jet-admin .campaign-check-card__copy strong {
  color: var(--ndwh-shell-ink);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 800;
  text-transform: none;
  letter-spacing: normal;
}

body.ndwh-jet-admin .campaign-check-card__copy small {
  color: var(--ndwh-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

body.ndwh-jet-admin .campaign-channel-matrix {
  overflow: auto;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,250,252,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

body.ndwh-jet-admin .campaign-note-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

body.ndwh-jet-admin .campaign-note-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ndwh-muted);
  font-size: 0.84rem;
  line-height: 1.62;
}

body.ndwh-jet-admin .campaign-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1b84ff;
  box-shadow: 0 0 0 5px rgba(27,132,255,.12);
}

body.ndwh-jet-admin .campaign-quick-stats {
  display: grid;
  gap: 0.75rem;
}

body.ndwh-jet-admin .campaign-quick-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
  padding: 0.78rem 0.86rem;
  border-radius: 1rem;
  border: 1px solid rgba(226,232,240,.86);
  background: rgba(255,255,255,.88);
}

body.ndwh-jet-admin .campaign-quick-stat span {
  color: var(--ndwh-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.ndwh-jet-admin .campaign-quick-stat strong {
  color: var(--ndwh-shell-ink);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: right;
}

body.ndwh-jet-admin .campaign-catalog-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}

body.ndwh-jet-admin .campaign-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

body.ndwh-jet-admin .campaign-channel-matrix .dashboard-feature-card__table {
  min-width: 1180px;
}

body.ndwh-jet-admin .campaign-channel-matrix .dashboard-feature-card__table thead th {
  white-space: nowrap;
}

body.ndwh-jet-admin .campaign-channel-matrix .dashboard-feature-card__table tbody td {
  vertical-align: middle;
}

body.ndwh-jet-admin .campaign-channel-matrix input[type="text"],
body.ndwh-jet-admin .campaign-channel-matrix input[type="number"] {
  width: 100%;
  min-width: 92px;
}

body.ndwh-jet-admin .campaign-channel-matrix input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #1b84ff;
}

body.ndwh-jet-admin .campaigns-reference-grid .dashboard-list-card__table thead th:last-child,
body.ndwh-jet-admin .campaigns-reference-grid .dashboard-list-card__table tbody td:last-child {
  text-align: left;
}

body.ndwh-jet-admin .campaigns-reference-grid {
  grid-template-columns: 1fr !important;
  gap: 1.2rem;
}

body.ndwh-jet-admin .campaigns-reference-grid .dashboard-list-card {
  grid-column: 1 / -1;
  min-width: 0;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin::before {
  opacity: 0.34;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 16% 18%, rgba(37,99,235,.24), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(14,165,233,.18), transparent 22%),
    radial-gradient(circle at 78% 78%, rgba(99,102,241,.14), transparent 24%),
    linear-gradient(180deg, rgba(2,6,23,.06), rgba(2,6,23,.44));
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-hero-shell {
  background:
    linear-gradient(180deg, rgba(15,23,42,.92), rgba(15,23,42,.82)),
    radial-gradient(circle at top right, rgba(27,132,255,.16), transparent 30%);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-hero-header__stamp,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-mini-stat,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-hero-card,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-support-card,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__metric,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__table-shell,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__metric,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table-shell {
  border-color: rgba(71,85,105,.72);
  background-color: rgba(15,23,42,.78);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .app-sidebar {
  box-shadow: 24px 0 54px rgba(2,6,23,.48), inset -1px 0 0 rgba(148,163,184,.05);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .app-sidebar::after {
  content: "";
  position: absolute;
  inset: auto -18% -10% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(14,165,233,.14), transparent 68%);
  pointer-events: none;
}

body.ndwh-jet-admin .ndwh-toolbar-panel {
  position: relative;
  overflow: hidden;
}

body.ndwh-jet-admin .ndwh-toolbar-panel::after {
  content: "";
  position: absolute;
  inset: auto -12% -62% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(27,132,255,.15), transparent 70%);
  pointer-events: none;
}

body.ndwh-jet-admin .ndwh-toolbar-panel > * {
  position: relative;
  z-index: 1;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .btn.btn-primary {
  box-shadow: 0 18px 34px rgba(2,6,23,.34);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .btn.btn-light-primary,
html[data-bs-theme="dark"] body.ndwh-jet-admin .btn.btn-light-danger,
html[data-bs-theme="dark"] body.ndwh-jet-admin .btn.btn-light {
  border-color: rgba(71,85,105,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 16px 30px rgba(2,6,23,.18);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .btn.btn-light-primary {
  color: #8dc6ff;
  background: linear-gradient(180deg, rgba(15,23,42,.92), rgba(30,41,59,.88));
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .btn.btn-light-danger {
  color: #fda4af;
  background: linear-gradient(180deg, rgba(15,23,42,.92), rgba(59,23,33,.88));
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .btn.btn-light {
  color: #e2e8f0;
  background: linear-gradient(180deg, rgba(15,23,42,.92), rgba(30,41,59,.88));
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-hero-card {
  background:
    linear-gradient(180deg, rgba(15,23,42,.92), rgba(30,41,59,.86)),
    radial-gradient(circle at top right, var(--dashboard-accent-soft), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 18px 36px rgba(2,6,23,.24);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-support-card {
  background:
    linear-gradient(180deg, rgba(15,23,42,.92), rgba(30,41,59,.86)),
    radial-gradient(circle at bottom right, rgba(27,132,255,.16), transparent 36%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 18px 36px rgba(2,6,23,.24);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card {
  background:
    linear-gradient(180deg, rgba(15,23,42,.92), rgba(30,41,59,.86)),
    radial-gradient(circle at top right, var(--dashboard-list-accent-soft), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 18px 36px rgba(2,6,23,.24);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card {
  background:
    linear-gradient(180deg, rgba(15,23,42,.92), rgba(30,41,59,.86)),
    radial-gradient(circle at top right, var(--dashboard-feature-accent-soft), transparent 38%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 18px 36px rgba(2,6,23,.24);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .reports-summary-card,
html[data-bs-theme="dark"] body.ndwh-jet-admin .reports-summary-card__metric,
html[data-bs-theme="dark"] body.ndwh-jet-admin .reports-summary-card__row {
  border-color: rgba(71,85,105,.72);
  background-color: rgba(15,23,42,.78);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .reports-summary-card {
  background:
    linear-gradient(180deg, rgba(15,23,42,.92), rgba(30,41,59,.86)),
    radial-gradient(circle at top right, var(--reports-summary-accent-soft), transparent 38%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 18px 36px rgba(2,6,23,.24);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .reports-summary-card__metric {
  background: rgba(15,23,42,.72);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .reports-summary-card__title,
html[data-bs-theme="dark"] body.ndwh-jet-admin .reports-summary-card__row strong {
  color: #e2e8f0;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .reports-summary-card__subtitle,
html[data-bs-theme="dark"] body.ndwh-jet-admin .reports-summary-card__metric span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .reports-summary-card__row span {
  color: #94a3b8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-catalog-card,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-check-card,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-channel-matrix {
  border-color: rgba(71,85,105,.72);
  background: rgba(15,23,42,.72);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-catalog-card__header,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-channel-matrix .dashboard-feature-card__table thead th,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-channel-matrix .dashboard-feature-card__table tbody td,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-form-actions {
  border-color: rgba(71,85,105,.72);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-check-card__copy strong,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-catalog-card__header h4,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-quick-stat strong {
  color: #e2e8f0;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-inline-note,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-catalog-card__header p,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-check-card__copy small,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-note-list li,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-quick-stat span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-filter-bar__field span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-form-field span {
  color: #94a3b8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-filter-bar__field input,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-filter-bar__field select,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-form-field input,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-form-field select,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-form-field textarea,
html[data-bs-theme="dark"] body.ndwh-jet-admin .campaign-quick-stat {
  border-color: rgba(71,85,105,.6);
  background: linear-gradient(180deg, rgba(8,15,29,.94), rgba(11,19,35,.9));
  color: #e2e8f0;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__table-shell {
  background: rgba(15,23,42,.72);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table-shell {
  background: rgba(15,23,42,.72);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__head,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__table thead th,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__table tbody td {
  border-color: rgba(71,85,105,.72);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__head,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table thead th,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table tbody td {
  border-color: rgba(71,85,105,.72);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__table thead th,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__table tbody tr:hover td {
  background: rgba(15,23,42,.82);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table thead th,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table tbody tr:hover td {
  background: rgba(15,23,42,.82);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__title,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__table tbody td,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__table tbody td.muted,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__table tbody td[colspan] {
  color: #e2e8f0;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__title,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table tbody td,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table tbody td.muted,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table tbody td[colspan],
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table .links a {
  color: #e2e8f0;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__subtitle,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__metric span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-list-card__table thead th {
  color: #94a3b8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__subtitle,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__metric span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table thead th {
  color: #94a3b8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-feature-card__table .links a {
  border-color: rgba(71,85,105,.72);
  background: rgba(30,41,59,.82);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .ndwh-toolbar-panel {
  background-image:
    linear-gradient(180deg, rgba(8,15,29,.92), rgba(10,18,34,.82)),
    radial-gradient(circle at top right, rgba(27,132,255,.14), transparent 34%);
  box-shadow: 0 26px 48px rgba(2,6,23,.38);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .badge-light {
  color: #cbd5e1;
  border: 1px solid rgba(71,85,105,.58);
  background: rgba(30,41,59,.82);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .badge-light-primary {
  color: #8dc6ff;
  border: 1px solid rgba(27,132,255,.22);
  background: rgba(27,132,255,.16);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .page-heading {
  color: #f8fbff !important;
  text-shadow: 0 12px 30px rgba(15,23,42,.3);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .text-muted,
html[data-bs-theme="dark"] body.ndwh-jet-admin .ndwh-toolbar-role {
  color: #9fb0c8 !important;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .metric {
  background:
    linear-gradient(180deg, rgba(9,16,30,.96), rgba(15,23,42,.92)),
    radial-gradient(circle at bottom right, rgba(37,99,235,.12), transparent 30%);
  border-color: rgba(71,85,105,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 20px 42px rgba(2,6,23,.28);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .metric h3 {
  color: #86b6ff;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .metric span {
  color: #c3d1e3;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .contacts-inline-form label span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .contacts-summary,
html[data-bs-theme="dark"] body.ndwh-jet-admin .contacts-source-copy {
  color: #9fb0c8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .blocked-create-form label span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .blocked-inline-form label span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .blocked-cell-copy {
  color: #9fb0c8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .abuse-cell-copy {
  color: #9fb0c8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-filter-form label span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-cell-copy {
  color: #9fb0c8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .support-filter-form label span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .support-create-form label span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .support-stack-form label span {
  color: #9fb0c8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .support-detail-copy,
html[data-bs-theme="dark"] body.ndwh-jet-admin .support-guide-list li {
  border-color: rgba(71, 85, 105, 0.5);
  background: rgba(15, 23, 42, 0.38);
  color: #cbd5e1;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-hero {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.9)),
    radial-gradient(circle at top right, rgba(27, 132, 255, 0.18), transparent 34%);
  border-color: rgba(59, 130, 246, 0.2);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-hero p,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-site-note,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-checklist li,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-aside-card--hint p {
  color: #b8c7da;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-hero__eyebrow,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-aside-card__eyebrow {
  background: rgba(37, 99, 235, 0.16);
  color: #8dc6ff;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-chip {
  background: rgba(15, 23, 42, 0.84);
  border-color: rgba(59, 130, 246, 0.2);
  color: #cbd5e1;
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.24);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-chip strong,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-aside-stat strong {
  color: #eef4ff;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-field span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-aside-stat span {
  color: #9fb0c8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-field input,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-field select,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-field textarea {
  background: rgba(15, 23, 42, 0.86);
  color: #e2e8f0;
  border-color: rgba(71, 85, 105, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-field input:focus,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-field select:focus,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-field textarea:focus {
  box-shadow:
    0 0 0 4px rgba(59, 130, 246, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-section--site,
html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-aside-card {
  border-color: rgba(71, 85, 105, 0.58);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-section--site {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(17, 24, 39, 0.88)),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 34%);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-site-note {
  background: rgba(15, 23, 42, 0.64);
  border-color: rgba(71, 85, 105, 0.72);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-aside-card--summary {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(17, 24, 39, 0.9)),
    radial-gradient(circle at top right, rgba(27, 132, 255, 0.16), transparent 36%);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .knowledge-editor-aside-stat {
  border-bottom-color: rgba(71, 85, 105, 0.58);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .users-create-form label > span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .users-audit-form label > span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .users-cell-copy,
html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-cell-copy,
html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-path-copy,
html[data-bs-theme="dark"] body.ndwh-jet-admin .templates-path-copy {
  color: #9fb0c8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .users-header-actions a,
html[data-bs-theme="dark"] body.ndwh-jet-admin .templates-page table a {
  border-color: rgba(59,130,246,.22);
  background: rgba(30, 41, 59, 0.88);
  color: #8dc6ff;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-action-link {
  --profiles-action-border: rgba(71, 85, 105, 0.72);
  --profiles-action-bg: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(17, 24, 39, 0.86));
  --profiles-action-shadow: 0 22px 36px rgba(2, 6, 23, 0.28);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-action-link:hover,
html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-action-link:focus-visible {
  box-shadow:
    0 24px 42px rgba(2, 6, 23, 0.34),
    0 0 0 4px color-mix(in srgb, var(--profiles-action-accent) 14%, transparent);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-action-link__label {
  color: #eef4ff;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-action-link__kicker {
  color: color-mix(in srgb, var(--profiles-action-accent) 62%, #cbd5e1);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-ndsched-profile,
html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-ndsched-flow {
  border-color: rgba(71, 85, 105, 0.72);
  background: rgba(15, 23, 42, 0.64);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-ndsched-profile h3,
html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-ndsched-flow h3 {
  color: #eef4ff;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-ndsched-profile p,
html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-ndsched-flow p,
html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-ndsched-meta dt,
html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-ndsched-list span {
  color: #9fb0c8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-ndsched-meta dd,
html[data-bs-theme="dark"] body.ndwh-jet-admin .profiles-ndsched-list p {
  color: #dbe7ff;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-overview-card,
html[data-bs-theme="dark"] body.ndwh-jet-admin .logs-overview-card,
html[data-bs-theme="dark"] body.ndwh-jet-admin .password-hero-card,
html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-hero-card {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(17, 24, 39, 0.9));
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-overview-eyebrow,
html[data-bs-theme="dark"] body.ndwh-jet-admin .logs-overview-eyebrow,
html[data-bs-theme="dark"] body.ndwh-jet-admin .password-hero-eyebrow,
html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-hero-eyebrow {
  border-color: rgba(59, 130, 246, 0.24);
  background: rgba(30, 41, 59, 0.88);
  color: #8dc6ff;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-overview-copy p,
html[data-bs-theme="dark"] body.ndwh-jet-admin .logs-overview-copy p,
html[data-bs-theme="dark"] body.ndwh-jet-admin .password-hero-copy p,
html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-hero-copy p,
html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-policy-form label > span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-audit-form label > span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .password-form label > span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-form label > span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-info-row span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .logs-meta-card span,
html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-note-list,
html[data-bs-theme="dark"] body.ndwh-jet-admin .password-guide-list li,
html[data-bs-theme="dark"] body.ndwh-jet-admin .logs-empty-state {
  color: #94a3b8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-permissions-shell,
html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-info-row,
html[data-bs-theme="dark"] body.ndwh-jet-admin .logs-meta-card,
html[data-bs-theme="dark"] body.ndwh-jet-admin .password-guide-list li,
html[data-bs-theme="dark"] body.ndwh-jet-admin .logs-empty-state {
  border-color: rgba(71, 85, 105, 0.72);
  background: rgba(15, 23, 42, 0.84);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-permission-toggle {
  border-color: rgba(71, 85, 105, 0.72);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(17, 24, 39, 0.86));
  box-shadow: 0 16px 28px rgba(2, 6, 23, 0.2);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-permission-toggle__switch {
  background: linear-gradient(180deg, rgba(71, 85, 105, 0.82), rgba(51, 65, 85, 0.9));
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.06);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-permission-toggle__switch::after {
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.28);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-permission-toggle--active {
  border-color: rgba(96, 165, 250, 0.5);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(15, 23, 42, 0.9));
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-permission-toggle input:checked + .roles-permission-toggle__switch,
html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-permission-toggle--active .roles-permission-toggle__switch {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  box-shadow: 0 10px 18px rgba(29, 78, 216, 0.28);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-permission-toggle__body strong,
html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-info-row strong,
html[data-bs-theme="dark"] body.ndwh-jet-admin .logs-meta-card strong,
html[data-bs-theme="dark"] body.ndwh-jet-admin .password-guide-list strong {
  color: #eef4ff;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-permission-toggle__body small {
  color: #9fb0c8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-code-shell,
html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-viewer-shell,
html[data-bs-theme="dark"] body.ndwh-jet-admin .logs-code-shell {
  border-color: rgba(71, 85, 105, 0.72);
  box-shadow: 0 24px 42px rgba(2, 6, 23, 0.34);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-chip {
  border-color: rgba(59, 130, 246, 0.24);
  background: rgba(30, 41, 59, 0.88);
  color: #8dc6ff;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .roles-table-shell a,
html[data-bs-theme="dark"] body.ndwh-jet-admin .logs-table-link,
html[data-bs-theme="dark"] body.ndwh-jet-admin .editor-table-link {
  border-color: rgba(59,130,246,.22);
  background: rgba(30, 41, 59, 0.88);
  color: #8dc6ff;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .users-toggle {
  border-color: rgba(71,85,105,.72);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(17, 24, 39, 0.86));
  color: #e2e8f0;
  box-shadow: 0 16px 28px rgba(2, 6, 23, 0.2);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .users-toggle__switch {
  background: linear-gradient(180deg, rgba(71, 85, 105, 0.82), rgba(51, 65, 85, 0.9));
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.06);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .users-toggle__switch::after {
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.28);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .users-toggle input[type="checkbox"]:checked + .users-toggle__switch {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  box-shadow: 0 10px 18px rgba(29, 78, 216, 0.28);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .users-toggle__label {
  color: #e2e8f0;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .ndwh-theme-widget {
  box-shadow: 0 28px 56px rgba(2,6,23,.44);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .ndwh-theme-widget:hover,
html[data-bs-theme="dark"] body.ndwh-jet-admin .ndwh-theme-widget:focus-visible {
  box-shadow: 0 32px 62px rgba(2,6,23,.54);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-support-card__label {
  color: #e2e8f0;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-support-card__caption {
  color: #94a3b8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .system-status-row {
  border-bottom-color: rgba(71,85,105,.78);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .channel-status-section,
html[data-bs-theme="dark"] body.ndwh-jet-admin .sensitive-activity-panel__table,
html[data-bs-theme="dark"] body.ndwh-jet-admin .channel-status-info-row {
  border-color: rgba(71,85,105,.72);
  background: rgba(15,23,42,.72);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .sensitive-metric-row,
html[data-bs-theme="dark"] body.ndwh-jet-admin .sensitive-activity-panel__head {
  border-bottom-color: rgba(71,85,105,.72);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .channel-status-section__actions,
html[data-bs-theme="dark"] body.ndwh-jet-admin .sensitive-metric-row:nth-child(odd) {
  border-color: rgba(71,85,105,.72);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .channel-status-info-row__plain,
html[data-bs-theme="dark"] body.ndwh-jet-admin .sensitive-metric-row__label,
html[data-bs-theme="dark"] body.ndwh-jet-admin .sensitive-metric-row__value {
  color: #e2e8f0;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .sensitive-metric-row--neutral .sensitive-metric-row__value {
  color: #94a3b8;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .dashboard-hero-card__grid-line {
  stroke: rgba(148,163,184,.22);
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .text-gray-900,
html[data-bs-theme="dark"] body.ndwh-jet-admin .page-heading,
html[data-bs-theme="dark"] body.ndwh-jet-admin .text-muted,
html[data-bs-theme="dark"] body.ndwh-jet-admin .form-label,
html[data-bs-theme="dark"] body.ndwh-jet-admin .table tbody td,
html[data-bs-theme="dark"] body.ndwh-jet-admin .table thead th {
  color: inherit !important;
}

html[data-bs-theme="dark"] body.ndwh-jet-admin .form-control,
html[data-bs-theme="dark"] body.ndwh-jet-admin .form-select,
html[data-bs-theme="dark"] body.ndwh-jet-admin textarea.form-control {
  background-color: rgba(15,23,42,.84);
  color: #e2e8f0;
  border-color: rgba(71,85,105,.72);
}

@media (max-width: 1280px) {
  body.ndwh-jet-admin .dashboard-support-grid,
  body.ndwh-jet-admin .dashboard-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .reports-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .campaign-form-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .campaign-catalog-layout {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .campaign-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .channel-status-section__grid {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .knowledge-editor-layout {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .knowledge-editor-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .knowledge-editor-grid--meta,
  body.ndwh-jet-admin .knowledge-editor-grid--site {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .knowledge-editor-grid--links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .channel-status-grid,
  body.ndwh-jet-admin .sensitive-activity-panel__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  body.ndwh-jet-admin .dashboard-hero-grid,
  body.ndwh-jet-admin .dashboard-support-grid,
  body.ndwh-jet-admin .dashboard-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .dashboard-hero-header {
    flex-direction: column;
  }

  body.ndwh-jet-admin .dashboard-hero-header__actions {
    width: 100%;
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .channel-status-action-row {
    min-width: calc(50% - 0.5rem);
  }

  body.ndwh-jet-admin .channel-status-section .inline-actions {
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .dashboard-list-card__head {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .dashboard-feature-card__head {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .dashboard-feature-card__aside,
  body.ndwh-jet-admin .dashboard-feature-card__metric,
  body.ndwh-jet-admin .dashboard-feature-card__actions {
    justify-items: start;
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .reports-summary-grid {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .reports-summary-card__head {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .reports-summary-card__metric {
    justify-items: start;
  }

  body.ndwh-jet-admin .reports-summary-card__metric span {
    text-align: left;
  }

  body.ndwh-jet-admin .campaign-studio-grid,
  body.ndwh-jet-admin .campaign-catalog-layout,
  body.ndwh-jet-admin .campaign-checkbox-grid,
  body.ndwh-jet-admin .campaign-form-grid,
  body.ndwh-jet-admin .campaign-form-grid--compact,
  body.ndwh-jet-admin .campaign-form-grid--dual,
  body.ndwh-jet-admin .campaign-filter-bar {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .campaign-filter-bar__actions,
  body.ndwh-jet-admin .campaign-form-actions {
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .contacts-page .metric span {
    max-width: none;
  }

  body.ndwh-jet-admin .contacts-filters-card .section-head {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .contacts-filters-card,
  body.ndwh-jet-admin .contacts-table-card {
    padding: 1.35rem 1.45rem 1.25rem;
  }

  body.ndwh-jet-admin .blocked-create-card,
  body.ndwh-jet-admin .blocked-filters-card,
  body.ndwh-jet-admin .blocked-table-card {
    padding: 1.35rem 1.45rem 1.25rem;
  }

  body.ndwh-jet-admin .abuse-active-card,
  body.ndwh-jet-admin .abuse-history-card {
    padding: 1.35rem 1.45rem 1.25rem;
  }

  body.ndwh-jet-admin .knowledge-filters-card,
  body.ndwh-jet-admin .knowledge-breakdown-card,
  body.ndwh-jet-admin .knowledge-candidates-card,
  body.ndwh-jet-admin .knowledge-entries-card {
    padding: 1.35rem 1.45rem 1.25rem;
  }

  body.ndwh-jet-admin .support-list-card,
  body.ndwh-jet-admin .support-config-card,
  body.ndwh-jet-admin .support-settings-card,
  body.ndwh-jet-admin .support-diagnostics-card,
  body.ndwh-jet-admin .support-guide-card,
  body.ndwh-jet-admin .support-form-card,
  body.ndwh-jet-admin .support-detail-card,
  body.ndwh-jet-admin .support-table-card,
  body.ndwh-jet-admin .support-copy-card {
    padding: 1.35rem 1.45rem 1.25rem;
  }

  body.ndwh-jet-admin .knowledge-editor-hero,
  body.ndwh-jet-admin .knowledge-editor-section,
  body.ndwh-jet-admin .knowledge-editor-aside-card {
    padding: 1.35rem 1.45rem 1.25rem;
  }

  body.ndwh-jet-admin .users-table-card,
  body.ndwh-jet-admin .users-audit-card,
  body.ndwh-jet-admin .users-create-card,
  body.ndwh-jet-admin .profiles-table-card,
  body.ndwh-jet-admin .templates-admin-card,
  body.ndwh-jet-admin .templates-profile-card {
    padding: 1.35rem 1.45rem 1.25rem;
  }

  body.ndwh-jet-admin .contacts-filters-card .inline-actions {
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .contacts-inline-form label {
    min-width: 0;
  }

  body.ndwh-jet-admin .contacts-inline-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .contacts-form-actions {
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .contacts-table-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body.ndwh-jet-admin .blocked-create-grid,
  body.ndwh-jet-admin .blocked-inline-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .blocked-create-actions,
  body.ndwh-jet-admin .blocked-form-actions {
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .blocked-table-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body.ndwh-jet-admin .abuse-page .metric span {
    max-width: none;
  }

  body.ndwh-jet-admin .abuse-table-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body.ndwh-jet-admin .knowledge-page .metric span {
    max-width: none;
  }

  body.ndwh-jet-admin .support-page .metric span {
    max-width: none;
  }

  body.ndwh-jet-admin .knowledge-filters-card .section-head {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .support-list-card .section-head,
  body.ndwh-jet-admin .support-settings-card .section-head,
  body.ndwh-jet-admin .support-form-card .section-head,
  body.ndwh-jet-admin .support-detail-card .section-head {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .knowledge-header-actions,
  body.ndwh-jet-admin .knowledge-form-actions {
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .support-header-actions,
  body.ndwh-jet-admin .support-form-actions {
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .knowledge-filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .support-filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .support-filter-form__search {
    grid-column: 1 / -1;
  }

  body.ndwh-jet-admin .knowledge-table-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body.ndwh-jet-admin .support-table-shell,
  body.ndwh-jet-admin .support-data-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body.ndwh-jet-admin .support-form-grid--three,
  body.ndwh-jet-admin .support-form-grid--two {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .knowledge-editor-hero {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .knowledge-editor-hero__actions,
  body.ndwh-jet-admin .knowledge-editor-actions {
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .knowledge-editor-grid--meta,
  body.ndwh-jet-admin .knowledge-editor-grid--content,
  body.ndwh-jet-admin .knowledge-editor-grid--responses,
  body.ndwh-jet-admin .knowledge-editor-grid--links,
  body.ndwh-jet-admin .knowledge-editor-grid--site,
  body.ndwh-jet-admin .knowledge-editor-aside {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .users-create-grid,
  body.ndwh-jet-admin .scope-catalog-inline-grid,
  body.ndwh-jet-admin .users-audit-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .users-create-actions,
  body.ndwh-jet-admin .users-audit-actions {
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .users-table-shell,
  body.ndwh-jet-admin .profiles-table-shell,
  body.ndwh-jet-admin .templates-table-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body.ndwh-jet-admin .profiles-action-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

  body.ndwh-jet-admin .profiles-ndsched-card {
    padding: 1.35rem 1.45rem 1.25rem;
  }

  body.ndwh-jet-admin .profiles-ndsched-grid,
  body.ndwh-jet-admin .profiles-ndsched-grid--detail,
  body.ndwh-jet-admin .profiles-ndsched-meta {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .profiles-ndsched-profile-head,
  body.ndwh-jet-admin .profiles-ndsched-flow-head {
    display: grid;
  }

  body.ndwh-jet-admin .roles-overview-card,
  body.ndwh-jet-admin .roles-policy-card,
  body.ndwh-jet-admin .roles-audit-card,
  body.ndwh-jet-admin .logs-overview-card,
  body.ndwh-jet-admin .logs-list-card,
  body.ndwh-jet-admin .logs-viewer-card,
  body.ndwh-jet-admin .password-hero-card,
  body.ndwh-jet-admin .password-form-card,
  body.ndwh-jet-admin .password-guide-card,
  body.ndwh-jet-admin .editor-hero-card,
  body.ndwh-jet-admin .editor-main-card,
  body.ndwh-jet-admin .editor-side-card,
  body.ndwh-jet-admin .editor-backups-card,
  body.ndwh-jet-admin .editor-viewer-card,
  body.ndwh-jet-admin .editor-workbench-card {
    padding: 1.35rem 1.45rem 1.25rem;
  }

  body.ndwh-jet-admin .roles-overview-top,
  body.ndwh-jet-admin .logs-overview-top,
  body.ndwh-jet-admin .password-hero-card,
  body.ndwh-jet-admin .editor-hero-card,
  body.ndwh-jet-admin .logs-layout,
  body.ndwh-jet-admin .password-layout,
  body.ndwh-jet-admin .editor-main-layout,
  body.ndwh-jet-admin .roles-policies-grid {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .roles-overview-actions,
  body.ndwh-jet-admin .logs-overview-actions,
  body.ndwh-jet-admin .password-hero-chips,
  body.ndwh-jet-admin .editor-hero-actions,
  body.ndwh-jet-admin .roles-audit-actions,
  body.ndwh-jet-admin .roles-policy-actions,
  body.ndwh-jet-admin .password-actions,
  body.ndwh-jet-admin .editor-form-actions {
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .roles-overview-metrics,
  body.ndwh-jet-admin .logs-overview-metrics,
  body.ndwh-jet-admin .logs-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .roles-policy-form-grid,
  body.ndwh-jet-admin .roles-audit-form,
  body.ndwh-jet-admin .roles-permissions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ndwh-jet-admin .roles-table-shell,
  body.ndwh-jet-admin .logs-table-shell,
  body.ndwh-jet-admin .editor-table-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

}

@media (max-width: 640px) {
  body.ndwh-jet-admin .ndwh-page-surface {
    padding-bottom: calc(7rem + env(safe-area-inset-bottom, 0px));
  }

  body.ndwh-jet-admin .dashboard-hero-shell {
    padding: 1rem;
    border-radius: 1.4rem;
  }

  body.ndwh-jet-admin .dashboard-hero-grid,
  body.ndwh-jet-admin .dashboard-support-grid,
  body.ndwh-jet-admin .dashboard-mini-grid {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .dashboard-hero-card,
  body.ndwh-jet-admin .dashboard-support-card {
    min-height: 220px;
    padding: 1.1rem;
  }

  body.ndwh-jet-admin .dashboard-list-card {
    padding: 1.1rem;
    border-radius: 1.45rem;
  }

  body.ndwh-jet-admin .dashboard-feature-card {
    padding: 1.15rem 1rem 1rem;
    border-radius: 1.5rem;
  }

  body.ndwh-jet-admin .reports-summary-card {
    padding: 1.15rem 1rem 1rem;
    border-radius: 1.5rem;
  }

  body.ndwh-jet-admin .campaigns-reference-grid {
    grid-template-columns: 1fr !important;
  }

  body.ndwh-jet-admin .campaign-check-card {
    align-items: flex-start;
  }

  body.ndwh-jet-admin .campaign-catalog-card {
    padding: 1.1rem 1rem 1rem;
    border-radius: 1.2rem;
  }

  body.ndwh-jet-admin .contacts-inline-form label {
    min-width: 100%;
  }

  body.ndwh-jet-admin .contacts-inline-form {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .contacts-filters-card,
  body.ndwh-jet-admin .contacts-table-card {
    padding: 1.15rem 1rem 1.1rem;
  }

  body.ndwh-jet-admin .blocked-create-card,
  body.ndwh-jet-admin .blocked-filters-card,
  body.ndwh-jet-admin .blocked-table-card {
    padding: 1.15rem 1rem 1.1rem;
  }

  body.ndwh-jet-admin .abuse-active-card,
  body.ndwh-jet-admin .abuse-history-card {
    padding: 1.15rem 1rem 1.1rem;
  }

  body.ndwh-jet-admin .knowledge-filters-card,
  body.ndwh-jet-admin .knowledge-breakdown-card,
  body.ndwh-jet-admin .knowledge-candidates-card,
  body.ndwh-jet-admin .knowledge-entries-card {
    padding: 1.15rem 1rem 1.1rem;
  }

  body.ndwh-jet-admin .support-list-card,
  body.ndwh-jet-admin .support-config-card,
  body.ndwh-jet-admin .support-settings-card,
  body.ndwh-jet-admin .support-diagnostics-card,
  body.ndwh-jet-admin .support-guide-card,
  body.ndwh-jet-admin .support-form-card,
  body.ndwh-jet-admin .support-detail-card,
  body.ndwh-jet-admin .support-table-card,
  body.ndwh-jet-admin .support-copy-card {
    padding: 1.15rem 1rem 1.1rem;
    border-radius: 1.25rem;
  }

  body.ndwh-jet-admin .knowledge-editor-hero,
  body.ndwh-jet-admin .knowledge-editor-section,
  body.ndwh-jet-admin .knowledge-editor-aside-card {
    padding: 1.15rem 1rem 1.1rem;
    border-radius: 1.25rem;
  }

  body.ndwh-jet-admin .users-table-card,
  body.ndwh-jet-admin .users-audit-card,
  body.ndwh-jet-admin .users-create-card,
  body.ndwh-jet-admin .profiles-table-card,
  body.ndwh-jet-admin .templates-admin-card,
  body.ndwh-jet-admin .templates-profile-card {
    padding: 1.15rem 1rem 1.1rem;
  }

  body.ndwh-jet-admin .blocked-create-grid,
  body.ndwh-jet-admin .blocked-inline-form {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .knowledge-filter-form {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .support-filter-form {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .support-filter-form__search {
    grid-column: auto;
  }

  body.ndwh-jet-admin .profiles-action-links {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .roles-overview-card,
  body.ndwh-jet-admin .roles-policy-card,
  body.ndwh-jet-admin .roles-audit-card,
  body.ndwh-jet-admin .logs-overview-card,
  body.ndwh-jet-admin .logs-list-card,
  body.ndwh-jet-admin .logs-viewer-card,
  body.ndwh-jet-admin .password-hero-card,
  body.ndwh-jet-admin .password-form-card,
  body.ndwh-jet-admin .password-guide-card,
  body.ndwh-jet-admin .editor-hero-card,
  body.ndwh-jet-admin .editor-main-card,
  body.ndwh-jet-admin .editor-side-card,
  body.ndwh-jet-admin .editor-backups-card,
  body.ndwh-jet-admin .editor-viewer-card,
  body.ndwh-jet-admin .editor-workbench-card {
    padding: 1.15rem 1rem 1.1rem;
    border-radius: 1.25rem;
  }

  body.ndwh-jet-admin .roles-overview-metrics,
  body.ndwh-jet-admin .logs-overview-metrics,
  body.ndwh-jet-admin .roles-policy-form-grid,
  body.ndwh-jet-admin .roles-audit-form,
  body.ndwh-jet-admin .roles-permissions-grid,
  body.ndwh-jet-admin .logs-meta-grid {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .editor-code-area {
    min-height: 420px;
  }

  body.ndwh-jet-admin .knowledge-editor-chip {
    width: 100%;
    justify-content: space-between;
  }

  body.ndwh-jet-admin .knowledge-editor-actions {
    flex-direction: column;
  }

  body.ndwh-jet-admin .knowledge-editor-actions a,
  body.ndwh-jet-admin .knowledge-editor-actions button,
  body.ndwh-jet-admin .knowledge-editor-hero__actions a {
    width: 100%;
    justify-content: center;
  }

  body.ndwh-jet-admin .users-create-grid,
  body.ndwh-jet-admin .scope-catalog-grid,
  body.ndwh-jet-admin .scope-catalog-inline-grid,
  body.ndwh-jet-admin .users-audit-form {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .users-toggle-row {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .dashboard-hero-header__stamp,
  body.ndwh-jet-admin .ndwh-theme-toggle {
    width: 100%;
  }

  body.ndwh-jet-admin .ndwh-theme-widget-shell {
    right: 1rem;
    left: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  body.ndwh-jet-admin .ndwh-theme-widget {
    width: 56px;
    height: 56px;
  }

  body.ndwh-jet-admin .system-status-panel {
    padding: 1.15rem 1rem 1rem;
  }

  body.ndwh-jet-admin .channel-status-panel,
  body.ndwh-jet-admin .sensitive-activity-panel {
    padding: 1.15rem 1rem 1rem;
  }

  body.ndwh-jet-admin .system-status-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  body.ndwh-jet-admin .system-status-row__status {
    min-width: 0;
    justify-content: flex-start;
  }

  body.ndwh-jet-admin .channel-status-section {
    padding: 1rem;
  }

  body.ndwh-jet-admin .channel-status-section__head,
  body.ndwh-jet-admin .sensitive-activity-panel__head,
  body.ndwh-jet-admin .sensitive-metric-row {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .channel-status-section__badge {
    justify-self: start;
  }

  body.ndwh-jet-admin .dashboard-list-card__head,
  body.ndwh-jet-admin .dashboard-list-card__table thead tr,
  body.ndwh-jet-admin .dashboard-list-card__table tbody tr {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .dashboard-list-card__metric {
    justify-items: start;
  }

  body.ndwh-jet-admin .dashboard-list-card__table thead th,
  body.ndwh-jet-admin .dashboard-list-card__table tbody td,
  body.ndwh-jet-admin .dashboard-list-card__table thead th:last-child,
  body.ndwh-jet-admin .dashboard-list-card__table tbody td:last-child {
    text-align: left;
  }

  body.ndwh-jet-admin .dashboard-feature-card__table thead th,
  body.ndwh-jet-admin .dashboard-feature-card__table tbody td {
    min-width: 148px;
    white-space: nowrap;
  }

  body.ndwh-jet-admin .sensitive-activity-panel__head span:last-child,
  body.ndwh-jet-admin .sensitive-metric-row__value {
    text-align: left;
  }

  body.ndwh-jet-admin .sensitive-activity-panel__body {
    grid-template-columns: 1fr;
  }

  body.ndwh-jet-admin .sensitive-metric-row:nth-child(odd) {
    border-right: 0;
  }
}
