:root {
  color-scheme: light;
  --v2-bg-page: #ebe6dd;
  --v2-bg-page-deep: #e1d8cc;
  --v2-bg-sidebar: #f8f1e8;
  --v2-bg-surface: #ffffff;
  --v2-bg-surface-soft: #fffaf4;
  --v2-bg-surface-elevated: #ffffff;
  --v2-bg-input: #ffffff;
  --v2-text: #1f2328;
  --v2-text-strong: #111418;
  --v2-text-muted: #5c6670;
  --v2-text-soft: #8a929a;
  --v2-border: #cfc5b8;
  --v2-border-subtle: #ded5c9;
  --v2-divider: #e4dacf;
  --v2-brand-red: #e60000;
  --v2-brand-red-strong: #b00000;
  --v2-brand-red-soft: #ffe7e5;
  --v2-status-danger: #e60000;
  --v2-status-danger-bg: #ffe7e5;
  --v2-status-danger-text: #8a0000;
  --v2-status-success: #16a34a;
  --v2-status-success-bg: #e8f7ee;
  --v2-status-success-text: #166534;
  --v2-status-warning: #f5a400;
  --v2-status-warning-bg: #fff4d6;
  --v2-status-warning-text: #7a4d00;
  --v2-status-info: #2563eb;
  --v2-status-info-bg: #e8efff;
  --v2-status-info-text: #1d4ed8;
  --v2-status-neutral: #8a929a;
  --v2-status-neutral-bg: #f2f0ec;
  --v2-status-neutral-text: #4b5563;
  --v2-map-current-outage: var(--v2-status-danger);
  --v2-map-normal: var(--v2-status-success);
  --v2-map-recent-watch: var(--v2-status-info);
  --v2-map-commercial-watch: var(--v2-status-warning);
  --v2-map-unknown: var(--v2-status-neutral);
  --v2-bg: var(--v2-bg-page);
  --v2-panel: var(--v2-bg-surface);
  --v2-panel-strong: var(--v2-bg-surface-elevated);
  --v2-muted: var(--v2-text-muted);
  --v2-red: var(--v2-brand-red);
  --v2-green: var(--v2-brand-red);
  --v2-blue: var(--v2-status-info);
  --v2-gold: var(--v2-status-warning);
}

* { box-sizing: border-box; }
html,
body {
  color-scheme: only light;
  margin: 0;
  min-height: 100%;
  background: var(--v2-bg-page);
  color: var(--v2-text);
}
body { font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }

.v2-app,
#v2AppShell,
.v2-app-shell {
  color-scheme: only light;
}

input,
select,
textarea,
button {
  color-scheme: only light;
}

.v2-app-shell {
  min-height: 100vh;
  padding: 18px;
  color: var(--v2-text);
  background:
    repeating-radial-gradient(circle at 88% -8%, rgba(230,0,0,.055) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 88% -10%, color-mix(in srgb, var(--v2-brand-red) 13%, transparent), transparent 430px),
    radial-gradient(circle at 4% 16%, rgba(255,255,255,.58), transparent 360px),
    linear-gradient(180deg, var(--v2-bg-page), var(--v2-bg-page-deep));
}

.v2-mobile-bar,
.v2-mobile-drawer-backdrop {
  display: none;
}

.v2-shell-layout {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.v2-sidebar {
  position: sticky;
  top: 14px;
  display: grid;
  gap: 12px;
  max-height: calc(100vh - 28px);
  overflow: auto;
  border: 1px solid var(--v2-border);
  border-radius: 18px;
  padding: 14px;
  background:
    radial-gradient(circle at 108% -4%, color-mix(in srgb, var(--v2-brand-red) 15%, transparent), transparent 190px),
    repeating-radial-gradient(circle at 92% 16%, rgba(230,0,0,.075) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(90deg, rgba(230,0,0,.075) 0, rgba(230,0,0,.075) 1px, transparent 1px, transparent 12px),
    var(--v2-bg-sidebar);
  box-shadow: 0 18px 42px rgba(80,58,42,0.18);
}

.v2-main-content {
  min-width: 0;
}

.v2-sidebar-brand {
  display: grid;
  gap: 5px;
}

.v2-sidebar-brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.v2-sidebar-brand span,
.v2-sidebar-user span {
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.v2-sidebar-user {
  display: grid;
  gap: 4px;
  border: 1px solid var(--v2-border-subtle);
  border-radius: 12px;
  padding: 10px;
  background: var(--v2-bg-surface-soft);
}

.v2-sidebar-user strong {
  color: var(--v2-text-strong);
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.v2-topbar,
.v2-page-header,
.v2-card,
.v2-deferred-zone {
  border: 1px solid var(--v2-border-subtle);
  background: linear-gradient(135deg, var(--v2-bg-surface), var(--v2-bg-surface-soft));
  box-shadow: 0 12px 26px rgba(80,58,42,0.13);
}

.v2-topbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 14px;
}

.v2-topbar strong { display: block; font-size: 18px; }
.v2-topbar span, .v2-topbar small, .v2-muted, .v2-card-foot, .v2-action-card small { color: var(--v2-muted); }
.v2-page-root[hidden], .v2-app-shell[hidden] { display: none !important; }

.v2-readiness-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.v2-sidebar-status {
  display: grid;
  gap: 0;
  margin: 0;
}

.v2-sidebar-status span {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  min-height: 0;
  width: 100%;
  min-width: 0;
  border-radius: 0;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid var(--v2-divider);
  background: transparent;
}

.v2-sidebar-status span:last-child {
  border-bottom: 0;
}

.v2-readiness-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  border: 1px solid var(--v2-border-subtle);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--v2-bg-surface-soft);
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 800;
}

.v2-readiness-strip strong {
  color: var(--v2-text-strong);
}

.v2-readiness-strip em {
  max-width: 240px;
  overflow: hidden;
  color: var(--v2-text);
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-readiness-strip.v2-sidebar-status span {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--v2-divider);
  border-radius: 0;
  padding: 7px 0;
  background: transparent;
}

.v2-readiness-strip.v2-sidebar-status span:last-child {
  border-bottom: 0;
}

.v2-sidebar-status strong {
  color: var(--v2-text-soft);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v2-sidebar-status em {
  max-width: 100%;
  min-width: 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v2-diagnostics-console {
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--v2-bg-surface) 88%, transparent);
  padding: 8px;
  box-shadow: 0 8px 16px rgba(80,58,42,.06);
}

.v2-diagnostics-console summary {
  cursor: pointer;
  color: var(--v2-text);
  font-size: 12px;
  font-weight: 900;
  list-style-position: inside;
}

.v2-diagnostics-console summary em,
.v2-diagnostics-muted {
  display: block;
  margin-top: 4px;
  color: var(--v2-muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
}

.v2-diagnostics-body {
  max-height: 220px;
  overflow: auto;
  margin-top: 8px;
  padding-right: 2px;
}

.v2-diagnostics-entry {
  border-top: 1px solid var(--v2-border-subtle);
  padding: 7px 0;
  font-size: 10px;
  line-height: 1.35;
}

.v2-diagnostics-entry b {
  color: var(--v2-text-strong);
  margin-right: 5px;
}

.v2-diagnostics-entry span {
  color: var(--v2-brand-red);
  font-weight: 900;
}

.v2-diagnostics-entry.warn span {
  color: var(--v2-status-warning-text);
}

.v2-diagnostics-entry p {
  margin: 3px 0 0;
  color: var(--v2-text);
  overflow-wrap: anywhere;
}

.v2-diagnostics-entry small {
  display: block;
  margin-top: 3px;
  color: var(--v2-muted);
}

.v2-diagnostics-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.v2-diagnostics-actions button {
  min-height: 30px;
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  background: var(--v2-bg-surface);
  color: var(--v2-text);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.v2-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.v2-sidebar-nav {
  display: grid;
  gap: 8px;
  margin: 0;
}
.v2-nav button {
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--v2-text);
  background: var(--v2-bg-surface);
  font-weight: 800;
  cursor: pointer;
}
.v2-sidebar-nav button {
  width: 100%;
  border-radius: 12px;
  padding: 11px 12px;
  text-align: left;
}
.v2-nav button:hover,
.v2-nav button:focus {
  border-color: color-mix(in srgb, var(--v2-brand-red) 36%, var(--v2-border));
  background: var(--v2-brand-red-soft);
  outline: none;
}
.v2-nav button.active {
  background: var(--v2-brand-red);
  border-color: var(--v2-brand-red);
  color: #fff;
  box-shadow: 0 10px 18px rgba(230,0,0,.18);
}

.v2-sidebar-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.v2-sidebar-footer button {
  min-height: 38px;
  border: 1px solid var(--v2-border);
  border-radius: 10px;
  background: var(--v2-bg-surface);
  color: var(--v2-text);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.v2-sidebar-footer button:hover,
.v2-sidebar-footer button:focus {
  border-color: color-mix(in srgb, var(--v2-brand-red) 42%, transparent);
  background: var(--v2-brand-red-soft);
  outline: none;
}

.v2-sidebar-logo {
  display: block;
  width: min(100%, 222px);
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
  margin-top: 10px;
}

.v2-page-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  padding: 12px 14px;
  margin-bottom: 14px;
  background:
    repeating-radial-gradient(circle at 94% 0%, rgba(230,0,0,.055) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, var(--v2-bg-surface), var(--v2-bg-surface-soft));
}
.v2-page-header > div {
  min-width: 0;
}
.v2-eyebrow { margin: 0; color: var(--v2-brand-red); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.v2-page-header h1,
.v2-page-header > div > .v2-muted {
  display: none;
}
.v2-status-pill,
.v2-table-count {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border: 1px solid color-mix(in srgb, var(--v2-brand-red) 28%, transparent);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--v2-status-danger-text);
  background: var(--v2-brand-red-soft);
  font-weight: 800;
  font-size: 12px;
}

.v2-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 12px; }
.v2-kpi-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.v2-card {
  min-width: 0;
  border-radius: 10px;
  padding: 12px 13px;
  background:
    radial-gradient(circle at 100% 0%, rgba(230,0,0,.045), transparent 120px),
    var(--v2-bg-surface);
}
.v2-card,
.v2-deferred-zone {
  min-width: 0;
}
.v2-metric-card {
  min-height: 104px;
  box-shadow: none;
}
.v2-metric-card.ok { border-left: 3px solid var(--v2-brand-red); }
.v2-metric-card.watch { border-left: 3px solid var(--v2-gold); }
.v2-metric-card.info { border-left: 3px solid var(--v2-blue); }
.v2-metric-card.neutral { border-left: 3px solid var(--v2-status-neutral); }
.v2-card-label, .v2-action-card span { display: block; color: var(--v2-muted); font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.v2-card-value, .v2-action-card strong { display: block; margin-top: 7px; font-size: clamp(26px, 2.2vw, 30px); line-height: 1.05; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2-card-foot, .v2-action-card small { display: block; margin-top: 7px; font-size: 11px; line-height: 1.3; font-weight: 700; }
.v2-action-card { text-align: left; color: var(--v2-text); cursor: pointer; }
.v2-action-card:hover { border-color: color-mix(in srgb, var(--v2-brand-red) 38%, transparent); background: var(--v2-brand-red-soft); }

.v2-loading-card { display: flex; gap: 12px; align-items: center; min-height: 82px; color: var(--v2-muted); font-weight: 800; }
.v2-loading-pulse { width: 16px; height: 16px; border-radius: 50%; background: var(--v2-brand-red); }
.v2-deferred-zone {
  border-radius: 10px;
  padding: 12px;
  background:
    repeating-radial-gradient(circle at 96% 0%, rgba(230,0,0,.035) 0 1px, transparent 1px 18px),
    #f8f3ec;
}
.v2-section-title {
  margin-bottom: 10px;
  color: var(--v2-text-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}
.v2-table-panel {
  overflow: hidden;
}

.v2-table-panel,
.v2-connections-page #v2ConnectionsDeferred,
.v2-connections-page #v2ConnectionsDeferred > .v2-deferred-zone,
.v2-connections-table-panel,
.v2-rsa-matrix-section,
.v2-noc-ops-panel,
.v2-noc-table-panel,
.v2-insights-ops-panel,
.v2-insights-table-panel,
.v2-admin-access-panel,
.v2-admin-diagnostics {
  border-color: var(--v2-divider);
  border-radius: 6px;
  background: var(--v2-bg-surface);
  box-shadow: 0 8px 18px rgba(80,58,42,.07);
}

.v2-connections-page #v2ConnectionsDeferred,
.v2-connections-page #v2ConnectionsDeferred > .v2-deferred-zone,
.v2-rsa-matrix-section,
.v2-noc-ops-panel,
.v2-insights-ops-panel,
.v2-admin-diagnostics {
  background:
    repeating-radial-gradient(circle at 98% 0%, rgba(230,0,0,.032) 0 1px, transparent 1px 18px),
    #f8f3ec;
}

.v2-table-panel,
.v2-connections-table-panel,
.v2-noc-table-panel,
.v2-insights-table-panel,
.v2-admin-access-panel,
.v2-admin-access-table {
  background: var(--v2-bg-surface);
}

.v2-table-controls,
.v2-table-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 10px;
}

.v2-search-wrap {
  display: flex;
  width: min(100%, 480px);
  gap: 8px;
  align-items: center;
}

.v2-table-search {
  width: min(100%, 360px);
  min-height: 40px;
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  background: var(--v2-bg-input);
  color: var(--v2-text);
  padding: 0 12px;
  font: inherit;
  outline: none;
}

.v2-search-wrap .v2-table-search {
  flex: 1;
  width: 100%;
}

.v2-clear-search {
  min-height: 38px;
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  background: var(--v2-bg-surface);
  color: var(--v2-muted);
  padding: 0 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.v2-clear-search:hover,
.v2-clear-search:focus {
  border-color: color-mix(in srgb, var(--v2-brand-red) 38%, transparent);
  background: var(--v2-brand-red-soft);
  color: var(--v2-text);
  outline: none;
}

.v2-table-search::placeholder {
  color: var(--v2-text-soft);
}

.v2-table-search:focus {
  border-color: color-mix(in srgb, var(--v2-brand-red) 60%, transparent);
  box-shadow: 0 0 0 3px var(--v2-brand-red-soft);
}

.v2-table-wrap { overflow-x: auto; }
.v2-table-panel .v2-table-wrap,
.v2-connections-table-panel,
.v2-rsa-matrix-wrap,
.v2-noc-table-panel .v2-table-wrap,
.v2-insights-table-panel .v2-table-wrap,
.v2-admin-access-table {
  border-top: 1px solid var(--v2-divider);
}
.v2-table-empty {
  margin: 10px 0;
  border: 1px dashed var(--v2-border-subtle);
  border-radius: 8px;
  padding: 12px;
  color: var(--v2-muted);
  background: var(--v2-bg-surface-soft);
  font-weight: 800;
  text-align: center;
}
.v2-connections-period-panel {
  padding: 12px;
}
.v2-period-control {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}
.v2-period-control label {
  display: grid;
  gap: 6px;
}
.v2-period-control label span {
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.v2-period-control select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  padding: 9px 10px;
  background: var(--v2-bg-input);
  color: var(--v2-text-strong);
}
.v2-period-control strong {
  display: block;
  color: var(--v2-text-strong);
  font-size: 14px;
}
.v2-period-control p {
  margin: 3px 0 0;
}
.v2-table { width: 100%; min-width: 620px; border-collapse: collapse; }
.v2-table th, .v2-table td { padding: 9px 11px; border-bottom: 1px solid var(--v2-divider); text-align: left; vertical-align: top; overflow-wrap: anywhere; }
.v2-table th { background: #ebe4da; color: var(--v2-muted); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.v2-table td { color: var(--v2-text); }
.v2-rsa-matrix-wrap { overflow-x: auto; }
.v2-rsa-matrix-table {
  width: max-content;
  min-width: 980px;
  table-layout: fixed;
}
.v2-rsa-matrix-table th,
.v2-rsa-matrix-table td {
  white-space: nowrap;
  overflow-wrap: normal;
}
.v2-rsa-matrix-table th:nth-child(1),
.v2-rsa-matrix-table td:nth-child(1) { width: 190px; max-width: 190px; white-space: normal; }
.v2-rsa-matrix-table th:nth-child(2),
.v2-rsa-matrix-table td:nth-child(2) { width: 118px; }
.v2-rsa-matrix-table th:nth-child(3),
.v2-rsa-matrix-table td:nth-child(3) { width: 132px; white-space: normal; }
.v2-rsa-matrix-table th:nth-child(4),
.v2-rsa-matrix-table td:nth-child(4) { width: 124px; white-space: normal; }
.v2-rsa-matrix-table th:nth-child(5),
.v2-rsa-matrix-table td:nth-child(5) { width: 104px; }
.v2-rsa-matrix-table th:nth-child(n+6),
.v2-rsa-matrix-table td:nth-child(n+6) {
  width: 84px;
  text-align: right;
}
.v2-rsa-matrix-table th:nth-child(n+10),
.v2-rsa-matrix-table td:nth-child(n+10) {
  width: 46px;
  padding-left: 8px;
  padding-right: 8px;
}
.v2-rsa-matrix-subrow td {
  color: var(--v2-text-muted);
  background: var(--v2-bg-surface-soft);
}
.v2-rsa-mobile-daily {
  display: none;
}

.v2-bts-table-panel tbody tr,
.v2-noc-table-panel tbody tr,
.v2-insights-table-panel tbody tr,
.v2-connections-table-panel tbody tr {
  cursor: pointer;
  transition: background .16s ease, outline-color .16s ease;
}

.v2-bts-table-panel tbody tr:hover,
.v2-bts-table-panel tbody tr:focus-within,
.v2-bts-table-panel tbody tr:active,
.v2-noc-table-panel tbody tr:hover,
.v2-noc-table-panel tbody tr:focus-within,
.v2-noc-table-panel tbody tr:active,
.v2-insights-table-panel tbody tr:hover,
.v2-insights-table-panel tbody tr:focus-within,
.v2-insights-table-panel tbody tr:active,
.v2-connections-table-panel tbody tr:hover,
.v2-connections-table-panel tbody tr:focus-within,
.v2-connections-table-panel tbody tr:active {
  background: var(--v2-brand-red-soft);
}

.v2-table-pager {
  justify-content: flex-end;
}

.v2-table-pager button {
  min-width: 74px;
  min-height: 38px;
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  background: var(--v2-bg-surface);
  color: var(--v2-text);
  padding: 0 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.v2-table-pager button:not(:disabled):hover {
  border-color: color-mix(in srgb, var(--v2-brand-red) 72%, transparent);
  background: color-mix(in srgb, var(--v2-brand-red) 18%, transparent);
}

.v2-table-pager button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.v2-page-status {
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 800;
}

.v2-bts-map-placeholder {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(280px, 1.3fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 14px;
}

.v2-noc-map-section {
  margin-bottom: 14px;
  scroll-margin-top: 88px;
}

.v2-noc-map-summary {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.v2-bts-map-placeholder .v2-noc-map-summary .v2-deferred-zone {
  border-radius: 6px;
  padding: 10px;
  background: var(--v2-bg-surface-soft);
  box-shadow: none;
}

.v2-map-frame {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--v2-border);
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--v2-brand-red) 7%, transparent), transparent 220px),
    linear-gradient(135deg, #fffdf9, #efe9df);
}

.v2-leaflet-map {
  position: absolute;
  inset: 0;
  min-height: 340px;
  z-index: 1;
}

.v2-map-status {
  display: inline-flex;
  margin-top: 10px;
  border: 1px solid color-mix(in srgb, var(--v2-brand-red) 28%, transparent);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--v2-status-danger-text);
  background: var(--v2-brand-red-soft);
  font-size: 12px;
  font-weight: 800;
}

.v2-map-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.v2-map-status-row .v2-map-status {
  margin-top: 0;
}

.v2-map-default-button {
  width: auto;
  min-width: 104px;
  min-height: 32px;
  padding: 0 10px;
  white-space: nowrap;
}

.v2-map-focus-status {
  margin-top: 8px;
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 800;
}

.v2-active-filters {
  display: inline-block;
  max-width: 100%;
  margin-top: 10px;
  border: 1px solid color-mix(in srgb, var(--v2-brand-red) 24%, transparent);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--v2-brand-red-soft);
  color: var(--v2-text-strong);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.v2-map-filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 12px;
}

.v2-map-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.v2-map-tools button {
  min-height: 34px;
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  background: var(--v2-bg-surface);
  color: var(--v2-text);
  padding: 0 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.v2-map-tools button:hover,
.v2-map-tools button:focus {
  border-color: color-mix(in srgb, var(--v2-brand-red) 42%, transparent);
  background: var(--v2-brand-red-soft);
  outline: none;
}

.v2-ops-filter-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
  align-items: end;
}

.v2-map-filter-grid label,
.v2-ops-filter-grid label {
  display: grid;
  gap: 5px;
}

.v2-map-filter-grid span,
.v2-ops-filter-grid span {
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.v2-map-filter-grid select,
.v2-map-filter-grid input,
.v2-ops-filter-grid select,
.v2-ops-filter-grid input {
  min-height: 38px;
  width: 100%;
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  background: var(--v2-bg-input);
  color: var(--v2-text);
  padding: 0 10px;
  font: inherit;
  outline: none;
}

.v2-map-filter-grid select:focus,
.v2-map-filter-grid input:focus,
.v2-ops-filter-grid select:focus,
.v2-ops-filter-grid input:focus {
  border-color: color-mix(in srgb, var(--v2-brand-red) 60%, transparent);
  box-shadow: 0 0 0 3px var(--v2-brand-red-soft);
}

.v2-map-reset,
.v2-copy-button {
  min-height: 38px;
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--v2-brand-red) 38%, transparent);
  border-radius: 8px;
  background: var(--v2-brand-red-soft);
  color: var(--v2-status-danger-text);
  padding: 0 12px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.v2-copy-button {
  border-color: var(--v2-border);
  background: var(--v2-bg-surface);
  color: var(--v2-text);
}

.v2-map-reset:hover,
.v2-map-reset:focus,
.v2-copy-button:hover,
.v2-copy-button:focus {
  border-color: color-mix(in srgb, var(--v2-status-warning) 72%, transparent);
  background: var(--v2-brand-red-soft);
  outline: none;
}

.v2-copy-button:hover,
.v2-copy-button:focus {
  border-color: color-mix(in srgb, var(--v2-brand-red) 42%, transparent);
  background: var(--v2-brand-red-soft);
}

.v2-hidden-controls {
  display: none !important;
}

.v2-table-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.v2-table-action-button {
  width: auto;
  min-height: 32px;
  padding: 0 12px;
  white-space: nowrap;
}

.v2-map-reset-control {
  margin-top: 6px;
}

.v2-map-reset-control button {
  display: block;
  min-width: 66px;
  min-height: 30px;
  border: 0;
  border-bottom: 1px solid #ccc;
  background: #fff;
  color: #1f2937;
  padding: 4px 8px;
  font: 800 12px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.v2-map-reset-control button:last-child {
  border-bottom: 0;
}

.v2-map-reset-control button:hover,
.v2-map-reset-control button:focus {
  background: #f3f4f6;
  outline: none;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-reset-control .v2-map-locate-button {
  min-width: 82px;
  color: #174ea6;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-reset-control .v2-map-locate-button.is-locating {
  color: #334155;
  cursor: wait;
  opacity: 0.78;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-user-location-marker {
  filter: drop-shadow(0 2px 5px rgba(29, 78, 216, 0.35));
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-user-location-accuracy {
  pointer-events: none;
}

@media (max-width: 640px) {
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-reset-control button {
    min-height: 44px;
    padding: 7px 10px;
    font-size: 12px;
  }
}

.v2-copy-status {
  min-height: 16px;
  margin-top: 8px;
  color: var(--v2-status-success-text);
  font-size: 12px;
  font-weight: 800;
}

.v2-noc-ops-panel,
.v2-insights-ops-panel {
  margin-bottom: 14px;
}

.v2-noc-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.v2-admin-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.v2-mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.v2-mini-table th,
.v2-mini-table td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--v2-divider);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.v2-mini-table th {
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.v2-mini-table [data-noc-map-filter] {
  cursor: pointer;
}

.v2-mini-table [data-noc-map-filter]:hover,
.v2-mini-table [data-noc-map-filter]:focus {
  background: var(--v2-bg-surface-soft);
  outline: none;
}

.v2-mini-table [data-noc-map-filter].is-selected {
  background: var(--v2-status-danger-bg);
  box-shadow: inset 3px 0 0 var(--v2-status-danger);
}

.v2-mini-table [data-noc-map-filter].is-selected td:first-child {
  color: var(--v2-text-strong);
  font-weight: 900;
}

.v2-mini-table-total td {
  color: var(--v2-text-strong);
  font-weight: 900;
  border-top: 1px solid var(--v2-border-subtle);
  background: var(--v2-bg-surface-soft);
}

.v2-mini-note {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 750;
}

.v2-noc-focus-panel p {
  margin: 0;
  line-height: 1.5;
  font-weight: 750;
}

.v2-noc-map-section > .v2-noc-focus-panel {
  grid-column: 1 / -1;
}

.v2-admin-kv {
  display: grid;
  gap: 5px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.v2-admin-kv strong {
  color: var(--v2-text-strong);
}

.v2-admin-details summary {
  cursor: pointer;
  color: var(--v2-text-strong);
  font-weight: 850;
}

.v2-admin-details pre {
  max-height: 220px;
  margin: 8px 0 0;
  overflow: auto;
  border: 1px solid var(--v2-border-subtle);
  border-radius: 8px;
  background: rgba(0,0,0,.22);
  color: var(--v2-muted);
  padding: 8px;
  white-space: pre-wrap;
}

.v2-admin-diagnostics {
  margin-bottom: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.v2-admin-access-panel {
  margin-bottom: 14px;
}

.v2-admin-access-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(140px, 180px) minmax(140px, 180px) auto;
  gap: 10px;
  align-items: end;
  margin: 12px 0;
}

.v2-admin-access-toolbar label {
  display: grid;
  gap: 6px;
}

.v2-admin-access-toolbar span {
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.v2-admin-access-toolbar input,
.v2-admin-access-toolbar select,
.v2-admin-access-table select {
  min-height: 38px;
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  background: var(--v2-bg-input);
  color: var(--v2-text);
  padding: 8px 10px;
  font: inherit;
}

.v2-admin-access-message {
  min-height: 38px;
  margin: 10px 0;
  border: 1px solid var(--v2-border-subtle);
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--v2-bg-surface-soft);
  color: var(--v2-muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.v2-admin-access-message[hidden] {
  display: none;
}

.v2-admin-access-message[data-tone="success"] {
  border-color: color-mix(in srgb, var(--v2-status-success) 36%, transparent);
  background: var(--v2-status-success-bg);
  color: var(--v2-status-success-text);
}

.v2-admin-access-message[data-tone="warning"] {
  border-color: color-mix(in srgb, var(--v2-status-warning) 38%, transparent);
  background: var(--v2-status-warning-bg);
  color: var(--v2-status-warning-text);
}

.v2-admin-access-message[data-tone="error"] {
  border-color: color-mix(in srgb, var(--v2-status-danger) 42%, transparent);
  background: var(--v2-status-danger-bg);
  color: var(--v2-status-danger-text);
}

.v2-admin-access-message[data-tone="info"] {
  border-color: color-mix(in srgb, var(--v2-status-info) 34%, transparent);
  background: var(--v2-status-info-bg);
  color: var(--v2-status-info-text);
}

.v2-admin-access-table td strong,
.v2-admin-access-table td small {
  display: block;
}

.v2-admin-access-table td small {
  margin-top: 4px;
  color: var(--v2-muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.v2-admin-page-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 6px 10px;
}

.v2-admin-page-check {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--v2-text);
  font-size: 12px;
  font-weight: 800;
}

.v2-admin-page-check input:disabled + span {
  color: var(--v2-text-soft);
}

.v2-admin-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-admin-action-buttons button,
.v2-admin-new-key button {
  min-height: 34px;
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  background: var(--v2-bg-surface);
  color: var(--v2-text);
  padding: 6px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.v2-admin-action-buttons button:hover,
.v2-admin-new-key button:hover {
  border-color: color-mix(in srgb, var(--v2-status-info) 60%, transparent);
}

.v2-admin-action-buttons button:disabled,
.v2-admin-new-key button:disabled,
.v2-admin-access-toolbar button:disabled {
  cursor: progress;
  opacity: .62;
}

.v2-admin-new-key {
  display: grid;
  gap: 8px;
  margin: 10px 0;
  border: 1px solid color-mix(in srgb, var(--v2-status-warning) 30%, transparent);
  border-radius: 6px;
  padding: 10px;
  background: var(--v2-status-warning-bg);
}

.v2-admin-new-key[hidden] {
  display: none;
}

.v2-admin-new-key code {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--v2-status-warning-text);
  font-weight: 950;
}

.v2-admin-new-key p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 12px;
}

.v2-diagnostic-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--v2-divider);
}

.v2-diagnostic-row {
  display: grid;
  grid-template-columns: 58px minmax(150px, .7fr) minmax(0, 1.3fr);
  gap: 10px;
  align-items: baseline;
  border: 0;
  border-bottom: 1px solid var(--v2-divider);
  border-radius: 0;
  padding: 9px 0;
  background: transparent;
}

.v2-diagnostic-row span {
  justify-self: start;
  min-width: 44px;
  border-radius: 999px;
  padding: 3px 6px;
  font-size: 10px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.v2-diagnostic-row strong {
  color: var(--v2-text-strong);
  font-size: 12px;
}

.v2-diagnostic-row em {
  color: var(--v2-muted);
  font-style: normal;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.v2-diagnostic-pass span {
  color: var(--v2-status-success-text);
  background: var(--v2-status-success-bg);
}

.v2-diagnostic-warn span {
  color: var(--v2-status-warning-text);
  background: var(--v2-status-warning-bg);
}

.v2-diagnostic-fail span {
  color: var(--v2-status-danger-text);
  background: var(--v2-status-danger-bg);
}

.v2-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 22px;
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  padding: 3px 8px;
  background: var(--v2-bg-surface);
  color: var(--v2-text);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.v2-status-normal { border-color: color-mix(in srgb, var(--v2-status-success) 46%, transparent); color: var(--v2-status-success-text); background: var(--v2-status-success-bg); }
.v2-status-current-outage { border-color: color-mix(in srgb, var(--v2-status-danger) 50%, transparent); color: var(--v2-status-danger-text); background: var(--v2-status-danger-bg); }
.v2-status-recent-noc-watch { border-color: color-mix(in srgb, var(--v2-status-info) 50%, transparent); color: var(--v2-status-info-text); background: var(--v2-status-info-bg); }
.v2-status-commercial-watch { border-color: color-mix(in srgb, var(--v2-status-warning) 50%, transparent); color: var(--v2-status-warning-text); background: var(--v2-status-warning-bg); }
.v2-status-unknown,
.v2-priority-unknown { color: var(--v2-text-muted); }
.v2-signal-current-noc-affected-site,
.v2-risk-high { border-color: color-mix(in srgb, var(--v2-status-danger) 50%, transparent); color: var(--v2-status-danger-text); background: var(--v2-status-danger-bg); }
.v2-signal-commercial-watch,
.v2-risk-medium { border-color: color-mix(in srgb, var(--v2-status-warning) 50%, transparent); color: var(--v2-status-warning-text); background: var(--v2-status-warning-bg); }
.v2-signal-high-opportunity-bts,
.v2-risk-opportunity { border-color: color-mix(in srgb, var(--v2-status-info) 50%, transparent); color: var(--v2-status-info-text); background: var(--v2-status-info-bg); }
.v2-signal-missing-target-data,
.v2-risk-data-gap { border-color: color-mix(in srgb, var(--v2-status-neutral) 50%, transparent); color: var(--v2-status-neutral-text); background: var(--v2-status-neutral-bg); }
.v2-signal-normal-monitor,
.v2-risk-monitor { border-color: color-mix(in srgb, var(--v2-status-success) 46%, transparent); color: var(--v2-status-success-text); background: var(--v2-status-success-bg); }
.v2-priority-diamond { border-color: #8fd8ea; color: #075568; background: #e9fbff; }
.v2-priority-platinum { border-color: #c8c2b8; color: #4b5563; background: #f5f3ef; }
.v2-priority-gold { border-color: color-mix(in srgb, var(--v2-status-warning) 58%, transparent); color: var(--v2-status-warning-text); background: var(--v2-status-warning-bg); }
.v2-priority-silver { border-color: #b8bdc3; color: #475569; background: #f3f4f6; }
.v2-priority-bronze { border-color: #cd7f32; color: #7c3f00; background: #fff0df; }

.v2-map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: var(--v2-muted);
  font-weight: 800;
  text-align: center;
}

.v2-map-popup {
  display: grid;
  box-sizing: border-box;
  gap: 4px;
  width: min(270px, calc(100vw - 56px));
  max-width: min(270px, calc(100vw - 56px));
  padding: 8px 10px;
  color: #111;
  font-size: 12px;
  line-height: 1.22;
}

.v2-map-popup-title {
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.v2-map-popup-subtitle {
  color: #475569;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.v2-map-popup-province {
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.v2-map-popup-row {
  display: grid;
  grid-template-columns: minmax(96px, .9fr) minmax(0, 1.1fr);
  gap: 6px;
  align-items: start;
}

.v2-map-popup-row span {
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.v2-map-popup-row strong {
  color: #111;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.24;
}

.v2-map-popup-row strong,
.v2-map-popup-row span {
  overflow-wrap: anywhere;
}

.v2-map-legend {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding-top: 4px;
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 800;
}

.v2-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.v2-map-legend i {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
}

.v2-map-legend .normal { background: var(--v2-map-normal); }
.v2-map-legend .outage { background: var(--v2-map-current-outage); }
.v2-map-legend .noc-watch { background: var(--v2-map-recent-watch); }
.v2-map-legend .commercial { background: var(--v2-map-commercial-watch); }
.v2-map-legend .unknown { background: var(--v2-map-unknown); }

.v2-bts-marker-outage {
  fill: var(--v2-map-current-outage) !important;
}

.v2-bts-marker-normal {
  fill: var(--v2-map-normal) !important;
}

.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  background: color-mix(in srgb, var(--v2-map-current-outage) 22%, transparent);
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
  background: color-mix(in srgb, var(--v2-map-current-outage) 88%, transparent);
  color: var(--v2-text-strong);
  font-weight: 900;
}

.v2-marker-cluster {
  border-radius: 999px;
}

.v2-marker-cluster div {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 3px;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 999px;
  color: var(--v2-text-strong);
  font-weight: 950;
}

.v2-marker-cluster-outage {
  background: color-mix(in srgb, var(--v2-map-current-outage) 22%, transparent) !important;
}

.v2-marker-cluster-outage div {
  background: color-mix(in srgb, var(--v2-map-current-outage) 92%, transparent) !important;
}

.v2-marker-cluster-normal {
  background: color-mix(in srgb, var(--v2-map-normal) 22%, transparent) !important;
}

.v2-marker-cluster-normal div {
  background: color-mix(in srgb, var(--v2-map-normal) 90%, transparent) !important;
}

.leaflet-control-container .leaflet-top,
.leaflet-control-container .leaflet-bottom {
  z-index: 500;
}

.v2-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--v2-border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--v2-border-subtle) 1px, transparent 1px);
  background-size: 34px 34px;
}

.v2-map-pin-shell {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
}

.v2-map-pin-shell span {
  justify-self: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--v2-red);
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--v2-map-current-outage) 18%, transparent);
}

@media (max-width: 1100px) { .v2-kpi-grid, .v2-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 1100px) {
  .v2-ops-filter-grid,
  .v2-noc-insights-grid,
  .v2-admin-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body.v2-sidebar-shell-active .production-account-bar {
  display: none !important;
}
@media (max-width: 640px) {
  html, body { overflow-x: hidden; }
  .v2-app-shell {
    padding: 10px;
    background:
      repeating-radial-gradient(circle at 92% -4%, rgba(230,0,0,.065) 0 1px, transparent 1px 17px),
      radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--v2-brand-red) 13%, transparent), transparent 300px),
      linear-gradient(180deg, var(--v2-bg-page), var(--v2-bg-page-deep));
  }
  .v2-mobile-bar {
    position: sticky;
    top: 0;
    z-index: 740;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: -10px -10px 10px;
    border-bottom: 1px solid var(--v2-border-subtle);
    padding: 10px;
    background:
      repeating-linear-gradient(90deg, rgba(230,0,0,.055) 0, rgba(230,0,0,.055) 1px, transparent 1px, transparent 12px),
      color-mix(in srgb, var(--v2-bg-surface-soft) 96%, transparent);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(80,58,42,.14);
  }
  .v2-mobile-bar strong,
  .v2-mobile-bar span {
    display: block;
  }
  .v2-mobile-bar strong {
    font-size: 14px;
    line-height: 1.2;
  }
  .v2-mobile-bar span {
    margin-top: 2px;
    color: var(--v2-muted);
    font-size: 11px;
    font-weight: 850;
  }
  .v2-mobile-bar button {
    flex: 0 0 auto;
    width: 42px;
    height: 38px;
    border: 1px solid var(--v2-border);
    border-radius: 10px;
    background: var(--v2-bg-surface);
    color: var(--v2-text-strong);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
  }
  .v2-mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 760;
    display: block;
    background: rgba(0,0,0,.48);
  }
  .v2-mobile-drawer-backdrop[hidden] {
    display: none;
  }
  .v2-shell-layout {
    display: block;
  }
  .v2-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 780;
    width: min(86vw, 330px);
    max-height: none;
    overflow: auto;
    gap: 9px;
    border-radius: 0 14px 14px 0;
    padding: 12px;
    margin-bottom: 0;
    background:
      radial-gradient(circle at 108% -4%, color-mix(in srgb, var(--v2-brand-red) 16%, transparent), transparent 190px),
      repeating-radial-gradient(circle at 92% 16%, rgba(230,0,0,.08) 0 1px, transparent 1px 14px),
      repeating-linear-gradient(90deg, rgba(230,0,0,.08) 0, rgba(230,0,0,.08) 1px, transparent 1px, transparent 12px),
      var(--v2-bg-sidebar);
    box-shadow: 18px 0 42px rgba(80,58,42,.2);
    transform: translateX(-104%);
    transition: transform .18s ease;
  }
  .v2-app-shell.v2-drawer-open .v2-sidebar {
    transform: translateX(0);
  }
  .v2-sidebar-brand {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
  }
  .v2-sidebar-brand strong {
    font-size: 15px;
  }
  .v2-sidebar-user {
    padding: 8px;
  }
  .v2-sidebar-status {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .v2-sidebar-status span {
    min-height: 28px;
    padding: 5px 7px;
    font-size: 11px;
  }
  .v2-sidebar-status em {
    max-width: 100%;
  }
  .v2-sidebar-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .v2-sidebar-nav button {
    min-width: 0;
    text-align: center;
  }
  .v2-sidebar-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-sidebar-footer button {
    min-height: 40px;
  }
  .v2-sidebar-logo {
    grid-column: 1 / -1;
    width: min(190px, 82%);
    max-height: 50px;
    margin-top: 2px;
  }
  .v2-topbar, .v2-table-controls { display: block; }
  .v2-topbar {
    padding: 11px;
    border-radius: 12px;
    background:
      repeating-radial-gradient(circle at 96% 0%, rgba(230,0,0,.045) 0 1px, transparent 1px 16px),
      var(--v2-bg-surface);
  }
  .v2-readiness-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .v2-readiness-strip span {
    justify-content: space-between;
    min-width: 0;
    min-height: 28px;
    border-radius: 8px;
    padding: 5px 7px;
    font-size: 11px;
  }
  .v2-readiness-strip em {
    max-width: 100%;
    min-width: 0;
  }
  .v2-readiness-strip.v2-sidebar-status {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .v2-readiness-strip.v2-sidebar-status span {
    grid-template-columns: 1fr;
    padding: 6px 0;
    border: 0;
    border-bottom: 1px solid var(--v2-divider);
    border-radius: 0;
    background: transparent;
  }
  .v2-readiness-strip.v2-sidebar-status span:last-child {
    border-bottom: 0;
  }
  .v2-nav {
    flex-wrap: wrap;
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
  }
  .v2-nav button {
    flex: 1 1 calc(50% - 6px);
    min-width: 128px;
    padding: 8px 9px;
    font-size: 12px;
    white-space: normal;
  }
  .v2-page-header {
    gap: 8px;
    padding: 10px 11px;
    border-radius: 14px;
    background:
      repeating-radial-gradient(circle at 96% 0%, rgba(230,0,0,.05) 0 1px, transparent 1px 16px),
      var(--v2-bg-surface);
  }
  .v2-status-pill { display: inline-flex; margin-top: 10px; }
  .v2-page-header .v2-status-pill { margin-top: 0; }
  .v2-kpi-grid, .v2-card-grid { grid-template-columns: 1fr; }
  .v2-card {
    padding: 10px 11px;
    border-radius: 8px;
    background:
      radial-gradient(circle at 100% 0%, rgba(230,0,0,.045), transparent 112px),
      var(--v2-bg-surface);
  }
  .v2-metric-card { min-height: 88px; }
  .v2-deferred-zone {
    padding: 10px;
    border-radius: 8px;
    background:
      repeating-radial-gradient(circle at 98% 0%, rgba(230,0,0,.032) 0 1px, transparent 1px 18px),
      #f8f3ec;
  }
  .v2-card-value, .v2-action-card strong { margin-top: 6px; font-size: 22px; }
  .v2-card-foot, .v2-action-card small { margin-top: 6px; }
  .v2-search-wrap, .v2-table-search, .v2-table-count, .v2-table-pager { width: 100%; margin-top: 8px; }
  .v2-period-control {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .v2-clear-search { min-height: 40px; }
  .v2-table-pager {
    position: sticky;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--v2-border-subtle);
    padding-top: 8px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--v2-bg-surface) 88%, transparent), var(--v2-bg-page));
  }
  .v2-table-pager button { flex: 1; min-height: 40px; }
  .v2-page-status { flex: 0 0 auto; padding: 0 4px; text-align: center; }
  .v2-table { min-width: 680px; }
  .v2-bts-map-placeholder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    background:
      radial-gradient(circle at 100% 0%, rgba(230,0,0,.045), transparent 130px),
      var(--v2-bg-surface);
  }
  .v2-map-filter-grid,
  .v2-ops-filter-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .v2-map-filter-grid select,
  .v2-map-filter-grid input,
  .v2-ops-filter-grid select,
  .v2-ops-filter-grid input,
  .v2-map-reset,
  .v2-copy-button {
    min-height: 42px;
  }
  .v2-map-status-row {
    align-items: flex-start;
  }
  .v2-map-status-row .v2-map-status {
    flex: 1 1 auto;
  }
  .v2-map-default-button {
    flex: 0 0 auto;
    min-height: 36px;
  }
  .v2-noc-insights-grid {
    grid-template-columns: 1fr;
  }
  .v2-admin-status-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .v2-map-tools {
    display: grid;
    grid-template-columns: 1fr;
  }
  .v2-map-tools button {
    min-height: 40px;
  }
  .v2-bts-table-panel .v2-table,
  .v2-noc-table-panel .v2-table,
  .v2-insights-table-panel .v2-table,
  .v2-connections-table-panel .v2-table,
  .v2-adminConsole .v2-table,
  .v2-bts-table-panel .v2-table thead,
  .v2-noc-table-panel .v2-table thead,
  .v2-insights-table-panel .v2-table thead,
  .v2-connections-table-panel .v2-table thead,
  .v2-adminConsole .v2-table thead,
  .v2-bts-table-panel .v2-table tbody,
  .v2-noc-table-panel .v2-table tbody,
  .v2-insights-table-panel .v2-table tbody,
  .v2-connections-table-panel .v2-table tbody,
  .v2-adminConsole .v2-table tbody {
    display: block;
    min-width: 0;
    width: 100%;
  }
  .v2-bts-table-panel .v2-table thead,
  .v2-noc-table-panel .v2-table thead,
  .v2-insights-table-panel .v2-table thead,
  .v2-connections-table-panel .v2-table thead,
  .v2-adminConsole .v2-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .v2-bts-table-panel .v2-table tbody,
  .v2-noc-table-panel .v2-table tbody,
  .v2-insights-table-panel .v2-table tbody,
  .v2-connections-table-panel .v2-table tbody,
  .v2-adminConsole .v2-table tbody {
    display: grid;
    gap: 0;
  }
  .v2-bts-table-panel .v2-table tbody,
  .v2-insights-table-panel .v2-table tbody,
  .v2-connections-table-panel:not(.v2-rsa-matrix-wrap) .v2-table tbody,
  .v2-adminConsole .v2-table tbody {
    border: 1px solid var(--v2-border-subtle);
    border-radius: 9px;
    background: var(--v2-bg-surface);
    overflow: hidden;
  }
  .v2-bts-table-panel .v2-table tr,
  .v2-noc-table-panel .v2-table tr,
  .v2-insights-table-panel .v2-table tr,
  .v2-connections-table-panel .v2-table tr,
  .v2-adminConsole .v2-table tr {
    display: block;
    border: 0;
    border-bottom: 1px solid var(--v2-divider);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 10px 11px;
  }
  .v2-bts-table-panel .v2-table tr:last-child,
  .v2-insights-table-panel .v2-table tr:last-child,
  .v2-connections-table-panel:not(.v2-rsa-matrix-wrap) .v2-table tr:last-child,
  .v2-adminConsole .v2-table tr:last-child {
    border-bottom: 0;
  }
  .v2-bts-table-panel .v2-table tr:hover,
  .v2-bts-table-panel .v2-table tr:focus-within,
  .v2-bts-table-panel .v2-table tr:active,
  .v2-insights-table-panel .v2-table tr:hover,
  .v2-insights-table-panel .v2-table tr:focus-within,
  .v2-insights-table-panel .v2-table tr:active,
  .v2-connections-table-panel:not(.v2-rsa-matrix-wrap) .v2-table tr:hover,
  .v2-connections-table-panel:not(.v2-rsa-matrix-wrap) .v2-table tr:focus-within,
  .v2-connections-table-panel:not(.v2-rsa-matrix-wrap) .v2-table tr:active,
  .v2-adminConsole .v2-table tr:hover,
  .v2-adminConsole .v2-table tr:focus-within,
  .v2-adminConsole .v2-table tr:active {
    background: var(--v2-brand-red-soft);
    box-shadow: inset 3px 0 0 var(--v2-brand-red);
  }
  .v2-bts-table-panel .v2-table tr[hidden],
  .v2-noc-table-panel .v2-table tr[hidden],
  .v2-insights-table-panel .v2-table tr[hidden],
  .v2-connections-table-panel .v2-table tr[hidden],
  .v2-adminConsole .v2-table tr[hidden] {
    display: none !important;
  }
  .v2-bts-table-panel .v2-table td,
  .v2-noc-table-panel .v2-table td,
  .v2-insights-table-panel .v2-table td,
  .v2-connections-table-panel .v2-table td,
  .v2-adminConsole .v2-table td {
    display: grid;
    grid-template-columns: minmax(82px, .38fr) minmax(0, 1fr);
    gap: 7px;
    border: 0;
    padding: 3px 0;
    font-size: 12px;
    line-height: 1.3;
  }
  .v2-bts-table-panel .v2-table td::before,
  .v2-noc-table-panel .v2-table td::before,
  .v2-insights-table-panel .v2-table td::before,
  .v2-connections-table-panel .v2-table td::before,
  .v2-adminConsole .v2-table td::before {
    content: attr(data-label);
    color: var(--v2-muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .v2-bts-table-panel .v2-table td[data-card-title="true"],
  .v2-noc-table-panel .v2-table td[data-card-title="true"],
  .v2-insights-table-panel .v2-table td[data-card-title="true"],
  .v2-connections-table-panel .v2-table td[data-card-title="true"] {
    display: block;
    padding-bottom: 5px;
    color: var(--v2-text-strong);
    font-size: 14px;
    font-weight: 950;
  }
  .v2-bts-table-panel .v2-table td[data-card-title="true"]::before,
  .v2-noc-table-panel .v2-table td[data-card-title="true"]::before,
  .v2-insights-table-panel .v2-table td[data-card-title="true"]::before,
  .v2-connections-table-panel .v2-table td[data-card-title="true"]::before {
    display: block;
    margin-bottom: 2px;
  }
  .v2-connections-table-panel .v2-table td {
    grid-template-columns: minmax(112px, 124px) minmax(0, 1fr);
    gap: 6px 10px;
    align-items: start;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .v2-connections-table-panel .v2-table td::before {
    min-width: 0;
    line-height: 1.25;
    overflow-wrap: normal;
  }
  .v2-connections-table-panel .v2-table td > * {
    min-width: 0;
  }
  .v2-rsa-matrix-table td.v2-rsa-day-cell,
  .v2-rsa-matrix-table td.v2-rsa-matrix-context-empty {
    display: none;
  }
  .v2-rsa-matrix-table td.v2-rsa-mobile-daily {
    display: grid;
    grid-template-columns: minmax(112px, 124px) minmax(0, 1fr);
    gap: 6px 10px;
  }
  .v2-rsa-mobile-daily {
    color: var(--v2-text);
    font-size: 12px;
    line-height: 1.35;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
  .v2-rsa-matrix-subrow {
    margin-top: -3px;
    border-top-color: var(--v2-divider) !important;
    background: var(--v2-bg-surface-soft) !important;
  }
  .v2-noc-table-panel .v2-table,
  .v2-rsa-matrix-wrap .v2-table {
    display: table;
    width: 100%;
    min-width: 860px;
  }
  .v2-rsa-matrix-wrap .v2-table {
    width: max-content;
    min-width: 980px;
  }
  .v2-noc-table-panel .v2-table thead,
  .v2-rsa-matrix-wrap .v2-table thead {
    position: static;
    display: table-header-group;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }
  .v2-noc-table-panel .v2-table tbody,
  .v2-rsa-matrix-wrap .v2-table tbody {
    display: table-row-group;
    width: auto;
  }
  .v2-noc-table-panel .v2-table tr,
  .v2-rsa-matrix-wrap .v2-table tr {
    display: table-row;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
  }
  .v2-noc-table-panel .v2-table tr[hidden],
  .v2-rsa-matrix-wrap .v2-table tr[hidden] {
    display: none !important;
  }
  .v2-noc-table-panel .v2-table th,
  .v2-noc-table-panel .v2-table td,
  .v2-rsa-matrix-wrap .v2-table th,
  .v2-rsa-matrix-wrap .v2-table td {
    display: table-cell;
    border-bottom: 1px solid var(--v2-divider);
    padding: 8px 9px;
    font-size: 11px;
    text-align: left;
  }
  .v2-noc-table-panel .v2-table td::before,
  .v2-rsa-matrix-wrap .v2-table td::before {
    display: none;
  }
  .v2-noc-table-panel .v2-table td[data-card-title="true"],
  .v2-rsa-matrix-wrap .v2-table td[data-card-title="true"] {
    padding-bottom: 8px;
    font-size: 11px;
  }
  .v2-rsa-matrix-table td.v2-rsa-day-cell,
  .v2-rsa-matrix-table td.v2-rsa-matrix-context-empty {
    display: table-cell;
  }
  .v2-rsa-matrix-table td.v2-rsa-mobile-daily {
    display: none;
  }
  .v2-mobile-muted {
    color: var(--v2-muted);
    font-size: 12px;
  }
  .v2-map-frame,
  .v2-leaflet-map {
    min-height: 390px;
  }
  .v2-active-filters {
    display: flex;
    width: 100%;
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 11px;
  }
  .v2-admin-details pre {
    max-height: 160px;
    font-size: 11px;
  }
  .v2-diagnostic-row {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 6px 8px;
    padding: 8px 0;
  }
  .v2-diagnostic-row em {
    grid-column: 2;
  }
  .v2-map-legend {
    gap: 8px 10px;
    font-size: 11px;
  }
  .leaflet-control-zoom {
    margin-top: 12px !important;
    margin-left: 12px !important;
  }
  .leaflet-control-attribution {
    max-width: calc(100vw - 54px);
    white-space: normal;
    line-height: 1.2;
  }
  .leaflet-popup-content-wrapper {
    border-radius: 9px !important;
    padding: 2px !important;
  }
  .leaflet-popup-content {
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100vw - 52px) !important;
    margin: 8px 10px !important;
  }
  .leaflet-popup-close-button {
    width: 24px !important;
    height: 24px !important;
    padding: 2px 6px 0 0 !important;
    font-size: 18px !important;
  }
  .v2-map-popup {
    gap: 4px;
    width: min(220px, calc(100vw - 56px));
    max-width: min(220px, calc(100vw - 56px));
    padding: 6px 8px;
    font-size: 11px;
    line-height: 1.18;
  }
  .v2-map-popup-row {
    grid-template-columns: minmax(62px, .72fr) minmax(0, 1.28fr);
    gap: 5px;
  }
  .v2-map-popup-row span {
    font-size: 9px;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .v2-map-popup-row strong {
    font-size: 11px;
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 640px) {
  html,
  body,
  body.v2-sidebar-shell-active {
    background: var(--v2-bg-page) !important;
    color: var(--v2-text) !important;
  }

  .v2-app-shell {
    background:
      repeating-radial-gradient(circle at 92% -4%, rgba(230,0,0,.065) 0 1px, transparent 1px 17px),
      radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--v2-brand-red) 13%, transparent), transparent 300px),
      linear-gradient(180deg, var(--v2-bg-page), var(--v2-bg-page-deep)) !important;
    color: var(--v2-text) !important;
  }

  .v2-mobile-bar {
    border-bottom-color: var(--v2-border-subtle) !important;
    background:
      repeating-linear-gradient(90deg, rgba(230,0,0,.055) 0, rgba(230,0,0,.055) 1px, transparent 1px, transparent 12px),
      color-mix(in srgb, var(--v2-bg-surface-soft) 96%, transparent) !important;
    color: var(--v2-text) !important;
    box-shadow: 0 10px 24px rgba(80,58,42,.14) !important;
  }

  .v2-mobile-bar button,
  .v2-sidebar,
  .v2-topbar,
  .v2-page-header,
  .v2-card,
  .v2-table-panel,
  .v2-connections-table-panel,
  .v2-noc-table-panel,
  .v2-insights-table-panel,
  .v2-admin-access-panel,
  .v2-admin-diagnostics,
  .v2-bts-map-placeholder {
    border-color: var(--v2-border-subtle) !important;
    color: var(--v2-text) !important;
  }

  .v2-sidebar {
    background:
      radial-gradient(circle at 108% -4%, color-mix(in srgb, var(--v2-brand-red) 16%, transparent), transparent 190px),
      repeating-radial-gradient(circle at 92% 16%, rgba(230,0,0,.08) 0 1px, transparent 1px 14px),
      repeating-linear-gradient(90deg, rgba(230,0,0,.08) 0, rgba(230,0,0,.08) 1px, transparent 1px, transparent 12px),
      var(--v2-bg-sidebar) !important;
    box-shadow: 18px 0 42px rgba(80,58,42,.2) !important;
  }

  .v2-topbar,
  .v2-page-header,
  .v2-card,
  .v2-bts-map-placeholder {
    background:
      radial-gradient(circle at 100% 0%, rgba(230,0,0,.045), transparent 120px),
      var(--v2-bg-surface) !important;
  }

  .v2-deferred-zone,
  .v2-rsa-matrix-section,
  .v2-noc-ops-panel,
  .v2-insights-ops-panel {
    background:
      repeating-radial-gradient(circle at 98% 0%, rgba(230,0,0,.032) 0 1px, transparent 1px 18px),
      #f8f3ec !important;
  }

  .v2-table,
  .v2-table-wrap,
  .v2-table-panel,
  .v2-connections-table-panel,
  .v2-noc-table-panel,
  .v2-insights-table-panel,
  .v2-admin-access-panel {
    background: var(--v2-bg-surface) !important;
  }

  .v2-table th {
    background: #ebe4da !important;
    color: var(--v2-muted) !important;
  }

  .v2-bts-table-panel .v2-table tbody,
  .v2-insights-table-panel .v2-table tbody,
  .v2-connections-table-panel:not(.v2-rsa-matrix-wrap) .v2-table tbody,
  .v2-adminConsole .v2-table tbody {
    background: var(--v2-bg-surface) !important;
  }

  .v2-bts-table-panel .v2-table tr,
  .v2-insights-table-panel .v2-table tr,
  .v2-connections-table-panel:not(.v2-rsa-matrix-wrap) .v2-table tr,
  .v2-adminConsole .v2-table tr {
    background: transparent !important;
    box-shadow: none !important;
  }

  .v2-bts-table-panel .v2-table tr:hover,
  .v2-bts-table-panel .v2-table tr:focus-within,
  .v2-bts-table-panel .v2-table tr:active,
  .v2-insights-table-panel .v2-table tr:hover,
  .v2-insights-table-panel .v2-table tr:focus-within,
  .v2-insights-table-panel .v2-table tr:active,
  .v2-connections-table-panel:not(.v2-rsa-matrix-wrap) .v2-table tr:hover,
  .v2-connections-table-panel:not(.v2-rsa-matrix-wrap) .v2-table tr:focus-within,
  .v2-connections-table-panel:not(.v2-rsa-matrix-wrap) .v2-table tr:active,
  .v2-adminConsole .v2-table tr:hover,
  .v2-adminConsole .v2-table tr:focus-within,
  .v2-adminConsole .v2-table tr:active {
    background: var(--v2-brand-red-soft) !important;
    box-shadow: inset 3px 0 0 var(--v2-brand-red) !important;
  }

  .v2-nav button.active,
  .v2-primary-action {
    background: var(--v2-brand-red) !important;
    border-color: var(--v2-brand-red) !important;
    color: #fff !important;
  }
}

@media (max-width: 768px) {
  html,
  body,
  body.v2-sidebar-shell-active {
    color-scheme: only light !important;
    background:
      repeating-radial-gradient(circle at 92% -4%, rgba(230,0,0,.055) 0 1px, transparent 1px 17px),
      radial-gradient(circle at 100% 0%, rgba(230,0,0,.10), transparent 320px),
      linear-gradient(180deg, #e8e1d7, #e1d8cc) !important;
    color: #1f2328 !important;
  }

  body.v2-sidebar-shell-active #v2AppShell,
  body.v2-sidebar-shell-active .v2-app-shell,
  body.v2-sidebar-shell-active .v2-main-content,
  body.v2-sidebar-shell-active .v2-page-root,
  body.v2-sidebar-shell-active .v2-page,
  body.v2-sidebar-shell-active .v2-connections-page,
  body.v2-sidebar-shell-active .v2-lazy-page,
  body.v2-sidebar-shell-active .v2-nocWatch,
  body.v2-sidebar-shell-active .v2-adminConsole {
    background:
      repeating-radial-gradient(circle at 92% -4%, rgba(230,0,0,.055) 0 1px, transparent 1px 17px),
      radial-gradient(circle at 100% 0%, rgba(230,0,0,.10), transparent 320px),
      linear-gradient(180deg, #e8e1d7, #e1d8cc) !important;
    color: #1f2328 !important;
  }

  body.v2-sidebar-shell-active .v2-mobile-bar {
    border-bottom: 1px solid #cfc5b8 !important;
    background:
      repeating-linear-gradient(90deg, rgba(230,0,0,.055) 0, rgba(230,0,0,.055) 1px, transparent 1px, transparent 12px),
      #fffdf9 !important;
    color: #1f2328 !important;
    box-shadow: 0 10px 24px rgba(80,58,42,.16) !important;
  }

  body.v2-sidebar-shell-active .v2-mobile-bar strong {
    color: #111418 !important;
  }

  body.v2-sidebar-shell-active .v2-mobile-bar span {
    color: #5c6670 !important;
  }

  body.v2-sidebar-shell-active .v2-mobile-bar button,
  body.v2-sidebar-shell-active #v2MobileMenuBtn {
    border: 1px solid #cfc5b8 !important;
    background: #ffffff !important;
    color: #e60000 !important;
    box-shadow: 0 6px 14px rgba(80,58,42,.12) !important;
  }

  body.v2-sidebar-shell-active .v2-sidebar,
  body.v2-sidebar-shell-active #v2SidebarNavDrawer {
    border-color: #cfc5b8 !important;
    background:
      radial-gradient(circle at 108% -4%, rgba(230,0,0,.14), transparent 190px),
      repeating-radial-gradient(circle at 92% 16%, rgba(230,0,0,.09) 0 1px, transparent 1px 14px),
      repeating-linear-gradient(90deg, rgba(230,0,0,.08) 0, rgba(230,0,0,.08) 1px, transparent 1px, transparent 12px),
      #fffaf4 !important;
    color: #1f2328 !important;
    box-shadow: 18px 0 42px rgba(80,58,42,.22) !important;
  }

  body.v2-sidebar-shell-active .v2-sidebar *,
  body.v2-sidebar-shell-active #v2SidebarNavDrawer * {
    color: inherit;
  }

  body.v2-sidebar-shell-active .v2-sidebar-brand strong,
  body.v2-sidebar-shell-active .v2-sidebar-user strong {
    color: #111418 !important;
  }

  body.v2-sidebar-shell-active .v2-sidebar-brand span,
  body.v2-sidebar-shell-active .v2-sidebar-user span,
  body.v2-sidebar-shell-active .v2-sidebar-status em,
  body.v2-sidebar-shell-active .v2-readiness-strip em {
    color: #5c6670 !important;
  }

  body.v2-sidebar-shell-active .v2-sidebar-user,
  body.v2-sidebar-shell-active .v2-sidebar-status span,
  body.v2-sidebar-shell-active .v2-readiness-strip span,
  body.v2-sidebar-shell-active .v2-nav button {
    border-color: #ded5c9 !important;
    background: #fffdf9 !important;
    color: #1f2328 !important;
  }

  body.v2-sidebar-shell-active .v2-nav button.active,
  body.v2-sidebar-shell-active .v2-nav button[aria-current="page"],
  body.v2-sidebar-shell-active .v2-primary-action,
  body.v2-sidebar-shell-active button.v2-primary-action {
    border-color: #e60000 !important;
    background: #e60000 !important;
    color: #ffffff !important;
  }

  body.v2-sidebar-shell-active .v2-topbar,
  body.v2-sidebar-shell-active .v2-page-header,
  body.v2-sidebar-shell-active .v2-card,
  body.v2-sidebar-shell-active .v2-metric-card,
  body.v2-sidebar-shell-active .v2-action-card,
  body.v2-sidebar-shell-active .v2-deferred-zone,
  body.v2-sidebar-shell-active .v2-table-panel,
  body.v2-sidebar-shell-active .v2-table-panel-head,
  body.v2-sidebar-shell-active .v2-connections-table-panel,
  body.v2-sidebar-shell-active .v2-noc-table-panel,
  body.v2-sidebar-shell-active .v2-insights-table-panel,
  body.v2-sidebar-shell-active .v2-admin-access-panel,
  body.v2-sidebar-shell-active .v2-admin-diagnostics,
  body.v2-sidebar-shell-active .v2-bts-map-placeholder,
  body.v2-sidebar-shell-active .v2-noc-map-section,
  body.v2-sidebar-shell-active .v2-noc-ops-panel,
  body.v2-sidebar-shell-active .v2-mini-table-panel,
  body.v2-sidebar-shell-active .v2-noc-focus-panel,
  body.v2-sidebar-shell-active .v2-rsa-matrix-section,
  body.v2-sidebar-shell-active .v2-connections-period-panel {
    border-color: #cfc5b8 !important;
    background:
      radial-gradient(circle at 100% 0%, rgba(230,0,0,.04), transparent 130px),
      #fffdf9 !important;
    color: #1f2328 !important;
    box-shadow: 0 12px 26px rgba(80,58,42,.13) !important;
  }

  body.v2-sidebar-shell-active .v2-deferred-zone,
  body.v2-sidebar-shell-active .v2-rsa-matrix-section,
  body.v2-sidebar-shell-active .v2-noc-ops-panel,
  body.v2-sidebar-shell-active .v2-mini-table-panel,
  body.v2-sidebar-shell-active .v2-noc-focus-panel {
    background:
      repeating-radial-gradient(circle at 98% 0%, rgba(230,0,0,.028) 0 1px, transparent 1px 18px),
      #f8f3ec !important;
  }

  body.v2-sidebar-shell-active .v2-card *,
  body.v2-sidebar-shell-active .v2-table-panel *,
  body.v2-sidebar-shell-active .v2-connections-table-panel *,
  body.v2-sidebar-shell-active .v2-noc-table-panel *,
  body.v2-sidebar-shell-active .v2-mini-table-panel *,
  body.v2-sidebar-shell-active .v2-noc-focus-panel *,
  body.v2-sidebar-shell-active .v2-rsa-matrix-section * {
    color: inherit;
  }

  body.v2-sidebar-shell-active .v2-card-label,
  body.v2-sidebar-shell-active .v2-card-foot,
  body.v2-sidebar-shell-active .v2-action-card span,
  body.v2-sidebar-shell-active .v2-action-card small,
  body.v2-sidebar-shell-active .v2-muted,
  body.v2-sidebar-shell-active .v2-mobile-muted,
  body.v2-sidebar-shell-active .v2-table td::before,
  body.v2-sidebar-shell-active .v2-mini-table th,
  body.v2-sidebar-shell-active .v2-table th {
    color: #5c6670 !important;
  }

  body.v2-sidebar-shell-active .v2-card-value,
  body.v2-sidebar-shell-active .v2-action-card strong,
  body.v2-sidebar-shell-active .v2-section-title,
  body.v2-sidebar-shell-active .v2-table td[data-card-title="true"],
  body.v2-sidebar-shell-active .v2-rsa-mobile-daily strong {
    color: #111418 !important;
  }

  body.v2-sidebar-shell-active .v2-table,
  body.v2-sidebar-shell-active .v2-table-wrap,
  body.v2-sidebar-shell-active .v2-table tbody,
  body.v2-sidebar-shell-active .v2-mini-table,
  body.v2-sidebar-shell-active .v2-mini-table tbody {
    border-color: #ded5c9 !important;
    background: #ffffff !important;
    color: #1f2328 !important;
  }

  body.v2-sidebar-shell-active .v2-table th,
  body.v2-sidebar-shell-active .v2-mini-table th {
    border-color: #ded5c9 !important;
    background: #ebe4da !important;
    color: #5c6670 !important;
  }

  body.v2-sidebar-shell-active .v2-table tr,
  body.v2-sidebar-shell-active .v2-mini-table tr {
    border-color: #e4dacf !important;
    background: #ffffff !important;
    color: #1f2328 !important;
    box-shadow: none !important;
  }

  body.v2-sidebar-shell-active .v2-table td,
  body.v2-sidebar-shell-active .v2-mini-table td,
  body.v2-sidebar-shell-active .v2-rsa-mobile-daily {
    border-color: #e4dacf !important;
    background: transparent !important;
    color: #1f2328 !important;
  }

  body.v2-sidebar-shell-active .v2-table tr:hover,
  body.v2-sidebar-shell-active .v2-table tr:focus-within,
  body.v2-sidebar-shell-active .v2-table tr:active,
  body.v2-sidebar-shell-active .v2-mini-table [data-noc-map-filter]:hover,
  body.v2-sidebar-shell-active .v2-mini-table [data-noc-map-filter]:focus,
  body.v2-sidebar-shell-active .v2-mini-table [data-noc-map-filter].is-selected,
  body.v2-sidebar-shell-active .v2-connections-table-panel .v2-table tr.is-selected {
    background: #ffe7e5 !important;
    color: #1f2328 !important;
    box-shadow: inset 3px 0 0 #e60000 !important;
  }

  body.v2-sidebar-shell-active input,
  body.v2-sidebar-shell-active select,
  body.v2-sidebar-shell-active textarea,
  body.v2-sidebar-shell-active .v2-table-search,
  body.v2-sidebar-shell-active .v2-search-wrap input {
    border-color: #cfc5b8 !important;
    background: #ffffff !important;
    color: #1f2328 !important;
  }

  body.v2-sidebar-shell-active input::placeholder,
  body.v2-sidebar-shell-active textarea::placeholder {
    color: #8a929a !important;
  }

  body.v2-sidebar-shell-active .v2-status-pill,
  body.v2-sidebar-shell-active .v2-table-count,
  body.v2-sidebar-shell-active .v2-active-filters,
  body.v2-sidebar-shell-active .v2-page-status {
    border-color: #ded5c9 !important;
    background: #fffaf4 !important;
    color: #5c6670 !important;
  }

  body.v2-sidebar-shell-active .v2-table-pager {
    border-color: #ded5c9 !important;
    background: linear-gradient(180deg, rgba(255,253,249,.94), #e8e1d7) !important;
    color: #1f2328 !important;
  }

  body.v2-sidebar-shell-active .v2-table-pager button,
  body.v2-sidebar-shell-active .v2-clear-search,
  body.v2-sidebar-shell-active .v2-copy-button,
  body.v2-sidebar-shell-active .v2-map-default-button,
  body.v2-sidebar-shell-active .v2-map-reset {
    border-color: #cfc5b8 !important;
    background: #ffffff !important;
    color: #1f2328 !important;
  }

  body.v2-sidebar-shell-active .v2-table-pager button:active,
  body.v2-sidebar-shell-active .v2-clear-search:active,
  body.v2-sidebar-shell-active .v2-copy-button:active,
  body.v2-sidebar-shell-active .v2-map-default-button:active,
  body.v2-sidebar-shell-active .v2-map-reset:active {
    background: #ffe7e5 !important;
    color: #8a0000 !important;
  }

  body.v2-sidebar-shell-active .v2-map-frame,
  body.v2-sidebar-shell-active .v2-leaflet-map,
  body.v2-sidebar-shell-active .leaflet-container {
    color: #1f2328 !important;
  }
}

body.adminlte-recharge-shell {
  background: #f4f6f9 !important;
}

body.adminlte-recharge-shell #v2AppShell,
body.adminlte-recharge-shell .v2-app-shell,
body.adminlte-recharge-shell .v2-main-content,
body.adminlte-recharge-shell .v2-page-root,
body.adminlte-recharge-shell .v2-page,
body.adminlte-recharge-shell .v2-recharge-page {
  background: #f4f6f9 !important;
}

body.adminlte-recharge-shell #v2AppShell {
  padding: 0 !important;
}

body.adminlte-recharge-shell .v2-shell-layout {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 0;
  min-height: 100vh;
}

body.adminlte-recharge-shell #v2SidebarNavDrawer {
  top: 0;
  height: 100vh;
  border: 0 !important;
  border-radius: 0 !important;
  background: #343a40 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22) !important;
  color: #c2c7d0 !important;
}

body.adminlte-recharge-shell .v2-sidebar-brand {
  margin: -4px -4px 8px;
  padding: 14px 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

body.adminlte-recharge-shell .v2-sidebar-brand strong,
body.adminlte-recharge-shell .v2-sidebar-user strong {
  color: #ffffff !important;
}

body.adminlte-recharge-shell .v2-sidebar-brand span,
body.adminlte-recharge-shell .v2-sidebar-user span,
body.adminlte-recharge-shell .v2-sidebar-status em {
  color: #9fa6ad !important;
}

body.adminlte-recharge-shell .v2-sidebar-user,
body.adminlte-recharge-shell .v2-sidebar-status span,
body.adminlte-recharge-shell .v2-readiness-strip span {
  border-color: rgba(255, 255, 255, .08) !important;
  background: rgba(255, 255, 255, .04) !important;
  color: #c2c7d0 !important;
}

body.adminlte-recharge-shell .v2-nav button {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border: 0 !important;
  border-radius: 4px !important;
  background: transparent !important;
  color: #c2c7d0 !important;
  text-align: left;
}

body.adminlte-recharge-shell .v2-sidebar-nav [data-page] {
  display: none !important;
}

body.adminlte-recharge-shell [data-v2-recharge-nav] {
  grid-template-columns: 24px minmax(0, 1fr);
}

body.adminlte-recharge-shell [data-v2-recharge-nav]::before {
  content: "R";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

body.adminlte-recharge-shell .v2-nav button:hover,
body.adminlte-recharge-shell .v2-nav button:focus {
  background: rgba(255, 255, 255, .08) !important;
  color: #ffffff !important;
}

body.adminlte-recharge-shell .v2-nav button.active,
body.adminlte-recharge-shell .v2-nav button[aria-current="page"] {
  background: #e60000 !important;
  color: #ffffff !important;
}

body.adminlte-recharge-shell .v2-sidebar-footer button {
  border-color: rgba(255, 255, 255, .14) !important;
  background: rgba(255, 255, 255, .05) !important;
  color: #ffffff !important;
}

body.adminlte-recharge-shell .v2-main-content {
  min-height: 100vh;
}

body.adminlte-recharge-shell .v2-main-content::before {
  content: attr(data-adminlte-page-title);
  position: sticky;
  top: 0;
  z-index: 20;
  display: block;
  height: 52px;
  padding: 14px 22px;
  border-bottom: 1px solid #dee2e6;
  background: #ffffff;
  color: #1f2d3d;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

body.adminlte-recharge-shell #v2RechargeRoot {
  padding: 18px;
}

body.adminlte-recharge-shell .v2-page-header,
body.adminlte-recharge-shell .v2-card,
body.adminlte-recharge-shell .v2-metric-card,
body.adminlte-recharge-shell .v2-deferred-zone,
body.adminlte-recharge-shell .v2-recharge-chart-card,
body.adminlte-recharge-shell .v2-recharge-section {
  border-color: #dee2e6 !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08) !important;
}

body.adminlte-recharge-shell .v2-page-header {
  margin: 0 0 12px;
  padding: 14px 16px;
}

body.adminlte-recharge-shell .v2-page-header h1 {
  color: #1f2d3d !important;
  font-size: 24px;
}

body.adminlte-recharge-shell .v2-kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.adminlte-recharge-shell .v2-card {
  padding: 11px 12px;
}

body.adminlte-recharge-shell .v2-card-value {
  color: #1f2d3d !important;
  font-size: 24px;
}

body.adminlte-recharge-shell .v2-card-label,
body.adminlte-recharge-shell .v2-card-foot,
body.adminlte-recharge-shell .v2-muted,
body.adminlte-recharge-shell .v2-table th {
  color: #6c757d !important;
}

body.adminlte-recharge-shell .v2-table,
body.adminlte-recharge-shell .v2-table-wrap,
body.adminlte-recharge-shell .v2-table tbody {
  background: #ffffff !important;
}

body.adminlte-recharge-shell .v2-table th {
  background: #f8f9fa !important;
}

@media (max-width: 900px) {
  body.adminlte-recharge-shell .v2-shell-layout {
    display: block;
  }

  body.adminlte-recharge-shell #v2AppShell {
    padding-top: 56px !important;
  }

  body.adminlte-recharge-shell .v2-mobile-bar {
    display: flex !important;
    border-bottom: 1px solid #dee2e6 !important;
    background: #ffffff !important;
  }

  body.adminlte-recharge-shell #v2SidebarNavDrawer {
    position: fixed;
    width: min(82vw, 280px);
    transform: translateX(-104%);
  }

  body.adminlte-recharge-shell .v2-app-shell.v2-drawer-open #v2SidebarNavDrawer {
    transform: translateX(0);
  }

  body.adminlte-recharge-shell .v2-main-content::before {
    display: none;
  }

  body.adminlte-recharge-shell #v2RechargeRoot {
    padding: 12px;
  }

  body.adminlte-recharge-shell .v2-kpi-grid {
    grid-template-columns: 1fr;
  }
}

body.adminlte-recharge-shell,
body.adminlte-recharge-shell #v2AppShell {
  overflow-x: hidden !important;
}

body.adminlte-recharge-shell #v2SidebarNavDrawer {
  overflow-y: auto;
}

body.adminlte-recharge-shell .v2-readiness-strip {
  gap: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

body.adminlte-recharge-shell .v2-readiness-strip span {
  min-height: 34px;
  padding: 7px 0;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.adminlte-recharge-shell .v2-readiness-strip span:last-child {
  border-bottom: 0 !important;
}

body.adminlte-recharge-shell [data-v2-recharge-nav] {
  margin: 4px 0 8px;
}

body.adminlte-recharge-shell #v2RechargeRoot {
  padding: 16px 18px 22px;
}

body.adminlte-recharge-shell .v2-recharge-page {
  position: relative;
  display: flow-root;
}

body.adminlte-recharge-shell .v2-recharge-page > .v2-page-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: block;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.adminlte-recharge-shell .v2-recharge-page > .v2-page-header > div:first-child {
  display: none !important;
}

body.adminlte-recharge-shell .v2-recharge-page > .v2-page-header .v2-status-pill {
  min-height: 32px;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid #d7dde3 !important;
  border-radius: 4px;
  background: #ffffff !important;
  color: #495057 !important;
  box-shadow: none !important;
  white-space: nowrap;
}

body.adminlte-recharge-shell .v2-recharge-page > .v2-recharge-toolbar:first-of-type {
  align-items: center;
  min-height: 34px;
  margin-bottom: 10px;
  padding-right: 156px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
}

body.adminlte-recharge-shell .v2-active-filters {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  color: #5f6b76 !important;
}

body.adminlte-recharge-shell .v2-recharge-toolbar-actions {
  align-items: center;
}

body.adminlte-recharge-shell #v2RechargeHistoryMonth {
  min-height: 34px;
  border-radius: 4px;
}

body.adminlte-recharge-shell #v2RechargeRefresh,
body.adminlte-recharge-shell .v2-copy-button {
  min-height: 34px;
  border-radius: 4px !important;
  box-shadow: none !important;
}

body.adminlte-recharge-shell .v2-card-grid {
  gap: 8px;
  margin-bottom: 10px;
}

body.adminlte-recharge-shell .v2-card,
body.adminlte-recharge-shell .v2-metric-card {
  min-height: 94px;
  border-top: 1px solid #e5e7eb !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left-width: 3px !important;
  box-shadow: none !important;
}

body.adminlte-recharge-shell .v2-card-label {
  letter-spacing: .03em;
}

body.adminlte-recharge-shell .v2-card-value {
  margin-top: 5px;
  font-size: 22px;
}

body.adminlte-recharge-shell .v2-card-foot {
  margin-top: 5px;
}

body.adminlte-recharge-shell .v2-recharge-chart-card,
body.adminlte-recharge-shell .v2-recharge-section {
  margin-top: 12px;
  padding: 12px 0 0;
  border-width: 1px 0 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.adminlte-recharge-shell .v2-recharge-chart-card {
  padding-top: 14px;
}

body.adminlte-recharge-shell .v2-section-title {
  color: #1f2d3d !important;
  font-size: 16px;
}

body.adminlte-recharge-shell .v2-recharge-chart-card > .v2-muted,
body.adminlte-recharge-shell .v2-recharge-section .v2-muted {
  margin-top: 3px;
}

body.adminlte-recharge-shell .v2-recharge-chart-wrap,
body.adminlte-recharge-shell .v2-recharge-table-scroll {
  margin-top: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

body.adminlte-recharge-shell .v2-recharge-chart {
  min-width: 820px;
}

body.adminlte-recharge-shell .v2-table {
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

body.adminlte-recharge-shell .v2-table th {
  border-bottom: 1px solid #e5e7eb !important;
}

body.adminlte-recharge-shell .v2-recharge-footnote {
  margin-top: 7px;
}

@media (max-width: 900px) {
  body.adminlte-recharge-shell #v2AppShell {
    min-height: 100dvh;
  }

  body.adminlte-recharge-shell #v2SidebarNavDrawer {
    top: 0;
    bottom: 0;
    z-index: 940;
    height: 100dvh;
    max-width: 280px;
    overflow-y: auto;
  }

  body.adminlte-recharge-shell .v2-mobile-drawer-backdrop {
    z-index: 930;
  }

  body.adminlte-recharge-shell .v2-recharge-page > .v2-page-header {
    position: static;
    margin: 0 0 8px;
  }

  body.adminlte-recharge-shell .v2-recharge-page > .v2-page-header .v2-status-pill {
    display: inline-flex !important;
  }

  body.adminlte-recharge-shell .v2-recharge-page > .v2-recharge-toolbar:first-of-type {
    align-items: stretch;
    padding-right: 0;
  }

  body.adminlte-recharge-shell .v2-recharge-toolbar-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  body.adminlte-recharge-shell .v2-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.adminlte-recharge-shell .v2-card,
  body.adminlte-recharge-shell .v2-metric-card {
    min-height: 88px;
  }

  body.adminlte-recharge-shell .v2-card-value {
    font-size: 20px;
  }

  body.adminlte-recharge-shell .v2-recharge-chart {
    min-width: 720px;
  }
}

@media (max-width: 520px) {
  body.adminlte-recharge-shell .v2-recharge-toolbar-actions {
    grid-template-columns: 1fr;
  }

  body.adminlte-recharge-shell #v2RechargeRoot {
    padding: 10px;
  }
}

@media (max-width: 900px) {
  body.adminlte-recharge-shell {
    font-size: 14px;
  }

  body.adminlte-recharge-shell #v2AppShell {
    padding-top: 54px !important;
  }

  body.adminlte-recharge-shell .v2-mobile-bar {
    min-height: 54px;
    padding: 6px 10px !important;
    gap: 9px;
  }

  body.adminlte-recharge-shell #v2MobileMenuBtn {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0 !important;
    border-radius: 6px !important;
    font-size: 22px !important;
    line-height: 1;
  }

  body.adminlte-recharge-shell .v2-mobile-bar > div {
    min-width: 0;
    gap: 1px;
  }

  body.adminlte-recharge-shell .v2-mobile-bar > div strong {
    font-size: 23px !important;
    line-height: 1.08;
    letter-spacing: 0;
  }

  body.adminlte-recharge-shell .v2-mobile-bar > div span {
    font-size: 16px !important;
    line-height: 1.15;
  }

  body.adminlte-recharge-shell #v2SidebarNavDrawer {
    width: min(84vw, 320px) !important;
    max-width: min(84vw, 320px) !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    padding: 9px 9px calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    box-sizing: border-box;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  body.adminlte-recharge-shell .v2-sidebar-brand {
    margin: -1px -1px 5px;
    padding: 8px 5px 9px;
  }

  body.adminlte-recharge-shell .v2-sidebar-brand strong {
    font-size: 14px !important;
    line-height: 1.15;
  }

  body.adminlte-recharge-shell .v2-sidebar-brand span,
  body.adminlte-recharge-shell .v2-sidebar-user span,
  body.adminlte-recharge-shell .v2-sidebar-status em {
    font-size: 10px !important;
    line-height: 1.2;
  }

  body.adminlte-recharge-shell .v2-sidebar-user,
  body.adminlte-recharge-shell .v2-sidebar-status span,
  body.adminlte-recharge-shell .v2-readiness-strip span {
    min-height: 26px;
    padding: 4px 0 !important;
  }

  body.adminlte-recharge-shell .v2-sidebar-user strong,
  body.adminlte-recharge-shell .v2-sidebar-status strong {
    font-size: 11px !important;
    line-height: 1.2;
  }

  body.adminlte-recharge-shell .v2-sidebar-nav {
    gap: 4px;
    margin-top: 6px;
  }

  body.adminlte-recharge-shell .v2-nav button,
  body.adminlte-recharge-shell .v2-sidebar-footer button {
    min-height: 40px;
    padding: 7px 9px !important;
    font-size: 12px !important;
    line-height: 1.2;
  }

  body.adminlte-recharge-shell [data-v2-recharge-nav] {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  body.adminlte-recharge-shell [data-v2-recharge-nav]::before {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  body.adminlte-recharge-shell .v2-sidebar-footer {
    gap: 6px;
    margin-top: 8px;
  }

  body.adminlte-recharge-shell .v2-sidebar-logo {
    max-width: 100%;
    max-height: 56px;
    height: auto;
    object-fit: contain;
    margin-top: 8px;
  }

  body.adminlte-recharge-shell #v2RechargeRoot {
    padding: 10px;
  }

  body.adminlte-recharge-shell .v2-recharge-page > .v2-page-header {
    margin: 0 0 7px;
  }

  body.adminlte-recharge-shell .v2-recharge-page > .v2-page-header .v2-status-pill {
    min-height: 28px;
    padding: 5px 8px;
    font-size: 12px !important;
    line-height: 1.2;
  }

  body.adminlte-recharge-shell .v2-recharge-page > .v2-recharge-toolbar:first-of-type {
    gap: 8px;
    min-height: 0;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  body.adminlte-recharge-shell .v2-active-filters,
  body.adminlte-recharge-shell .v2-table-count {
    font-size: 12px !important;
    line-height: 1.35;
  }

  body.adminlte-recharge-shell .v2-recharge-toolbar-actions {
    gap: 8px;
  }

  body.adminlte-recharge-shell #v2RechargeHistoryMonth,
  body.adminlte-recharge-shell #v2RechargeRefresh,
  body.adminlte-recharge-shell .v2-copy-button {
    min-height: 44px;
    padding: 9px 11px !important;
    font-size: 14px !important;
    line-height: 1.2;
  }

  body.adminlte-recharge-shell #v2RechargeRoot .v2-recharge-page > .v2-card-grid.v2-kpi-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px;
    margin-bottom: 7px;
  }

  body.adminlte-recharge-shell .v2-card,
  body.adminlte-recharge-shell .v2-metric-card {
    min-width: 0;
    min-height: 74px;
    padding: 7px 8px !important;
  }

  body.adminlte-recharge-shell .v2-card-label {
    font-size: 11px !important;
    line-height: 1.2;
    letter-spacing: .02em;
  }

  body.adminlte-recharge-shell .v2-card-value {
    margin-top: 4px;
    font-size: clamp(18px, 5.2vw, 23px) !important;
    line-height: 1.05;
    min-width: 0;
  }

  body.adminlte-recharge-shell .v2-card-foot {
    margin-top: 4px;
    font-size: 12px !important;
    line-height: 1.25;
  }

  body.adminlte-recharge-shell .v2-recharge-chart-card,
  body.adminlte-recharge-shell .v2-recharge-section {
    margin-top: 10px;
    padding-top: 10px;
  }

  body.adminlte-recharge-shell .v2-section-title {
    font-size: 19px !important;
    line-height: 1.18;
  }

  body.adminlte-recharge-shell .v2-recharge-chart-card > .v2-muted,
  body.adminlte-recharge-shell .v2-recharge-section .v2-muted,
  body.adminlte-recharge-shell .v2-recharge-footnote {
    font-size: 13px !important;
    line-height: 1.32;
  }

  body.adminlte-recharge-shell .v2-recharge-chart-wrap,
  body.adminlte-recharge-shell .v2-recharge-table-scroll,
  body.adminlte-recharge-shell .v2-table-wrap {
    max-width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  body.adminlte-recharge-shell .v2-recharge-chart {
    width: 100%;
    min-width: 600px;
  }

  body.adminlte-recharge-shell .v2-recharge-chart svg {
    max-width: none;
  }

  body.adminlte-recharge-shell .v2-recharge-table-scroll .v2-table {
    width: max-content;
    min-width: 760px;
    font-size: 13px !important;
    table-layout: auto;
  }

  body.adminlte-recharge-shell .v2-table th,
  body.adminlte-recharge-shell .v2-table td {
    padding: 7px 9px !important;
    font-size: 13px !important;
    line-height: 1.25;
    overflow-wrap: normal;
    word-break: normal;
    white-space: nowrap;
  }

  body.adminlte-recharge-shell .v2-table th {
    font-size: 11px !important;
  }
}

@media (max-width: 339px) {
  body.adminlte-recharge-shell #v2RechargeRoot .v2-recharge-page > .v2-card-grid.v2-kpi-grid {
    grid-template-columns: 1fr !important;
  }

  body.adminlte-recharge-shell .v2-mobile-bar > div strong {
    font-size: 22px !important;
  }

  body.adminlte-recharge-shell .v2-mobile-bar > div span {
    font-size: 15px !important;
  }
}

body.adminlte-dashboard-shell {
  --adminlte-font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --adminlte-sidebar-width: 250px;
  --adminlte-sidebar-icon-size: 30px;
  --adminlte-font-app-title: 18px;
  --adminlte-font-page-subtitle: 13px;
  --adminlte-font-sidebar-brand: 16px;
  --adminlte-font-sidebar-meta: 11px;
  --adminlte-font-sidebar-nav: 13px;
  --adminlte-font-section-title: 16px;
  --adminlte-font-body: 13px;
  --adminlte-font-supporting: 12px;
  --adminlte-font-kpi-label: 10px;
  --adminlte-font-kpi-value: 22px;
  --adminlte-font-kpi-foot: 11px;
  --adminlte-font-control: 13px;
  --adminlte-font-table-head: 11px;
  --adminlte-font-table-body: 12.5px;
  --adminlte-font-caption: 11px;
  --adminlte-line-tight: 1.18;
  --adminlte-line-body: 1.32;
  --adminlte-line-table: 1.25;
}

body.adminlte-dashboard-shell,
body.adminlte-dashboard-shell #v2AppShell {
  font-family: var(--adminlte-font-family);
  font-size: var(--adminlte-font-body);
  line-height: var(--adminlte-line-body);
}

body.adminlte-dashboard-shell #v2AppShell {
  min-height: 100dvh;
  overflow-x: hidden !important;
}

body.adminlte-dashboard-shell .v2-shell-layout {
  display: block;
  min-height: 100dvh;
}

body.adminlte-dashboard-shell #v2SidebarNavDrawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 960;
  display: flex;
  flex-direction: column;
  width: var(--adminlte-sidebar-width);
  height: 100dvh;
  max-height: 100dvh;
  gap: 6px;
  padding: 10px 12px 9px;
  overflow: hidden !important;
  box-sizing: border-box;
  pointer-events: auto;
}

body.adminlte-dashboard-shell .v2-main-content {
  min-height: 100dvh;
  margin-left: var(--adminlte-sidebar-width);
}

body.adminlte-dashboard-shell .v2-sidebar-brand {
  flex: 0 0 auto;
  margin: 0 0 4px;
  padding: 8px 6px 10px;
}

body.adminlte-dashboard-shell .v2-sidebar-user {
  flex: 0 0 auto;
  gap: 3px;
  padding: 8px;
  border-radius: 6px;
}

body.adminlte-dashboard-shell .v2-sidebar-nav {
  flex: 0 0 auto;
  display: grid;
  gap: 5px;
  margin: 5px 0 0;
}

body.adminlte-dashboard-shell .v2-readiness-strip {
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: 7px;
}

body.adminlte-dashboard-shell .v2-readiness-strip span {
  min-height: 24px;
  padding: 4px 0;
}

body.adminlte-dashboard-shell .v2-diagnostics-console {
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 6px;
  border-radius: 6px;
}

body.adminlte-dashboard-shell .v2-diagnostics-body {
  max-height: 120px;
}

body.adminlte-dashboard-shell .v2-diagnostics-actions {
  gap: 5px;
  margin-top: 6px;
}

body.adminlte-dashboard-shell .v2-sidebar-footer {
  flex: 0 0 auto;
  gap: 6px;
  margin-top: 2px;
}

body.adminlte-dashboard-shell .v2-sidebar-footer button {
  min-height: 32px;
  border-radius: 6px;
}

body.adminlte-dashboard-shell .v2-sidebar-logo {
  width: min(100%, 186px);
  max-height: 42px;
  margin: 4px auto 0;
  object-fit: contain;
  object-position: center center;
  background: transparent !important;
}

body.adminlte-dashboard-shell .v2-main-content::before {
  display: flex;
  align-items: center;
  height: 52px;
  min-height: 0;
  padding: 0 18px;
  box-sizing: border-box;
}

body.adminlte-dashboard-shell #v2RechargeRoot,
body.adminlte-dashboard-shell #v2DashboardRoot,
body.adminlte-dashboard-shell #v2ConnectionsRoot,
body.adminlte-dashboard-shell #v2NocWatchRoot,
body.adminlte-dashboard-shell #v2AdminConsoleRoot {
  padding: 12px 16px 20px;
}

body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="dashboard"]:not([hidden]),
body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="connections"]:not([hidden]),
body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="noc"]:not([hidden]),
body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="admin"]:not([hidden]) {
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap;
  gap: 9px;
  min-height: 38px;
  margin: 0;
  padding: 4px 8px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.adminlte-dashboard-shell [data-v2-recharge-nav] {
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap;
  gap: 9px;
  min-height: 38px;
  margin: 0;
  padding: 4px 8px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.adminlte-dashboard-shell [data-v2-recharge-nav]::before,
body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="dashboard"]::before,
body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="connections"]::before,
body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="noc"]::before,
body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="admin"]::before {
  flex: 0 0 var(--adminlte-sidebar-icon-size);
  display: inline-grid;
  width: var(--adminlte-sidebar-icon-size);
  height: var(--adminlte-sidebar-icon-size);
  place-items: center;
  border-radius: 8px;
  border: 1px solid currentColor;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

body.adminlte-dashboard-shell [data-v2-recharge-nav]::before {
  background: rgba(230, 0, 0, .18);
  color: #ff6b6b;
}

body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="dashboard"]::before {
  content: "D";
  background: rgba(16, 185, 129, .17);
  color: #34d399;
}

body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="connections"]::before {
  content: "C";
  background: rgba(59, 130, 246, .16);
  color: #60a5fa;
}

body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="noc"]::before {
  content: "N";
  background: rgba(245, 158, 11, .18);
  color: #fbbf24;
}

body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="admin"]::before {
  content: "A";
  background: rgba(168, 85, 247, .17);
  color: #c084fc;
}

body.adminlte-dashboard-shell [data-v2-recharge-nav].active::before,
body.adminlte-dashboard-shell [data-v2-recharge-nav][aria-current="page"]::before,
body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page].active::before,
body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page][aria-current="page"]::before {
  background: #ffffff;
  border-color: rgba(255, 255, 255, .86);
  color: #e60000;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot {
  padding: 16px 18px 22px;
}

body.adminlte-dashboard-shell #v2DashboardRoot {
  padding: 16px 18px 22px;
}

body.adminlte-dashboard-shell #v2NocWatchRoot {
  padding: 16px 18px 22px;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot {
  padding: 16px 18px 22px;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-connections-page {
  background: #f4f6f9 !important;
}

body.adminlte-dashboard-shell #v2DashboardRoot .v2-executive-dashboard {
  background: #f4f6f9 !important;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-nocWatch {
  background: #f4f6f9 !important;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-adminConsole {
  background: #f4f6f9 !important;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-page-header {
  display: none !important;
}

body.adminlte-dashboard-shell #v2DashboardRoot .v2-page-header {
  display: none !important;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-page-header {
  display: none !important;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-page-header {
  display: none !important;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-card-grid {
  gap: 8px;
  margin-bottom: 10px;
}

body.adminlte-dashboard-shell #v2DashboardRoot .v2-card-grid {
  gap: 8px;
  margin-bottom: 10px;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-card-grid {
  gap: 8px;
  margin-bottom: 10px;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-card-grid {
  gap: 8px;
  margin-bottom: 10px;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot #v2ConnectionsKpis {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.adminlte-dashboard-shell #v2DashboardRoot .v2-dashboard-kpi-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-action-grid,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid > * {
  min-height: 0;
  padding: 10px 12px;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid > *:nth-child(1),
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid > *:nth-child(2) {
  grid-column: span 2;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid > *:nth-child(3),
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid > *:nth-child(4) {
  grid-column: span 3;
}

.v2-executive-dashboard {
  display: grid;
  gap: 12px;
}

.v2-dashboard-panel {
  border: 1px solid var(--v2-border-subtle);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.v2-dashboard-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.v2-dashboard-panel-header h2 {
  margin: 0;
  color: var(--v2-text-strong);
  font-size: 17px;
  line-height: 1.2;
}

.v2-dashboard-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.v2-dashboard-chart-card {
  min-width: 0;
  border: 1px solid var(--v2-border-subtle);
  border-radius: 8px;
  background: var(--v2-bg-surface-soft);
  padding: 10px;
}

.v2-dashboard-chart-card .v2-muted {
  margin: 3px 0 8px;
  font-size: 12px;
  line-height: 1.35;
}

.v2-dashboard-section-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  min-height: 92px;
  align-content: center;
  border: 1px dashed var(--v2-border-subtle);
  border-radius: 8px;
  padding: 14px;
  color: var(--v2-text-muted);
  background: var(--v2-bg-surface-soft);
}

.v2-dashboard-section-state strong {
  color: var(--v2-text-strong);
}

.v2-dashboard-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  overflow: visible;
}

.v2-dashboard-svg text {
  fill: var(--v2-text-muted);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
}

.v2-dashboard-grid {
  stroke: var(--v2-border-subtle);
  stroke-width: 1;
}

.v2-dashboard-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v2-dashboard-line.actual {
  stroke: var(--v2-brand-red);
  stroke-width: 3;
}

.v2-dashboard-line.required {
  stroke: #4b5563;
  stroke-width: 2.4;
  stroke-dasharray: 7 6;
}

.v2-dashboard-line.growth {
  stroke: #2563eb;
  stroke-width: 2.5;
}

.v2-dashboard-point.actual,
.v2-dashboard-bar,
.v2-dashboard-horizontal-bar {
  fill: var(--v2-brand-red);
}

.v2-dashboard-point.required {
  fill: #4b5563;
}

.v2-dashboard-point.growth {
  fill: #2563eb;
}

.v2-dashboard-bar {
  opacity: .78;
}

.v2-dashboard-bar.active {
  opacity: 1;
}

.v2-dashboard-target-tick {
  stroke: #111827;
  stroke-width: 2;
}

.v2-dashboard-horizontal-bar {
  opacity: .82;
}

.v2-dashboard-bar-label {
  font-size: 10.5px !important;
}

.v2-dashboard-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 7px;
  color: var(--v2-text-muted);
  font-size: 11px;
  font-weight: 800;
}

.v2-dashboard-legend span::before {
  content: "";
  display: inline-block;
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
  border-top: 3px solid var(--v2-brand-red);
}

.v2-dashboard-legend .required::before {
  border-top-color: #4b5563;
  border-top-style: dashed;
}

.v2-dashboard-legend .growth::before {
  border-top-color: #2563eb;
}

.v2-dashboard-legend .target::before {
  border-top-color: #111827;
}

.v2-dashboard-freshness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.v2-dashboard-freshness-item {
  display: grid;
  gap: 6px;
  min-width: 0;
  border: 1px solid var(--v2-border-subtle);
  border-radius: 8px;
  padding: 10px;
  background: var(--v2-bg-surface-soft);
}

.v2-dashboard-freshness-item span {
  color: var(--v2-text-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.v2-dashboard-freshness-item strong {
  min-width: 0;
  color: var(--v2-text-strong);
  font-size: 13px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.v2-dashboard-freshness-item button {
  justify-self: start;
  border: 0;
  padding: 0;
  color: var(--v2-brand-red);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-card,
body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-metric-card,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-card,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-metric-card,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-card,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-metric-card {
  min-height: 82px;
  padding: 11px 12px;
  border-top: 1px solid #e5e7eb !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left-width: 3px !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-card-value,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-card-value,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-card-value {
  color: #1f2d3d !important;
  font-size: 22px;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot #v2ConnectionsDeferred,
body.adminlte-dashboard-shell #v2ConnectionsRoot #v2ConnectionsDeferred > .v2-deferred-zone,
body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-rsa-matrix-section {
  margin-top: 12px;
  padding: 12px 0 0;
  border-width: 1px 0 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-bts-map-placeholder,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-ops-panel,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-mini-table-panel,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-focus-panel,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-deferred-zone,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-panel,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-panel,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-diagnostics {
  margin-top: 12px;
  border-color: #dee2e6 !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-bts-map-placeholder {
  grid-template-columns: minmax(260px, .62fr) minmax(520px, 1.38fr);
  align-items: stretch;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-frame,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-leaflet-map {
  min-height: 460px;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot #v2ConnectionsDeferred {
  padding-top: 0;
  border-top: 0 !important;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-section-title,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-section-title,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-section-title {
  color: #1f2d3d !important;
  font-size: 16px;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-muted,
body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-active-filters,
body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-copy-status,
body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-table-count,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-muted,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-active-filters,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-copy-status,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-table-count,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-status,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-focus-status,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-muted,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-count,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-page-status,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-kv {
  color: #6c757d !important;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-ops-filter-grid,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-ops-filter-grid,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-filter-grid,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-toolbar,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-controls,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-pager {
  gap: 8px;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-ops-filter-grid label,
body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-period-control,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-ops-filter-grid label,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-filter-grid label,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-toolbar label {
  border: 0 !important;
  border-radius: 4px !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-map-reset,
body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-copy-button,
body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-clear-search,
body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-table-pager button,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-reset,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-copy-button,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-clear-search,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-table-pager button,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-default-button,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-copy-button,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-clear-search,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-pager button,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-action-buttons button,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-new-key button {
  min-height: 34px;
  border-radius: 4px !important;
  box-shadow: none !important;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot [data-admin-reset-user] {
  border-color: color-mix(in srgb, var(--v2-status-warning) 34%, #dee2e6) !important;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-connections-table-panel,
body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-rsa-matrix-wrap,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table-wrap,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-wrap {
  margin-top: 8px;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-connections-table-panel .v2-table {
  min-width: 760px;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-rsa-matrix-wrap .v2-table {
  width: max-content;
  min-width: 1100px;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table th:nth-child(1),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td:nth-child(1) {
  width: 10%;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table th:nth-child(2),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td:nth-child(2) {
  width: 18%;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table th:nth-child(3),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td:nth-child(3) {
  width: 11%;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table th:nth-child(4),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td:nth-child(4) {
  width: 19%;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table th:nth-child(5),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td:nth-child(5) {
  width: 12%;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table th:nth-child(6),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td:nth-child(6),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table th:nth-child(7),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td:nth-child(7),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table th:nth-child(8),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td:nth-child(8) {
  text-align: right;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table th:nth-child(6),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td:nth-child(6) {
  width: 10%;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table th:nth-child(7),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td:nth-child(7) {
  width: 8%;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table th:nth-child(8),
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td:nth-child(8) {
  width: 12%;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table {
  width: max-content;
  min-width: 760px;
  table-layout: auto;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-table {
  min-width: 1080px;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-table,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-table,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-mini-table,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-table {
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #ffffff !important;
}

body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-table th,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-table th,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-mini-table th,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table th,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-table th {
  border-bottom: 1px solid #e5e7eb !important;
  background: #f8f9fa !important;
  color: #6c757d !important;
}

body.adminlte-dashboard-shell #v2RechargeRoot,
body.adminlte-dashboard-shell #v2ConnectionsRoot,
body.adminlte-dashboard-shell #v2NocWatchRoot,
body.adminlte-dashboard-shell #v2AdminConsoleRoot {
  padding: 12px 16px 20px;
}

body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-page > .v2-page-header,
body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-page > .v2-recharge-toolbar:first-of-type {
  display: none !important;
}

body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-section .v2-recharge-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-section .v2-recharge-toolbar > div:first-child {
  min-width: 0;
}

body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-history-controls,
body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-section-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: end;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-history-controls .v2-recharge-month-picker {
  min-width: 164px;
}

body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-loaded-status {
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 4px;
}

body.adminlte-dashboard-shell #v2RechargeRoot .v2-copy-button,
body.adminlte-dashboard-shell #v2RechargeRoot #v2RechargeRefresh {
  width: auto;
  min-width: 0;
  min-height: 34px;
  padding: 8px 11px !important;
  white-space: nowrap;
}

body.adminlte-dashboard-shell #v2RechargeRoot .v2-card-grid,
body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-card-grid,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-card-grid,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-card-grid {
  gap: 8px;
  margin-bottom: 8px;
}

body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-chart-card,
body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-section,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-bts-map-placeholder,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-ops-panel,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-mini-table-panel,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-focus-panel,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-deferred-zone,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-panel,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-panel,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-diagnostics {
  margin-top: 8px;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-bts-map-placeholder {
  gap: 10px;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-action-grid > *,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid > * {
  min-height: 0 !important;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-action-grid,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid {
  margin-bottom: 8px;
}

body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid > *,
body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-deferred-zone {
  padding-top: 8px;
  padding-bottom: 8px;
}

body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel,
body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table-wrap {
  width: 100%;
}

@media (min-width: 901px) and (max-width: 1240px) {
  body.adminlte-dashboard-shell #v2ConnectionsRoot #v2ConnectionsKpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid > * {
    grid-column: auto;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  body.adminlte-dashboard-shell #v2ConnectionsRoot #v2ConnectionsKpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .v2-dashboard-chart-grid,
  .v2-dashboard-freshness-grid {
    grid-template-columns: 1fr;
  }

  body.adminlte-dashboard-shell #v2DashboardRoot .v2-dashboard-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-dashboard-panel {
    padding: 10px;
  }

  .v2-dashboard-panel-header {
    align-items: stretch;
  }

  .v2-dashboard-svg text {
    font-size: 10px;
  }

  body.adminlte-dashboard-shell {
    --adminlte-sidebar-icon-size: 32px;
  }

  body.adminlte-dashboard-shell .v2-mobile-drawer-backdrop {
    z-index: 940;
    pointer-events: auto;
  }

  body.adminlte-dashboard-shell .v2-mobile-drawer-backdrop[hidden] {
    display: none !important;
    pointer-events: none;
  }

  body.adminlte-dashboard-shell .v2-main-content {
    margin-left: 0;
  }

  body.adminlte-dashboard-shell #v2SidebarNavDrawer {
    position: fixed;
    z-index: 960 !important;
    width: min(84vw, 320px) !important;
    max-width: min(84vw, 320px) !important;
    overflow-y: auto !important;
    pointer-events: auto;
    transform: translateX(-104%);
    isolation: isolate;
  }

  body.adminlte-dashboard-shell .v2-app-shell.v2-drawer-open #v2SidebarNavDrawer {
    transform: translateX(0);
  }

  body.adminlte-dashboard-shell #v2SidebarNavDrawer,
  body.adminlte-dashboard-shell #v2SidebarNavDrawer * {
    pointer-events: auto;
  }

  body.adminlte-dashboard-shell .v2-sidebar-nav {
    gap: 4px;
  }

  body.adminlte-dashboard-shell [data-v2-recharge-nav],
  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="dashboard"]:not([hidden]),
  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="connections"]:not([hidden]),
  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="noc"]:not([hidden]),
  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="admin"]:not([hidden]) {
    min-height: 40px;
    gap: 8px;
    padding: 4px 8px !important;
  }

  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="dashboard"]:not([hidden]) {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="connections"]:not([hidden]) {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="noc"]:not([hidden]) {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="admin"]:not([hidden]) {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="dashboard"]::before,
  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="connections"]::before,
  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="noc"]::before,
  body.adminlte-dashboard-shell #v2SidebarNavDrawer [data-page="admin"]::before {
    width: var(--adminlte-sidebar-icon-size);
    height: var(--adminlte-sidebar-icon-size);
    font-size: 15px;
  }

  body.adminlte-dashboard-shell [data-v2-recharge-nav]::before {
    width: var(--adminlte-sidebar-icon-size);
    height: var(--adminlte-sidebar-icon-size);
    font-size: 15px;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot,
  body.adminlte-dashboard-shell #v2DashboardRoot,
  body.adminlte-dashboard-shell #v2RechargeRoot,
  body.adminlte-dashboard-shell #v2NocWatchRoot,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot {
    padding: 10px;
  }

  body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-section .v2-recharge-toolbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-history-controls,
  body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-section-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: flex-start;
    width: 100%;
    gap: 7px;
  }

  body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-history-controls .v2-recharge-month-picker {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }

  body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-history-controls .v2-recharge-month-picker select {
    width: 100%;
    min-height: 44px;
  }

  body.adminlte-dashboard-shell #v2RechargeRoot .v2-recharge-history-controls .v2-recharge-loaded-status {
    flex: 1 1 auto;
    min-width: max-content;
  }

  body.adminlte-dashboard-shell #v2RechargeRoot #v2RechargeRefresh,
  body.adminlte-dashboard-shell #v2RechargeRoot .v2-copy-button {
    flex: 0 1 auto;
    min-height: 44px;
    padding: 9px 11px !important;
    font-size: var(--adminlte-font-control) !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot #v2ConnectionsKpis,
  body.adminlte-dashboard-shell #v2ConnectionsRoot #v2RsaMatrixCards,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-action-grid,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-action-grid,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px;
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid > * {
    grid-column: auto !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-card,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-metric-card,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-card,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-metric-card,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-card,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-metric-card,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-deferred-zone {
    min-width: 0;
    min-height: 74px;
    padding: 7px 8px !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-card-label,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-card-label,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-card-label {
    font-size: 11px !important;
    line-height: 1.2;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-card-value,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-card-value,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-card-value {
    font-size: clamp(18px, 5.2vw, 23px) !important;
    line-height: 1.05;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-card-foot,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-muted,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-active-filters,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-copy-status,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-card-foot,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-muted,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-active-filters,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-copy-status,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-status,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-focus-status,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-card-foot,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-muted,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-count,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-page-status,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-kv,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-message {
    font-size: 12px !important;
    line-height: 1.3;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-section-title,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-section-title,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-section-title {
    font-size: 18px !important;
    line-height: 1.18;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-ops-filter-grid,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-table-controls,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-table-pager,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-ops-filter-grid,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-filter-grid,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-table-controls,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-table-pager,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-toolbar,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-controls,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-pager {
    gap: 8px;
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-ops-filter-grid select,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-ops-filter-grid input,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-table-search,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-map-reset,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-copy-button,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-clear-search,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-table-pager button,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-ops-filter-grid select,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-ops-filter-grid input,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-filter-grid select,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-filter-grid input,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-table-search,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-reset,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-copy-button,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-clear-search,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-table-pager button,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-default-button,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-toolbar input,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-toolbar select,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-search,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-copy-button,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-clear-search,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-pager button,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-action-buttons button,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-new-key button,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-table select {
    min-height: 42px;
    font-size: 13px !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-connections-table-panel,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-rsa-matrix-wrap,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table-wrap,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table-wrap {
    max-width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-bts-map-placeholder {
    max-width: 100%;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px;
    overflow: hidden;
  }

  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-bts-map-placeholder > *,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-map-summary,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-mini-table-panel,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-focus-panel {
    min-width: 0;
    max-width: 100%;
  }

  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-map-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-mini-table-panel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-map-frame,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-leaflet-map {
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: clamp(380px, 58dvh, 440px);
    max-height: 480px;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-connections-table-panel .v2-table {
    display: table !important;
    width: max-content !important;
    min-width: 760px !important;
    table-layout: auto !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-connections-table-panel .v2-table thead {
    position: static !important;
    display: table-header-group !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-connections-table-panel .v2-table tbody {
    display: table-row-group !important;
    width: auto !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-connections-table-panel .v2-table tr {
    display: table-row !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-connections-table-panel .v2-table tr[hidden] {
    display: none !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-connections-table-panel .v2-table th,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-connections-table-panel .v2-table td {
    display: table-cell !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-rsa-matrix-table td.v2-rsa-mobile-daily {
    display: none !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-rsa-matrix-table td.v2-rsa-day-cell,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-rsa-matrix-table td.v2-rsa-matrix-context-empty {
    display: table-cell !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-rsa-matrix-wrap .v2-table {
    width: max-content !important;
    min-width: 1100px !important;
    table-layout: auto !important;
  }

  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table {
    width: max-content !important;
    min-width: 980px !important;
    table-layout: auto !important;
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table {
    display: table !important;
    width: max-content !important;
    min-width: 760px !important;
    table-layout: auto !important;
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-access-table {
    min-width: 1080px !important;
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table thead {
    position: static !important;
    display: table-header-group !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table tbody {
    display: table-row-group !important;
    width: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table tr {
    display: table-row !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table tr[hidden] {
    display: none !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-table th,
  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-table td,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-table th,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-table td,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table th,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table td {
    padding: 7px 9px !important;
    font-size: 12px !important;
    line-height: 1.25;
    overflow-wrap: normal !important;
    word-break: normal !important;
    white-space: nowrap !important;
  }

  body.adminlte-dashboard-shell #v2ConnectionsRoot .v2-table td::before {
    display: none !important;
  }

  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-noc-table-panel .v2-table td::before {
    display: none !important;
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table td {
    display: table-cell !important;
  }

  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-table td::before {
    display: none !important;
  }
}

body.adminlte-dashboard-shell #v2SidebarBrandTitle {
  font-size: var(--adminlte-font-sidebar-brand) !important;
  line-height: var(--adminlte-line-tight);
}

body.adminlte-dashboard-shell .v2-sidebar-user strong {
  font-size: var(--adminlte-font-sidebar-nav) !important;
  line-height: 1.25;
}

body.adminlte-dashboard-shell .v2-sidebar-brand span,
body.adminlte-dashboard-shell .v2-sidebar-user span,
body.adminlte-dashboard-shell .v2-sidebar-status em,
body.adminlte-dashboard-shell .v2-diagnostics-console summary em,
body.adminlte-dashboard-shell .v2-diagnostics-muted,
body.adminlte-dashboard-shell .v2-diagnostics-entry,
body.adminlte-dashboard-shell .v2-diagnostics-entry small {
  font-size: var(--adminlte-font-sidebar-meta) !important;
  line-height: var(--adminlte-line-body);
}

body.adminlte-dashboard-shell .v2-sidebar-status strong,
body.adminlte-dashboard-shell .v2-diagnostic-row span,
body.adminlte-dashboard-shell label span,
body.adminlte-dashboard-shell .v2-period-control span,
body.adminlte-dashboard-shell .v2-admin-access-toolbar span {
  font-size: var(--adminlte-font-kpi-label) !important;
  line-height: 1.2;
}

body.adminlte-dashboard-shell .v2-sidebar-nav button,
body.adminlte-dashboard-shell .v2-sidebar-footer button {
  font-size: var(--adminlte-font-sidebar-nav) !important;
  line-height: 1.2;
}

body.adminlte-dashboard-shell .v2-main-content::before,
body.adminlte-dashboard-shell .v2-mobile-bar > div strong {
  font-size: var(--adminlte-font-app-title) !important;
  line-height: 1.2;
}

body.adminlte-dashboard-shell .v2-mobile-bar > div span {
  font-size: var(--adminlte-font-page-subtitle) !important;
  line-height: 1.2;
}

body.adminlte-dashboard-shell .v2-card-label,
body.adminlte-dashboard-shell .v2-action-card span {
  font-size: var(--adminlte-font-kpi-label) !important;
  line-height: 1.2;
}

body.adminlte-dashboard-shell .v2-card-value,
body.adminlte-dashboard-shell .v2-action-card strong {
  font-size: var(--adminlte-font-kpi-value) !important;
  line-height: 1.05;
}

body.adminlte-dashboard-shell .v2-card-foot,
body.adminlte-dashboard-shell .v2-action-card small {
  font-size: var(--adminlte-font-kpi-foot) !important;
  line-height: 1.3;
}

body.adminlte-dashboard-shell .v2-section-title {
  font-size: var(--adminlte-font-section-title) !important;
  line-height: var(--adminlte-line-tight);
}

body.adminlte-dashboard-shell .v2-muted,
body.adminlte-dashboard-shell .v2-active-filters,
body.adminlte-dashboard-shell .v2-admin-kv,
body.adminlte-dashboard-shell .v2-admin-access-message,
body.adminlte-dashboard-shell .v2-noc-focus-panel p,
body.adminlte-dashboard-shell .v2-noc-focus-list li,
body.adminlte-dashboard-shell .v2-recharge-chart-card > .v2-muted,
body.adminlte-dashboard-shell .v2-recharge-section .v2-muted {
  font-size: var(--adminlte-font-body) !important;
  line-height: var(--adminlte-line-body);
}

body.adminlte-dashboard-shell .v2-recharge-footnote,
body.adminlte-dashboard-shell .v2-page-status,
body.adminlte-dashboard-shell .v2-table-count,
body.adminlte-dashboard-shell .v2-copy-status,
body.adminlte-dashboard-shell .v2-map-status,
body.adminlte-dashboard-shell .v2-map-focus-status,
body.adminlte-dashboard-shell .v2-map-legend,
body.adminlte-dashboard-shell .v2-admin-details summary,
body.adminlte-dashboard-shell .v2-diagnostic-row strong,
body.adminlte-dashboard-shell .v2-diagnostic-row em,
body.adminlte-dashboard-shell .v2-admin-new-key p {
  font-size: var(--adminlte-font-caption) !important;
  line-height: var(--adminlte-line-body);
}

body.adminlte-dashboard-shell input,
body.adminlte-dashboard-shell select,
body.adminlte-dashboard-shell button,
body.adminlte-dashboard-shell .v2-table-search,
body.adminlte-dashboard-shell .v2-copy-button,
body.adminlte-dashboard-shell .v2-clear-search,
body.adminlte-dashboard-shell .v2-table-pager button,
body.adminlte-dashboard-shell .v2-map-default-button,
body.adminlte-dashboard-shell .v2-map-reset {
  font-family: var(--adminlte-font-family);
  font-size: var(--adminlte-font-control) !important;
  line-height: 1.2;
}

body.adminlte-dashboard-shell .v2-table th,
body.adminlte-dashboard-shell .v2-mini-table th {
  font-size: var(--adminlte-font-table-head) !important;
  line-height: var(--adminlte-line-table);
}

body.adminlte-dashboard-shell .v2-table td,
body.adminlte-dashboard-shell .v2-mini-table td {
  font-size: var(--adminlte-font-table-body) !important;
  line-height: var(--adminlte-line-table);
}

body.adminlte-dashboard-shell .v2-admin-details pre {
  font-size: var(--adminlte-font-caption) !important;
  line-height: 1.35;
}

body.adminlte-dashboard-shell .leaflet-popup-content,
body.adminlte-dashboard-shell .v2-map-popup {
  font-size: var(--adminlte-font-supporting) !important;
  line-height: 1.25;
}

body.adminlte-dashboard-shell .v2-map-popup-row span {
  font-size: var(--adminlte-font-caption) !important;
}

body.adminlte-dashboard-shell .v2-map-popup-row strong {
  font-size: var(--adminlte-font-body) !important;
  line-height: 1.22;
}

@media (max-width: 640px) {
  body.adminlte-dashboard-shell .leaflet-popup-content {
    max-width: calc(100vw - 52px) !important;
  }

  body.adminlte-dashboard-shell .v2-map-popup {
    width: min(220px, calc(100vw - 56px));
    max-width: min(220px, calc(100vw - 56px));
    font-size: 11px !important;
    line-height: 1.18;
  }

  body.adminlte-dashboard-shell .v2-map-popup-row span {
    font-size: 9px !important;
  }

  body.adminlte-dashboard-shell .v2-map-popup-row strong {
    font-size: 11px !important;
    line-height: 1.18;
  }
}

@media (max-width: 900px) {
  body.adminlte-dashboard-shell {
    --adminlte-font-app-title: 23px;
    --adminlte-font-page-subtitle: 16px;
    --adminlte-font-sidebar-brand: 14px;
    --adminlte-font-sidebar-meta: 10px;
    --adminlte-font-sidebar-nav: 12px;
    --adminlte-font-section-title: 18px;
    --adminlte-font-body: 13px;
    --adminlte-font-supporting: 12px;
    --adminlte-font-kpi-label: 11px;
    --adminlte-font-kpi-value: clamp(18px, 5.2vw, 23px);
    --adminlte-font-kpi-foot: 12px;
    --adminlte-font-control: 14px;
    --adminlte-font-table-head: 11px;
    --adminlte-font-table-body: 12px;
    --adminlte-font-caption: 11px;
  }

  body.adminlte-dashboard-shell .v2-mobile-bar > div strong {
    line-height: 1.08;
  }

  body.adminlte-dashboard-shell .v2-mobile-bar > div span {
    line-height: 1.15;
  }

  body.adminlte-dashboard-shell .v2-sidebar-brand span,
  body.adminlte-dashboard-shell .v2-sidebar-user span,
  body.adminlte-dashboard-shell .v2-sidebar-status em,
  body.adminlte-dashboard-shell .v2-diagnostics-console summary em,
  body.adminlte-dashboard-shell .v2-diagnostics-muted,
  body.adminlte-dashboard-shell .v2-diagnostics-entry,
  body.adminlte-dashboard-shell .v2-diagnostics-entry small {
    line-height: 1.2;
  }

  body.adminlte-dashboard-shell .v2-card-foot,
  body.adminlte-dashboard-shell .v2-action-card small {
    line-height: 1.25;
  }
}

@media (max-width: 339px) {
  body.adminlte-dashboard-shell #v2DashboardRoot .v2-dashboard-kpi-grid,
  body.adminlte-dashboard-shell #v2ConnectionsRoot #v2ConnectionsKpis,
  body.adminlte-dashboard-shell #v2ConnectionsRoot #v2RsaMatrixCards,
  body.adminlte-dashboard-shell #v2NocWatchRoot .v2-action-grid,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-action-grid,
  body.adminlte-dashboard-shell #v2AdminConsoleRoot .v2-admin-status-grid {
    grid-template-columns: 1fr !important;
  }
}
