@font-face {
  font-family: zyxel-nebula;
  font-display: swap;
  font-style: normal;
  font-weight: 100 300;
  src: url("../assets/fonts/GalanoGrotesque-Regular-webfont.woff2")
    format("woff2");
}

@font-face {
  font-family: zyxel-nebula;
  font-display: swap;
  font-style: normal;
  font-weight: 400 600;
  src: url("../assets/fonts/GalanoGrotesque-Medium-webfont.woff2")
    format("woff2");
}

@font-face {
  font-family: zyxel-nebula;
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
  src: url("../assets/fonts/GalanoGrotesque-SemiBold-webfont.woff2")
    format("woff2");
}

:root {
  color-scheme: light;
  --green: #19a500;
  --green-dark: #148700;
  --green-soft: #eef7e7;
  --bg: #f3f5f1;
  --surface: #ffffff;
  --surface-soft: #fafcf8;
  --border: #dfe3dc;
  --border-strong: #cbd2c8;
  --text: #555555;
  --text-muted: #888888;
  --text-soft: #666666;
  --header: #626762;
  --blue: #3f6f91;
  --amber: #8a6818;
  font-family: zyxel-nebula, Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text-soft);
  font-size: 13px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.case-launcher {
  min-height: 100vh;
  background: #f3f5f1;
  color: #4d4d4d;
  padding: 48px clamp(24px, 5vw, 72px);
}

.case-launcher-hero {
  display: flex;
  max-width: 1180px;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto 26px;
}

.case-launcher-eyebrow {
  display: block;
  color: #3c9f00;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.case-launcher h1 {
  margin: 0;
  color: #333333;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.15;
}

.case-launcher p {
  max-width: 560px;
  margin: 10px 0 0;
  color: #666666;
  font-size: 15px;
  line-height: 22px;
}

.case-project-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 14px;
  margin: 0 auto 18px;
}

.case-project-card {
  display: flex;
  min-height: 176px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #ffffff;
  color: #4d4d4d;
  padding: 18px;
  text-align: left;
  transition:
    border-color 120ms ease,
    box-shadow 120ms ease,
    transform 120ms ease;
}

.case-project-card:hover,
.case-project-card.is-active {
  border-color: #3c9f00;
  box-shadow: 0 10px 24px rgba(45, 65, 38, 0.12);
}

.case-project-card.is-active {
  transform: translateY(-1px);
}

.case-project-letter {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #3c9f00;
  border-radius: 4px;
  color: #3c9f00;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.case-project-card.is-active .case-project-letter {
  background: #3c9f00;
  color: #ffffff;
}

.case-project-title {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.case-project-description {
  margin-top: 8px;
  color: #777777;
  font-size: 13px;
  line-height: 18px;
}

.case-subcase-panel {
  max-width: 1180px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #ffffff;
  margin: 0 auto;
  padding: 18px;
}

.case-subcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 14px;
}

.case-subcase-kicker {
  display: block;
  color: #777777;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 3px;
}

.case-subcase-header h2 {
  margin: 0;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.case-subcase-count {
  flex: 0 0 auto;
  color: #666666;
  font-size: 13px;
}

.case-subcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 10px;
  padding-top: 14px;
}

.case-subcase-card {
  display: grid;
  min-height: 86px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: center;
  gap: 6px 12px;
  border: 1px solid #dedede;
  border-radius: 3px;
  background: #fcfcfc;
  color: #4d4d4d;
  padding: 13px 14px;
  text-align: left;
}

.case-subcase-card:hover {
  border-color: #3c9f00;
  background: #f9fff5;
}

.case-subcase-id {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}

.case-subcase-description {
  align-self: start;
  color: #666666;
  font-size: 13px;
  line-height: 18px;
}

.case-subcase-card .lucide {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #3c9f00;
}

.app-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-width: 980px;
  overflow: hidden;
  background: var(--bg);
}

.body-shell {
  position: relative;
  display: flex;
  min-height: 0;
  flex: 1;
  overflow: hidden;
}

.sidebar {
  position: relative;
  display: flex;
  width: 255px;
  flex: 0 0 255px;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: #fbfcf8;
}

.is-sidebar-collapsing .sidebar {
  animation: sidebar-collapse 260ms ease-in-out both;
}

.is-sidebar-expanding .sidebar {
  animation: sidebar-expand 260ms ease-in-out both;
}

@keyframes sidebar-collapse {
  from {
    width: 255px;
    flex-basis: 255px;
  }

  to {
    width: 56px;
    flex-basis: 56px;
  }
}

@keyframes sidebar-expand {
  from {
    width: 56px;
    flex-basis: 56px;
  }

  to {
    width: 255px;
    flex-basis: 255px;
  }
}

.topbar-brand {
  position: relative;
  z-index: 1;
  display: flex;
  width: 228.5px;
  flex: 0 0 228.5px;
  height: 72px;
  align-items: center;
  gap: 0;
  background: transparent;
  padding: 0;
}

.menu-icon {
  position: relative;
  display: grid;
  width: 56px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #333333;
  padding: 0;
}

.menu-icon:hover,
.menu-icon:focus-visible {
  background: #e9f5e4;
}

.menu-icon:hover::after,
.menu-icon:focus-visible::after {
  position: absolute;
  left: 50%;
  top: 38px;
  z-index: 70;
  width: max-content;
  border-radius: 2px;
  background: rgba(70, 70, 70, 0.94);
  color: #ffffff;
  content: attr(title);
  font-size: 11px;
  line-height: 1;
  padding: 5px 7px;
  pointer-events: none;
  transform: translateX(-50%);
}

.ncc-hamburgur-icon {
  display: block;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.menu-icon .lucide,
.sidebar .lucide {
  stroke-width: 1.55;
}

.nebula-brand-logo {
  display: block;
  width: 160px;
  height: 44px;
  margin-left: -2px;
  object-fit: contain;
  object-position: center center;
}

.sidebar-scroll {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow: auto;
  padding: 0 6px;
  scrollbar-width: thin;
}

.sidebar-section {
  border-top: 1px solid #d8ded4;
  margin: 0;
  padding: 12px 0 16px;
}

.sidebar-section-utility {
  border-top: 0;
  padding: 9px 0 9px;
}

.sidebar-heading {
  margin-bottom: 8px;
  padding: 0 10px;
  color: #8f988c;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.sidebar-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
  min-height: 32px;
  height: 32px;
  margin-bottom: 4px;
  border: 0;
  border-left: 4px solid transparent;
  background: transparent;
  color: #5f625f;
  padding: 0 10px 0 6px;
  text-align: left;
  transition:
    background 120ms ease,
    color 120ms ease;
}

.sidebar-item:hover {
  background: rgba(238, 245, 232, 0.72);
}

.sidebar-item.is-demo-locked,
.sidebar-item.is-demo-locked:disabled {
  pointer-events: none;
  cursor: default;
  opacity: 1;
}

.sidebar-item.is-demo-locked:hover {
  background: transparent;
}

.sidebar-item.is-active {
  border-left-color: var(--green);
  background: transparent;
  color: #087414;
  font-weight: 600;
}

.sidebar-item.is-permission-blocked {
  color: #a3aaa0;
  cursor: not-allowed;
}

.sidebar-item.is-permission-blocked:hover {
  background: transparent;
  color: #8f978d;
}

.sidebar-item.is-permission-blocked .sidebar-icon,
.sidebar-item.is-permission-blocked .sidebar-label {
  opacity: 0.72;
}

.sidebar-icon {
  position: relative;
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: currentColor;
}

.nebula-menu-icon {
  display: block;
  width: 24px;
  height: 24px;
  overflow: visible;
  color: currentColor;
  fill: currentColor;
}

.is-sidebar-collapsed .topbar-brand {
  width: 228.5px;
  flex-basis: 228.5px;
  gap: 0;
  padding-left: 0;
}

.is-sidebar-collapsed .nebula-brand-logo {
  width: 160px;
  height: 44px;
}

.is-sidebar-collapsed .sidebar {
  width: 56px;
  flex-basis: 56px;
}

.is-sidebar-collapsed .sidebar-scroll {
  padding: 0;
  overflow-x: hidden;
}

.is-sidebar-collapsed .sidebar-section {
  width: 56px;
  padding: 12px 0 16px;
}

.is-sidebar-collapsed .sidebar-section-utility {
  width: 56px;
  padding: 9px 0 14px;
}

.is-sidebar-collapsed .sidebar-heading {
  display: block;
  visibility: hidden;
  height: 13px;
  margin-bottom: 8px;
  padding: 0;
}

.is-sidebar-collapsed .sidebar-section-utility .sidebar-heading {
  display: none;
}

.is-sidebar-collapsed .sidebar-label {
  display: none;
}

.is-sidebar-collapsed .sidebar-item {
  position: relative;
  width: 56px;
  min-width: 56px;
  max-width: 56px;
  justify-content: center;
  gap: 0;
  height: 36px;
  margin-bottom: 2px;
  border-left: 0;
  padding: 0;
}

.is-sidebar-collapsed .sidebar-item.is-active::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
  content: "";
}

.is-sidebar-collapsed .sidebar-icon {
  width: 56px;
  flex-basis: 56px;
}

.is-sidebar-collapsed .msp-submenu,
.is-sidebar-collapsed .device-submenu,
.is-sidebar-collapsed .monitor-submenu,
.is-sidebar-collapsed .configure-submenu {
  left: 56px;
}

.sidebar-accent {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 8px;
  height: 8px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: #49b9e8;
  box-shadow: 0 0 0 1px rgba(73, 185, 232, 0.25);
}

.msp-submenu {
  position: absolute;
  left: 255px;
  top: 0;
  bottom: 0;
  z-index: 20;
  width: 288px;
  overflow: auto;
  background: rgba(224, 242, 204, 0.95);
  color: #3e453d;
  padding: 0;
  backdrop-filter: blur(1px);
}

.msp-submenu-path {
  display: none;
}

.msp-submenu-title {
  height: 48px;
  color: rgba(0, 0, 0, 0.87);
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  padding: 32px 16px 16px;
}

.msp-submenu-list {
  display: grid;
  gap: 0;
  margin-top: 0;
  padding-left: 0;
}

.msp-submenu-item {
  display: flex;
  width: 100%;
  min-height: 30px;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #3f4a3e;
  font-size: 13px;
  line-height: 13px;
  padding: 0 36px;
  text-align: left;
  white-space: nowrap;
}

.msp-submenu-item > span:first-child {
  white-space: nowrap;
}

.msp-submenu .msp-submenu-item {
  line-height: 13px;
}

.msp-submenu-item:hover {
  color: #106a18;
}

.msp-submenu-item.is-active {
  color: #096814;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.msp-badge {
  display: inline-flex;
  flex: 0 0 auto;
  height: 18px;
  align-items: center;
  border-radius: 4px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  padding: 0 5px;
}

.msp-badge-preview {
  background: #57b900;
}

.msp-badge-new {
  background: #ff7a00;
}

.device-submenu {
  position: absolute;
  left: 255px;
  top: 0;
  bottom: 0;
  z-index: 20;
  width: 288px;
  overflow: auto;
  background: rgba(224, 242, 204, 0.95);
  color: #3e453d;
  padding: 0;
  backdrop-filter: blur(1px);
  box-shadow: 6px 0 16px rgba(40, 50, 35, 0.13);
}

.device-submenu.is-opening {
  animation: flyout-slide-in 260ms ease-out both;
}

.device-submenu.is-closing {
  animation: flyout-slide-out 260ms ease-in both;
  pointer-events: none;
}

.device-submenu-path {
  display: none;
}

.device-submenu-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 48px;
  color: rgba(0, 0, 0, 0.87);
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  padding: 24px 36px 0 16px;
}

.device-submenu-add-button {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #64be00;
  cursor: pointer;
  padding: 0;
}

.device-submenu-add-button img {
  display: block;
  width: 24px;
  height: 24px;
}

.device-submenu-add-button::after {
  position: absolute;
  top: 32px;
  left: 50%;
  z-index: 2;
  min-width: 96px;
  transform: translateX(-50%);
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  color: #333333;
  content: attr(aria-label);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  opacity: 0;
  padding: 8px 10px;
  pointer-events: none;
  text-align: center;
  transition: opacity 120ms ease;
  white-space: nowrap;
}

.device-submenu-add-button:hover::after,
.device-submenu-add-button:focus-visible::after {
  opacity: 1;
}

.device-submenu-list {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.device-submenu-item {
  display: flex;
  width: 100%;
  min-height: 30px;
  align-items: center;
  border: 0;
  background: transparent;
  color: #3f4a3e;
  font-size: 13px;
  line-height: 13px;
  padding: 0 36px;
  text-align: left;
  white-space: nowrap;
}

.device-submenu-item:hover {
  color: #106a18;
}

.device-submenu-item.is-active {
  border-radius: 4px;
  background: rgba(194, 232, 169, 0.72);
  color: #096814;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.device-submenu-item.is-disabled {
  color: #a3aaa0;
  cursor: not-allowed;
  text-decoration: none;
}

.device-submenu-item.is-disabled:hover {
  color: #a3aaa0;
}

.monitor-submenu,
.configure-submenu {
  position: absolute;
  left: 255px;
  top: 0;
  bottom: 0;
  z-index: 20;
  width: 288px;
  overflow: auto;
  background: rgba(224, 242, 204, 0.95);
  color: #3e453d;
  padding: 0;
  backdrop-filter: blur(1px);
  box-shadow: 6px 0 16px rgba(40, 50, 35, 0.13);
}

.monitor-submenu.is-opening,
.configure-submenu.is-opening {
  animation: flyout-slide-in 260ms ease-out both;
}

.monitor-submenu.is-closing,
.configure-submenu.is-closing {
  animation: flyout-slide-out 260ms ease-in both;
  pointer-events: none;
}

@keyframes flyout-slide-in {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flyout-slide-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-22px);
  }
}

.monitor-submenu-path,
.configure-submenu-path {
  display: none;
}

.monitor-submenu-title,
.configure-submenu-title {
  display: flex;
  height: 48px;
  align-items: center;
  color: rgba(0, 0, 0, 0.87);
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  padding: 0 16px;
  transform: translateY(4px);
}

.monitor-submenu-list,
.configure-submenu-list {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.monitor-submenu-group,
.monitor-submenu-item,
.configure-submenu-group,
.configure-submenu-item {
  display: flex;
  width: 100%;
  min-height: 30px;
  align-items: center;
  border: 0;
  background: transparent;
  color: #3f4a3e;
  font-size: 13px;
  line-height: 13px;
  padding: 0 16px;
  text-align: left;
}

.monitor-submenu-group,
.configure-submenu-group {
  justify-content: space-between;
  font-weight: 500;
  padding: 0 36px;
}

.monitor-submenu-group .lucide,
.configure-submenu-group .lucide {
  stroke-width: 2;
}

.monitor-submenu-item,
.configure-submenu-item {
  justify-content: flex-start;
  gap: 7px;
}

.monitor-submenu-item {
  padding: 0 36px;
}

.configure-submenu-item {
  padding: 0 36px;
}

.configure-submenu-group,
.configure-submenu-item {
  min-height: 30px;
  font-size: 13px;
  line-height: 13px;
}

.monitor-submenu-item.is-child {
  padding-left: 60px;
}

.configure-submenu-item.is-child {
  padding-left: 60px;
}

.monitor-submenu-item:hover,
.monitor-submenu-group:hover,
.configure-submenu-item:hover,
.configure-submenu-group:hover {
  color: #096814;
}

.monitor-submenu-item.is-active,
.configure-submenu-item.is-active {
  border-radius: 4px;
  background: rgba(194, 232, 169, 0.72);
  color: #096814;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.configure-submenu-item.is-disabled {
  color: #a3aaa0;
  cursor: not-allowed;
  text-decoration: none;
}

.configure-submenu-item.is-disabled:hover {
  color: #a3aaa0;
}

.monitor-premium-icon {
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-left: -25px;
  place-items: center;
}

.monitor-premium-diamond {
  display: block;
}

.content-shell {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
}

.org-pack-banner-slot {
  max-height: 0;
  flex: 0 0 auto;
  overflow: hidden;
  background: #636363;
  transition: max-height 260ms ease-out;
}

.app-shell.is-my-place-banner-visible .org-pack-banner-slot {
  max-height: 36px;
}

.org-pack-banner {
  display: flex;
  min-height: 32px;
  align-items: center;
  background: #ffe999;
  color: #111111;
  font-size: 13px;
  font-weight: 300;
  line-height: 13px;
  padding: 2px 8px;
  opacity: 0;
  transform: translateY(-100%);
}

.app-shell.is-my-place-banner-visible .org-pack-banner {
  opacity: 1;
  transform: translateY(0);
  animation: org-pack-banner-slide-down 260ms ease-out both;
}

@keyframes org-pack-banner-slide-down {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.org-pack-banner-content {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.org-pack-banner-content a {
  color: #00b3ff;
  margin: 0 4px;
  text-decoration: underline;
}

.org-pack-banner-close {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #111111;
  padding: 0;
}

.org-pack-banner-close .lucide {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.topbar {
  display: flex;
  width: 100%;
  height: 72px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--border);
  background: #fcfcfc;
  padding: 0 18px 0 0;
}

.topbar-context {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
  min-width: 0;
  margin-left: 0;
  color: #4d4d4d;
}

.topbar-field {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.topbar-label {
  color: #4d4d4d;
  font-weight: 700;
  white-space: nowrap;
}

.select-like {
  display: flex;
  width: 250px;
  flex: 0 0 250px;
  height: 30px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #ffffff;
  color: #4d4d4d;
  padding: 0 8px;
}

/* Match the NCC organization selector field while leaving the Site selector unchanged. */
.topbar-org-field .select-like {
  width: 214px;
  flex-basis: 214px;
  height: 32px;
  border: 1px solid #dedede;
  border-radius: 3px;
  background: #ffffff;
  padding: 0 9px;
}

.ncc-select-arrow {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #555555;
  fill: currentColor;
}

.topbar-org-field .ncc-select-arrow {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
  margin-left: 8px;
}

.select-like-site {
  width: 192px;
  flex-basis: 192px;
}

.select-placeholder {
  overflow: hidden;
  color: #b3b3b3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-value {
  overflow: hidden;
  color: #4d4d4d;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.org-select-current {
  display: inline-flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  text-align: left;
}

.org-select-current-label {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.organization-menu {
  position: absolute;
  left: 98px;
  top: calc(100% + 4px);
  z-index: 45;
  width: 287px;
  border: 0;
  border-radius: 0 0 4px 4px;
  background: #fcfcfc;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
  padding: 4px;
}

.organization-search {
  display: flex;
  height: 30px;
  align-items: center;
  gap: 4px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  background: #fcfcfc;
  color: #4d4d4d;
  padding: 0 4px;
}

.organization-search .ncc-topbar-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.organization-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font: inherit;
  font-size: 13px;
  font-weight: 100;
  outline: 0;
  padding: 0 4px;
}

.organization-option-list {
  max-height: 260px;
  overflow-y: auto;
  padding: 0;
  scrollbar-color: #858585 transparent;
  scrollbar-width: thin;
}

.organization-option-list::-webkit-scrollbar {
  width: 12px;
}

.organization-option-list::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 8px;
  background: #858585;
  background-clip: padding-box;
}

.organization-option {
  display: flex;
  width: 100%;
  min-height: 32px;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 32px;
  padding: 0 16px 0 8px;
  text-align: left;
}

.organization-option:hover,
.organization-option.is-selected {
  background: #f3f3f3;
  color: #4d4d4d;
}

.organization-option.is-org {
  padding-left: 8px;
}

.organization-option.is-row-marker {
  position: relative;
}

.organization-option.is-msp {
  border-bottom: 1px solid #eeeeee;
  font-weight: 600;
  margin-bottom: 2px;
}

.organization-option-label {
  min-width: 0;
}

/* Option 5 reserves the far-right edge for the PAYG text label. */
.organization-option.is-name-payg-label .organization-option-label {
  flex: 1 1 auto;
}

.organization-badge-strip {
  display: inline-flex;
  width: 82px;
  min-width: 82px;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.organization-badge-strip.is-current {
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
}

.organization-badge-strip.is-package-chip {
  width: 156px;
  min-width: 156px;
}

.organization-badge-strip.is-name-payg-label {
  width: 48px;
  min-width: 48px;
  justify-content: flex-start;
}

.organization-badge-strip.is-row-marker {
  display: grid;
  width: 48px;
  min-width: 48px;
  grid-template-columns: 48px;
  align-items: center;
  justify-content: start;
}

.organization-badge-strip.is-composite {
  width: 82px;
  min-width: 82px;
}

.organization-badge-strip.is-org-type-only {
  width: 46px;
  min-width: 46px;
}

.organization-badge-strip.is-right-edge-marker {
  width: 48px;
  min-width: 48px;
  justify-content: flex-start;
}

.organization-badge-strip.is-name-adjacent-marker {
  width: 48px;
  min-width: 48px;
  justify-content: flex-start;
}

/* The selector in the top bar needs no alignment column. */
.organization-badge-strip.is-current {
  width: auto;
  min-width: 0;
  justify-content: flex-start;
}

.organization-pro-slot {
  display: inline-flex;
  width: 33px;
  height: 16px;
  flex: 0 0 33px;
  align-items: center;
  justify-content: center;
}

.organization-pro-tag {
  color: #64be00;
}

.organization-tier-tag {
  display: inline-flex;
  min-width: 33px;
  height: 16px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 3px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 14px;
  padding: 0 4px;
}

.organization-pro-tag::before {
  content: none;
}

.organization-tier-tag.is-pro {
  color: #64be00;
}

.organization-tier-tag.is-plus {
  color: #64be00;
}

.organization-tier-tag.is-base {
  color: #6b7280;
}

.organization-payg-slot {
  display: inline-flex;
  width: 44px;
  height: 16px;
  flex: 0 0 44px;
  align-items: center;
}

.organization-payg-icon {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 16px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: flex-end;
  border: 1px solid #6b42ff;
  border-radius: 8px;
  background: linear-gradient(135deg, #6b42ff 0%, #00a8ff 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 14px;
  padding: 0 5px 0 13px;
}

.organization-payg-icon::before {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.organization-payg-icon::after {
  content: "PAYG";
}

.organization-payg-icon.is-current {
  width: 40px;
  flex-basis: 40px;
  transform: translateY(0);
}

.organization-package-slot,
.organization-tier-slot,
.organization-composite-slot {
  display: inline-flex;
  height: 16px;
  align-items: center;
}

.organization-badge-strip.is-row-marker .organization-tier-slot,
.organization-badge-strip.is-right-edge-marker .organization-tier-slot,
.organization-badge-strip.is-name-adjacent-marker .organization-tier-slot,
.organization-badge-strip.is-name-payg-label .organization-tier-slot {
  width: 48px;
  flex: 0 0 48px;
  justify-content: flex-start;
}

.organization-package-chip {
  display: inline-flex;
  height: 18px;
  max-width: 130px;
  align-items: center;
  border: 1px solid #c7d2fe;
  border-radius: 9px;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  padding: 0 8px;
  white-space: nowrap;
}

.organization-payg-marker {
  display: inline-block;
  width: 5px;
  height: 22px;
  flex: 0 0 5px;
  border-radius: 3px;
  background: transparent;
}

.organization-payg-marker.is-visible {
  background: linear-gradient(180deg, #6b42ff 0%, #00a8ff 100%);
}

.organization-option.is-row-marker .organization-payg-marker.is-row-edge {
  position: absolute;
  top: 5px;
  right: 0;
}

.organization-right-edge-marker {
  display: inline-flex;
  width: 44px;
  height: 18px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-left: auto;
  border-radius: 3px;
  color: transparent;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
}

.organization-right-edge-marker.is-visible {
  border: 1px solid #8ebcff;
  background: #edf6ff;
  color: #008ee6;
}

.organization-name-adjacent-marker {
  display: inline-block;
  width: 5px;
  height: 22px;
  flex: 0 0 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, #6b42ff 0%, #00a8ff 100%);
}

.organization-name-payg-label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: #008ee6;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
}

.organization-payg-warning {
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.organization-option-payg-warning {
  display: inline-flex;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  align-items: center;
  margin-left: auto;
}

/* In option 6, keep the Heritage warning and PAYG tag as one right-aligned group. */
.organization-option-payg-warning + .organization-right-edge-marker {
  margin-left: 3px;
}

.organization-option .organization-right-edge-marker {
  margin-right: 0;
}

.organization-composite-tag {
  display: inline-flex;
  height: 18px;
  align-items: center;
  border: 1px solid #6b42ff;
  border-radius: 9px;
  background: #ffffff;
  color: #6b42ff;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  padding: 0 8px;
  white-space: nowrap;
}

.organization-composite-tag.is-base {
  border-color: #6b7280;
  color: #6b7280;
}

.organization-option-empty {
  color: #8a8a8a;
  font-size: 13px;
  line-height: 32px;
  padding: 0 8px;
}

.context-separator {
  display: inline-grid;
  width: 18px;
  height: 30px;
  place-items: center;
  color: #4d4d4d;
}

.topbar-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: #4d4d4d;
}

.topbar-icon-button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.topbar-icon-button:hover {
  background: #f2f2f2;
}

.ncc-topbar-icon {
  display: block;
  color: #4d4d4d;
  fill: currentColor;
}

.topbar-icon-button.is-outlined {
  border-color: #4d4d4d;
}

.user-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #565656;
  color: #ffffff;
  font-weight: 700;
}

.main {
  flex: 1;
  overflow: auto;
  background: #fbfdf9;
  padding: 12px 10px;
}

.app-shell.is-ncc-reference-page .topbar,
.app-shell.is-site-settings-reference .topbar {
  height: 90px;
  flex-basis: 90px;
}

.app-shell.is-ncc-reference-page .main,
.app-shell.is-site-settings-reference .main {
  padding-top: 0;
}

.msp-portal-page {
  min-width: 1120px;
  color: #4d4d4d;
}

.msp-portal-breadcrumbs {
  display: block;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  color: #3c9f00;
  font-family: zyxel-nebula, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
}

.msp-portal-breadcrumbs li {
  display: inline;
  color: #3c9f00;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0;
  padding: 0;
}

.msp-portal-breadcrumbs li:not(:last-child)::after {
  color: #3c9f00;
  content: ">";
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0 3px;
}

.msp-portal-breadcrumbs a {
  color: #00b2ff;
  margin: 0 4px;
  text-decoration: underline;
}

.msp-portal-title {
  margin: 0 0 10px;
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.msp-map-panel {
  position: relative;
  aspect-ratio: 1805 / 361;
  min-height: 220px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #dfe3dc;
  background:
    linear-gradient(120deg, rgba(115, 194, 222, 0.78) 0 32%, rgba(95, 188, 211, 0.88) 32% 63%, rgba(105, 197, 217, 0.86) 63% 100%),
    #7dcbdc;
}

.msp-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.msp-map-land {
  position: absolute;
  border: 1px solid rgba(62, 127, 91, 0.28);
  background:
    linear-gradient(135deg, rgba(176, 225, 177, 0.95), rgba(217, 239, 184, 0.9)),
    #cfe7b2;
  filter: saturate(0.9);
}

.mass-europe {
  left: -8%;
  top: -18%;
  width: 43%;
  height: 78%;
  border-radius: 34% 48% 42% 35%;
  transform: rotate(-12deg);
}

.mass-asia {
  left: 24%;
  top: -28%;
  width: 60%;
  height: 98%;
  border-radius: 36% 44% 35% 38%;
  transform: rotate(8deg);
}

.mass-island {
  right: 21%;
  top: 44%;
  width: 8%;
  height: 19%;
  border-radius: 52% 44% 51% 42%;
  transform: rotate(18deg);
}

.map-label {
  position: absolute;
  color: rgba(70, 90, 76, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.label-europe {
  left: 13%;
  top: 33%;
}

.label-asia {
  left: 49%;
  top: 30%;
}

.label-taiwan {
  right: 24%;
  top: 54%;
}

.label-rome {
  left: 26%;
  top: 45%;
}

.label-paris {
  left: 19%;
  top: 34%;
}

.msp-map-marker {
  position: absolute;
  display: grid;
  width: 29px;
  height: 36px;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: #ff344a;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
  transform: rotate(-45deg);
}

.msp-map-marker .lucide {
  transform: rotate(45deg);
  stroke-width: 1.7;
}

.marker-taipei {
  right: 27%;
  top: 47%;
}

.marker-rome {
  left: 28%;
  top: 39%;
}

.marker-paris {
  left: 20%;
  top: 29%;
}

.map-mode-switch {
  position: absolute;
  right: 12px;
  top: 10px;
  display: inline-flex;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.map-mode-switch button {
  height: 40px;
  border: 0;
  border-right: 1px solid #e7e7e7;
  background: #ffffff;
  color: #595959;
  font-size: 18px;
  padding: 0 17px;
}

.map-mode-switch button:last-child {
  border-right: 0;
}

.map-mode-switch button.is-active {
  color: #111111;
  font-weight: 700;
}

.map-control,
.map-zoom-controls {
  position: absolute;
  right: 13px;
  display: grid;
  place-items: center;
  border: 0;
  background: #ffffff;
  color: #5b5b5b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.map-control {
  width: 40px;
  height: 40px;
}

.fullscreen-control {
  top: 69px;
}

.camera-control {
  top: 141px;
  border-radius: 50%;
}

.map-zoom-controls {
  bottom: 25px;
  overflow: hidden;
}

.map-zoom-controls button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-bottom: 1px solid #e2e2e2;
  background: #ffffff;
  color: #5b5b5b;
}

.map-zoom-controls button:last-child {
  border-bottom: 0;
}

.map-footer {
  position: absolute;
  right: 6px;
  bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #222222;
  font-size: 10px;
}

.map-footer span {
  background: rgba(255, 255, 255, 0.78);
  padding: 1px 3px;
}

.scale-line {
  position: relative;
  min-width: 92px;
  text-align: center;
}

.scale-line::after {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 1px;
  height: 3px;
  border: solid #111111;
  border-width: 0 2px 2px;
  content: "";
}

.msp-org-section {
  margin-top: 0;
}

.msp-portal-tabs {
  display: flex;
  height: 32px;
  align-items: flex-end;
  gap: 0;
  border-bottom: 1px solid #d6d6d6;
}

.msp-portal-tabs button {
  min-width: 96px;
  height: 31px;
  border: 1px solid transparent;
  border-bottom: 0;
  background: #e9e9e9;
  color: #4d4d4d;
  font-size: 15px;
  padding: 0 17px 6px;
  text-align: center;
}

.msp-portal-tabs button.is-active {
  position: relative;
  z-index: 1;
  border-color: #d6d6d6;
  background: #fcfcfc;
  color: #4d4d4d;
  font-weight: 600;
  transform: translateY(1px);
}

.msp-org-table-card {
  border: 1px solid #d9d9d9;
  border-top: 0;
  background: #fcfcfc;
  padding: 16px 16px;
}

.msp-portal-toolbar {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.msp-portal-toolbar-left {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.msp-toolbar-button,
.msp-export-button {
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  padding: 0 11px;
  white-space: nowrap;
}

.msp-toolbar-button {
  border: 1px solid #e5e5e5;
  background: #f1f1f1;
  color: #d6d6d6;
}

.msp-export-button {
  border: 1px solid #229900;
  background: #269d00;
  color: #ffffff;
}

.msp-export-button:hover {
  background: #1f8d00;
}

.msp-portal-search {
  display: inline-flex;
  width: 229px;
  height: 30px;
  align-items: center;
  gap: 6px;
  border: 1px solid #d9d9d9;
  background: #ffffff;
  color: #b3b3b3;
  padding: 0 7px;
}

.msp-portal-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  outline: 0;
  padding: 0;
}

.msp-portal-search input::placeholder {
  color: #b3b3b3;
}

.msp-count-badge {
  display: inline-grid;
  width: 26px;
  height: 22px;
  place-items: center;
  border: 1px solid #8c8c8c;
  border-radius: 50%;
  background: #ffffff;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
}

.msp-count-label {
  color: #4d4d4d;
  white-space: nowrap;
}

.msp-table-wrap {
  overflow: auto;
  border: 1px solid #e4e4e4;
  border-top: 0;
}

.msp-org-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  color: #4d4d4d;
  font-size: 13px;
  table-layout: fixed;
}

.msp-org-table th {
  height: 28px;
  background: #666666;
  color: #ffffff;
  font-weight: 700;
  padding: 0 8px;
  text-align: left;
}

.msp-org-table td {
  height: 32px;
  overflow: hidden;
  padding: 0 8px;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.msp-org-table tbody tr:nth-child(even) {
  background: #eeeeee;
}

.msp-org-table tbody tr:hover {
  background: #fff6cc;
}

.msp-check-col {
  width: 36px;
  text-align: center;
}

.msp-menu-col {
  width: 30px;
  padding-right: 4px;
  text-align: right;
}

.msp-status-col {
  width: 78px;
}

.msp-org-table th:nth-child(2),
.msp-org-table td:nth-child(2) {
  width: 78px;
}

.msp-org-table th:nth-child(3),
.msp-org-table td:nth-child(3) {
  width: 228px;
}

.msp-org-table th:nth-child(4),
.msp-org-table td:nth-child(4) {
  width: 200px;
}

.msp-org-table th:nth-child(5),
.msp-org-table td:nth-child(5) {
  width: 70px;
}

.msp-org-table th:nth-child(6),
.msp-org-table td:nth-child(6) {
  width: 155px;
}

.msp-org-table th:nth-child(7),
.msp-org-table td:nth-child(7),
.msp-org-table th:nth-child(8),
.msp-org-table td:nth-child(8),
.msp-org-table th:nth-child(9),
.msp-org-table td:nth-child(9),
.msp-org-table th:nth-child(10),
.msp-org-table td:nth-child(10) {
  width: 62px;
}

.msp-org-table th:nth-child(11),
.msp-org-table td:nth-child(11) {
  width: 180px;
}

.msp-i-note-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 3px;
  vertical-align: -2px;
}

.table-column-picker {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #8d8d8d;
  padding: 0;
  vertical-align: middle;
}

.table-column-picker:hover {
  background: rgba(255, 255, 255, 0.16);
}

.table-column-picker-icon {
  display: block;
  width: 18px;
  height: 18px;
}

.device-online-cell {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.msp-status-dot,
.online-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.msp-status-dot,
.online-dot.good {
  background: #55b500;
}

.online-dot.offline {
  background: #f04455;
}

.msp-org-link {
  color: #00a8ff;
  text-decoration: underline;
}

.msp-portal-footer {
  display: grid;
  gap: 4px;
  margin-top: 48px;
  color: #666666;
  font-size: 13px;
  text-align: center;
}

.msp-portal-footer a {
  color: #00a8ff;
  text-decoration: none;
}

.dashboard-page {
  position: relative;
  width: 100%;
  min-width: 0;
  color: #4d4d4d;
  padding-bottom: 10px;
}

.dashboard-header {
  display: flex;
  min-height: 54px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px 7px 0;
}

.dashboard-header > div {
  padding-left: 6px;
}

.dashboard-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 12px;
  color: #299900;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
}

.dashboard-breadcrumbs a {
  color: #00a8c8;
  text-decoration: underline;
}

.dashboard-title {
  margin: 0;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.customize-button {
  display: inline-flex;
  height: 30px;
  align-items: center;
  gap: 5px;
  border: 1px solid #269d00;
  border-radius: 2px;
  background: #269d00;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 24px;
  padding: 0 12px;
}

.customize-button:hover {
  background: #1f8d00;
}

.dashboard-card-stack {
  display: grid;
  width: auto;
  grid-template-columns: repeat(auto-fit, minmax(min(490px, 100%), 1fr));
  gap: 9px;
  margin-left: 6px;
  margin-right: 16px;
}

.dashboard-card {
  position: relative;
  min-height: 220px;
  border: 1px solid #e7eee4;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  padding: 15px 18px 18px 8px;
}

.dashboard-card-title {
  display: flex;
  min-height: 24px;
  align-items: center;
  gap: 5px;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.dashboard-ncc-icon {
  display: block;
  flex: 0 0 auto;
  color: #4d4d4d;
  fill: currentColor;
}

.dashboard-inline-icon {
  overflow: visible;
}

.dashboard-card-icon {
  width: 24px;
  height: 24px;
}

.network-device-icon {
  width: 32px;
  height: 32px;
}

.customize-button-icon {
  width: 14px;
  height: 14px;
}

.dashboard-chat-icon {
  width: 24px;
  height: 24px;
}

.dashboard-time-badge {
  position: absolute;
  right: 8px;
  top: 28px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #777777;
}

.dashboard-time-icon {
  width: 24px;
  height: 24px;
}

.status-card {
  grid-column: 1 / -1;
  min-height: 221px;
}

.network-flow {
  display: grid;
  width: min(100%, 520px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: flex-start;
  margin: 13px auto 0;
  overflow: hidden;
}

.network-step {
  position: relative;
  display: grid;
  justify-items: center;
}

.network-node {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1.5px solid #2ca300;
  border-radius: 50%;
  background: #ffffff;
  color: #555555;
}

.network-node.is-unavailable {
  border-color: #1f1f1f;
  color: #4d4d4d;
}

.network-step:first-child .network-node {
  border-color: transparent;
}

.network-icon {
  display: grid;
  height: 34px;
  place-items: center;
}

.network-label {
  width: 78px;
  color: #555555;
  font-size: 13px;
  line-height: 14px;
  text-align: center;
}

.network-connector {
  position: absolute;
  left: calc(50% + 49px);
  top: 49px;
  width: 64px;
  height: 1px;
  background: #cfcfcf;
  content: "";
}

.network-step:nth-child(n + 4) {
  display: none;
}

@media (min-width: 1180px) {
  .network-flow {
    width: min(100%, 1120px);
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .network-step:nth-child(n + 4) {
    display: grid;
  }
}

.network-details {
  display: grid;
  width: 128px;
  min-height: 42px;
  gap: 6px;
  margin-top: 10px;
  color: #555555;
  font-size: 13px;
}

.network-detail {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 4px;
}

.network-detail.is-unavailable {
  grid-template-columns: 1fr;
  justify-items: center;
  border-bottom: 0;
  color: #555555;
  line-height: 16px;
  text-align: center;
}

.network-detail.is-unavailable span:last-child {
  display: none;
}

.network-detail.is-empty {
  opacity: 0;
}

.dashboard-two-donut-content {
  display: grid;
  width: min(100%, 500px);
  grid-template-columns: 125px 125px 1fr;
  gap: 16px;
  align-items: center;
  margin: 35px auto 0;
  padding-left: 18px;
}

.dashboard-donut-legend-content {
  display: grid;
  width: min(100%, 500px);
  grid-template-columns: 146px 1fr;
  gap: 18px;
  align-items: center;
  margin: 29px auto 0;
  padding-left: 18px;
}

.dashboard-donut {
  position: relative;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--donut));
}

.dashboard-donut::after {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.dashboard-donut-center {
  position: relative;
  z-index: 1;
  color: #555555;
  font-size: 19px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.dashboard-donut-center span,
.dashboard-donut-center small {
  display: block;
  color: #555555;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
}

.clients-donut {
  --donut: #31ad00 0 49.5%, #ffffff 49.5% 50.1%, #4ab900 50.1% 100%;
}

.traffic-donut {
  --donut: #51bd00 0 49.5%, #ffffff 49.5% 50.1%, #36ad00 50.1% 100%;
}

.band-donut {
  --donut: #31ad00 0 30%, #ffffff 30% 30.6%, #4fbd00 30.6% 100%;
}

.manufacturer-donut {
  --donut: #28a700 0 45%, #55bd00 45% 72%, #a4df67 72% 82%, #0069e8 82% 92%, #1bb8e8 92% 100%;
}

.firewall-donut {
  --donut: #28a700 0 23%, #55bd00 23% 42%, #a4df67 42% 59%, #0069e8 59% 69%, #1bb8e8 69% 78%, #86d8ed 78% 84%, #ff2f52 84% 89%, #ff8c16 89% 94%, #ffc400 94% 97%, #ffe58d 97% 100%;
}

.dashboard-legend {
  display: grid;
  gap: 11px;
  min-width: 0;
}

.dashboard-legend-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: #555555;
  font-size: 13px;
  line-height: 16px;
}

.dashboard-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dot);
}

.dashboard-app-icon {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: fill;
}

.dashboard-legend-row:has(.dashboard-app-icon) {
  grid-template-columns: 12px 16px minmax(0, 1fr) auto;
}

.dashboard-legend-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-legend-value {
  color: #555555;
  white-space: nowrap;
}

.access-point-legend {
  gap: 16px;
  align-self: center;
}

.ssid-card {
  min-height: 221px;
}

.dashboard-bar-list {
  display: grid;
  width: min(100%, 460px);
  gap: 13px;
  margin: 21px auto 0;
  padding: 0 36px 0 124px;
}

.dashboard-bar-row {
  display: grid;
  grid-template-columns: 96px 1fr 54px;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 16px;
}

.dashboard-bar-name {
  color: #00a8c8;
  text-align: right;
  white-space: nowrap;
}

.dashboard-bar-track {
  position: relative;
  display: block;
  height: 12px;
  background: #f1f1f1;
}

.dashboard-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: var(--bar-color);
}

.dashboard-bar-value {
  color: #555555;
  text-align: right;
  white-space: nowrap;
}

.poe-card {
  min-height: 220px;
}

.dashboard-no-permission {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 20px;
  color: #555555;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.dashboard-card.is-no-permission {
  min-height: 220px;
}

.poe-power-value {
  margin-top: 34px;
  color: #555555;
  font-weight: 300;
  line-height: 1;
  text-align: center;
}

.poe-power-value span {
  font-size: 34px;
  font-weight: 300;
}

.poe-power-value small {
  font-size: 14px;
  font-weight: 400;
}

.poe-power-unit,
.poe-power-label {
  color: #666666;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
}

.poe-power-percent {
  margin-top: 20px;
  color: #555555;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
}

.poe-power-percent span {
  font-size: 16px;
}

.manufacturer-card,
.band-card,
.firewall-card,
.wifi-card,
.port-advisor-card {
  min-height: 220px;
}

.firewall-network-content {
  grid-template-columns: 146px 1fr;
  margin-top: 18px;
}

.firewall-apps-legend {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 12px 18px;
}

.firewall-apps-legend .dashboard-legend-row {
  grid-template-columns: 12px 14px minmax(0, 1fr) auto;
  gap: 5px;
}

.security-alert-value {
  display: grid;
  min-height: 146px;
  place-items: center;
  color: #555555;
  font-size: 34px;
  font-weight: 300;
}

.wifi-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: end;
  margin-top: 24px;
  padding: 0 20px;
}

.wifi-insight {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.wifi-insight-title {
  min-height: 34px;
  color: #555555;
  font-size: 13px;
  line-height: 15px;
  text-align: left;
}

.insight-ring {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#ff3d5a 0 var(--progress), #dddddd var(--progress) 360deg);
}

.insight-ring-inner {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #555555;
  line-height: 17px;
  text-align: center;
}

.insight-ring-inner strong {
  color: #555555;
  font-size: 18px;
  font-weight: 400;
}

.insight-ring-inner span {
  font-size: 13px;
}

.port-advisor-content {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 158px;
  padding: 18px 34px 0 58px;
}

.port-hits {
  display: grid;
  color: #555555;
  text-align: center;
}

.port-hits span {
  font-size: 28px;
  font-weight: 300;
  line-height: 30px;
}

.port-hits small {
  font-size: 13px;
  font-weight: 400;
}

.dashboard-footer {
  display: grid;
  width: auto;
  gap: 4px;
  margin: 28px 16px 0 6px;
  color: #666666;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
}

.dashboard-footer a {
  color: #00a8c8;
  text-decoration: none;
}

.dashboard-chat-button {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 35;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 0;
  border-radius: 18px;
  background: #35b600;
  color: #ffffff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.28);
}

.site-settings-page {
  min-width: 920px;
  min-height: calc(100vh - 72px);
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 18px;
  margin: 0 -10px 0;
  padding: 12px 16px 0;
}

.site-settings-breadcrumbs {
  display: block;
  list-style: none;
  color: #299900;
  font-family: zyxel-nebula, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0 0 8px;
  padding: 0;
}

.site-settings-breadcrumbs li {
  display: inline;
  color: #3c9f00;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0;
  padding: 0;
}

.site-settings-breadcrumbs li:not(:last-child)::after {
  color: #3c9f00;
  content: ">";
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0 3px;
}

.site-settings-breadcrumbs a {
  color: #00b2ff;
  margin: 0 4px;
  text-decoration: underline;
}

.site-settings-title {
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 100;
  line-height: 18px;
  margin: 0 0 10px;
}

.site-settings-panel {
  border: 1px solid #dedede;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.site-settings-section {
  display: grid;
  border-bottom: 1px solid #e6e6e6;
  padding: 0 0 23px;
}

.site-settings-section.is-last {
  border-bottom: 0;
  padding-bottom: 28px;
}

.site-settings-section h2 {
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  margin: 0 0 36px;
  padding: 20px 0 0 16px;
}

.site-settings-form-row {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-height: 50px;
}

.site-settings-form-row.is-tall {
  min-height: 146px;
}

.site-settings-form-row.is-access {
  margin-top: 16px;
  min-height: 72px;
}

.site-settings-form-row.is-compact {
  min-height: 42px;
}

.site-settings-label {
  min-width: 0;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 18px;
  padding: 0 16px 0 32px;
}

.site-settings-control {
  min-width: 0;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 18px;
}

.site-settings-control.is-inline,
.site-settings-inline-link,
.site-settings-smart-guest,
.site-settings-api-token {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.site-settings-input {
  position: relative;
  display: inline-flex;
  width: 164px;
  height: 30px;
  align-items: center;
  border: 1px solid #e2e2e2;
  background: #ffffff;
}

.site-settings-input.is-wide {
  width: 298px;
}

.site-settings-input input {
  width: 100%;
  min-width: 0;
  height: 28px;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 28px;
  padding: 0 24px 0 7px;
}

.site-settings-input button {
  position: absolute;
  right: 3px;
  top: 50%;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #b7b7b7;
  padding: 0;
}

.site-settings-input button + button {
  right: 2px;
}

.site-settings-required {
  color: #ed6b73;
  font-size: 13px;
  line-height: 30px;
  margin-left: 5px;
}

.site-settings-select {
  display: inline-flex;
  width: 150px;
  height: 30px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 28px;
  padding: 0 9px 0 8px;
}

.site-settings-select span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-settings-select.is-wide {
  width: 148px;
}

.site-settings-link {
  color: #00b2ff;
  font-size: 13px;
  font-weight: 100;
  line-height: 18px;
  text-decoration: underline;
}

.site-settings-control > .site-settings-input.is-wide + .site-settings-link {
  display: block;
  margin-top: 3px;
}

.site-settings-credentials {
  display: grid;
  gap: 10px;
}

.site-settings-credential-line {
  display: flex;
  min-height: 22px;
  align-items: center;
  gap: 15px;
}

.site-settings-sub-label {
  width: 80px;
}

.site-settings-password-note {
  width: min(647px, calc(100% - 16px));
  min-height: 90px;
  border: 1px solid #dedede;
  border-radius: 3px;
  background: #ffffff;
  color: #4d4d4d;
  line-height: 20px;
  padding: 18px 16px;
}

.site-settings-form-row.is-greyed-out .site-settings-label,
.site-settings-form-row.is-greyed-out .site-settings-control,
.site-settings-form-row.is-greyed-out .site-settings-credential-line,
.site-settings-form-row.is-greyed-out .site-settings-password-note {
  color: #9a9a9a;
}

.site-settings-form-row.is-greyed-out .site-settings-input,
.site-settings-form-row.is-greyed-out .site-settings-password-note {
  border-color: #e6e6e6;
  background: #f8f8f8;
}

.site-settings-form-row.is-greyed-out .site-settings-input input {
  color: #9a9a9a;
}

.site-settings-form-row.is-greyed-out .site-settings-input button {
  color: #c5c5c5;
}

.site-settings-form-row.is-greyed-out .site-settings-required {
  color: #d8a4a8;
}

.site-settings-checkboxes {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 23px;
}

.site-settings-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #4d4d4d;
  font-weight: 100;
}

.site-settings-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-settings-checkbox span {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #9b9b9b;
  background: #ffffff;
}

.site-settings-checkbox input:checked + span {
  border-color: #777777;
  background: #777777;
}

.site-settings-checkbox input:checked + span::after {
  position: absolute;
  left: 3px;
  top: 0;
  width: 5px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  content: "";
  transform: rotate(45deg);
}

.site-settings-checkbox b {
  font-weight: 100;
}

.site-settings-warning {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  color: #f19a00;
  line-height: 18px;
  margin-top: 10px;
}

.site-settings-warning-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 1px;
}

.site-settings-info-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
}

.site-settings-preview-badge {
  display: inline-flex;
  height: 18px;
  align-items: center;
  border-radius: 3px;
  background: #57c400;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  margin-left: 7px;
  padding: 0 6px;
  vertical-align: 1px;
}

.site-settings-toggle-row {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.site-settings-toggle {
  position: relative;
  display: inline-block;
  width: 39px;
  height: 20px;
  flex: 0 0 39px;
}

.site-settings-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-settings-toggle span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #8b8b8b;
}

.site-settings-toggle span::after {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
  transition: transform 120ms ease;
}

.site-settings-toggle.is-on span {
  background: #35bf13;
}

.site-settings-toggle.is-on span::after {
  transform: translateX(19px);
}

.site-settings-add-button,
.site-settings-generate-button {
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 3px;
  background: #35a800;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 30px;
  padding: 0 12px;
}

.site-settings-add-button {
  gap: 2px;
}

.site-settings-diamond {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  margin-right: 3px;
  vertical-align: -3px;
}

.site-settings-api-token {
  flex-wrap: wrap;
}

.site-settings-api-token .site-settings-input {
  width: 184px;
}

.site-settings-token-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #e2e2e2;
  background: #f8f8f8;
  color: #c5c5c5;
  padding: 0;
}

.site-settings-generate-button {
  margin-left: 8px;
}

.site-settings-api-token p {
  flex: 0 0 100%;
  color: #4d4d4d;
  line-height: 17px;
  margin: 8px 0 0;
}

.site-settings-footer {
  display: grid;
  justify-items: center;
  gap: 13px;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 18px;
  padding: 42px 0 22px;
}

.site-settings-footer div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-settings-footer button {
  display: inline-flex;
  min-width: 49px;
  height: 29px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 3px;
  background: #f5f5f5;
  color: #d0d0d0;
  font-size: 13px;
  line-height: 29px;
}

.site-settings-footer a {
  color: #4d4d4d;
  text-decoration: none;
}

.site-settings-footer p {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
}

.site-settings-page .dashboard-footer {
  margin-top: 0;
  padding-bottom: 12px;
}

.site-settings-chat-button {
  right: 18px;
  bottom: 16px;
}

.license-inventory-page {
  min-width: 0;
  min-height: calc(100vh - 90px);
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 19.2px;
  margin: 0 -10px 0;
  padding: 0 16px;
}

.license-inventory-breadcrumbs {
  display: block;
  list-style: none;
  color: #3c9f00;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0 0 8px;
  padding: 0;
}

.license-inventory-breadcrumbs li {
  display: inline;
  color: #3c9f00;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0;
  padding: 0;
}

.license-inventory-breadcrumbs li:not(:last-child)::after {
  color: #3c9f00;
  content: ">";
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0 3px;
}

.license-inventory-breadcrumbs a {
  color: #00b2ff;
  margin: 0 4px;
  text-decoration: underline;
}

.license-inventory-title-row {
  display: flex;
  min-height: 30px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 10px;
}

.license-inventory-title {
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 100;
  line-height: 18px;
  margin: 4px 0 0;
}

.payg-dropdown-scheme-buttons {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 6px;
}

.license-title-style-buttons {
  display: grid;
  width: auto;
  grid-template-columns: repeat(2, minmax(156px, 1fr));
  margin-left: auto;
  justify-content: stretch;
}

.payg-dropdown-scheme-button {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  height: 34px;
  align-items: center;
  gap: 7px;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 12px;
  font-weight: 500;
  padding: 0 10px;
}

.license-title-style-buttons .payg-dropdown-scheme-button:nth-child(5) {
  grid-column: 2;
}

.payg-dropdown-scheme-button span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
}

.payg-dropdown-scheme-button em {
  font-style: normal;
  white-space: nowrap;
}

.payg-dropdown-scheme-button:hover {
  border-color: #8fbfff;
  background: #f5faff;
}

.payg-dropdown-scheme-button.is-active {
  border-color: #4f46e5;
  background: #eef2ff;
  color: #3730a3;
}

.license-inventory-panel {
  background: transparent;
}

.license-tabs {
  display: flex;
  min-height: 48px;
  align-items: stretch;
  border-bottom: 1px solid #dedede;
  background: #ffffff;
  overflow-x: auto;
  overflow-y: hidden;
}

.license-tab {
  position: relative;
  display: inline-flex;
  width: 160px;
  flex: 0 0 160px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  padding: 0;
}

.license-tab.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: #35a800;
  content: "";
}

.license-overview-panel,
.license-trial-panel {
  border: 1px solid #dedede;
  border-top: 0;
  background: #fcfcfc;
  padding: 16px 16px 26px;
}

.license-trial-panel {
  min-height: 520px;
  padding-bottom: 32px;
}

.license-trial-notice {
  display: flex;
  min-height: 70px;
  align-items: flex-start;
  gap: 13px;
  background: #fff4ce;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 18px;
  margin: 0 0 18px;
  padding: 16px 20px;
}

.license-trial-notice p {
  margin: 0;
}

.license-trial-notice-icon {
  margin-top: 2px;
}

.license-trial-actions {
  display: flex;
  min-height: 30px;
  justify-content: flex-end;
  margin: 0 0 16px;
}

.license-ncc-button {
  display: inline-flex;
  min-width: 72px;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid #3c9f00;
  border-radius: 2px;
  background: #3c9f00;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  padding: 0 8px;
}

.license-ncc-button:hover {
  background: #338c00;
}

.license-ncc-button.is-disabled,
.license-ncc-button[aria-disabled="true"] {
  border-color: #66be2a;
  background: #66be2a;
  cursor: not-allowed;
}

.license-trial-card-list {
  display: grid;
  gap: 20px;
}

.license-trial-card {
  display: grid;
  min-height: 173px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  border-left: 6px solid #66be2a;
  border-radius: 4px;
  background: #f2f2f2;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 18px;
  padding: 20px 10px 10px;
}

.license-trial-card-copy {
  min-width: 0;
  align-self: stretch;
}

.license-trial-card h3 {
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  margin: 0 0 19px;
}

.license-trial-card p {
  max-width: 880px;
  margin: 0 0 8px;
}

.license-trial-card strong {
  display: block;
  font-weight: 600;
  line-height: 18px;
  margin-top: 8px;
}

.license-trial-activate-button {
  align-self: end;
}

.license-block {
  border: 1px solid #e6e6e6;
  background: transparent;
  margin: 0 0 14px;
  padding: 0 0 24px;
}

.license-block.is-collapsed {
  padding-bottom: 0;
}

.license-block:last-child {
  margin-bottom: 0;
}

.license-organization-status {
  padding-bottom: 25px;
}

.my-place-scenario-control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 10px;
  padding: 0 16px;
}

.my-place-scenario-label {
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.my-place-scenario-buttons {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #ffffff;
}

.my-place-scenario-button {
  min-height: 30px;
  border: 0;
  border-right: 1px solid #d9d9d9;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 16px;
  padding: 6px 10px;
}

.my-place-scenario-button:last-child {
  border-right: 0;
}

.my-place-scenario-button:hover {
  background: #f3f8ef;
}

.my-place-scenario-button.is-active {
  background: #3c9f00;
  color: #ffffff;
  font-weight: 500;
}

.license-section-header {
  display: flex;
  min-height: 30px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0;
  padding: 0 16px;
}

.license-section-header h2 {
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  margin: 6px 0 0;
}

.license-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.license-outline-button,
.license-primary-button,
.license-inventory-select {
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 13px;
  padding: 0 10px;
}

.license-outline-button {
  width: 76px;
  gap: 5px;
  border: 1px solid #3c9f00;
  border-radius: 2px;
  background: #3c9f00;
  color: #ffffff;
  font-weight: 500;
}

.license-primary-button {
  width: 147px;
  border: 1px solid #ff8900;
  border-radius: 2px;
  background: #ff8900;
  color: #ffffff;
  font-weight: 500;
}

.license-payg-button {
  display: inline-flex;
  width: 116px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #3c9f00;
  border-radius: 2px;
  background: #3c9f00;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  padding: 0 10px;
  white-space: nowrap;
}

.license-payg-button:hover {
  background: #328800;
}

.license-upgrade-menu {
  position: relative;
}

.license-upgrade-button {
  display: inline-flex;
  width: 124px;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid #3c9f00;
  border-radius: 2px;
  background: #3c9f00;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  padding: 0 8px;
}

.license-upgrade-button:hover,
.license-upgrade-button[aria-expanded="true"] {
  background: #328800;
}

.license-upgrade-popover {
  position: absolute;
  z-index: 12;
  top: calc(100% + 2px);
  right: 0;
  min-width: 124px;
  overflow: hidden;
  border-radius: 0 0 3px 3px;
  background: #ffffff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.22);
}

.license-upgrade-popover button {
  display: block;
  width: 100%;
  min-height: 40px;
  border: 0;
  background: #ffffff;
  color: #666666;
  font-size: 13px;
  line-height: 18px;
  padding: 10px 14px;
  text-align: left;
}

.license-upgrade-popover button:hover {
  background: #f3f3f3;
  color: #3c9f00;
}

.license-status-list {
  display: grid;
  gap: 18px;
  padding: 0 16px;
}

.license-status-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: start;
  min-height: 15px;
}

.license-status-label {
  display: flex;
  min-width: 0;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 13px;
  padding: 0 16px;
}

.license-status-value {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 15px;
}

.license-payg-info-button {
  display: inline-flex;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.license-payg-info-button:hover .license-info-icon,
.license-payg-info-button:focus-visible .license-info-icon {
  filter: brightness(0.82);
}

.license-payg-info-button:focus-visible {
  outline: 2px solid #00b2ff;
  outline-offset: 2px;
}

.license-status-value strong {
  font-weight: 700;
}

.license-organization-type-value {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.organization-payg-icon.is-license {
  transform: translateY(-1px);
}

.license-postpayment {
  color: #00b2ff;
}

.license-org-tier-chip,
.license-service-chip {
  display: inline-flex;
  height: 18px;
  align-items: center;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  padding: 0 8px;
}

.license-org-tier-chip.is-pro,
.license-org-tier-chip.is-plus {
  border: 1px solid #64be00;
  background: #eff9e8;
  color: #3c8a00;
}

.license-org-tier-chip.is-base {
  border: 1px solid #bdbdbd;
  background: #f4f4f4;
  color: #666666;
}

.license-service-chip {
  border: 1px solid #64be00;
  background: #eff9e8;
  color: #3c8a00;
}

.license-status-value a {
  color: #00b2ff;
  text-decoration: underline;
}

.license-health-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
}

.license-health-dot.is-valid {
  background: #35a800;
}

.license-health-dot.is-warning {
  background: #f6a800;
}

.license-health-dot.is-danger {
  background: #df4a32;
}

.license-expiration-section {
  padding-top: 0;
}

.license-head-panel {
  display: flex;
  min-height: 19px;
  align-items: center;
  justify-content: space-between;
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  margin: 16px 0;
  padding: 0 16px;
}

.license-block-collapse-button {
  display: inline-grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  padding: 0;
}

.license-block-collapse-button:hover {
  color: #2f8200;
}

.license-block-collapse-button .lucide {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.license-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.license-inventory-select {
  width: 150px;
  justify-content: space-between;
  border: 1px solid #e2e2e2;
  background: #ffffff;
  padding: 0 9px 0 8px;
}

.license-filter-row .license-inventory-select:first-child {
  width: 192px;
}

.license-filter-row .license-inventory-select:nth-child(2) {
  width: 160px;
}

.license-filter-row .license-inventory-select:nth-child(3) {
  width: 96px;
}

.license-inventory-select span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.license-head-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.license-info-icon {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.license-forecast-chart {
  position: relative;
  min-height: 318px;
  overflow-x: auto;
  padding: 6px 44px 28px 62px;
}

.license-chart-legend {
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 13px;
}

.license-chart-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.license-chart-swatch {
  width: 10px;
  height: 10px;
}

.license-chart-swatch.is-ncc,
.license-chart-bar.is-ncc {
  background: #3f91be;
  color: #3f91be;
}

.license-chart-swatch.is-security,
.license-chart-bar.is-security {
  background: #c95043;
  color: #c95043;
}

.license-chart-swatch.is-secure-wifi,
.license-chart-bar.is-secure-wifi {
  background: #dc8d1a;
  color: #dc8d1a;
}

.license-chart-swatch.is-cnp,
.license-chart-bar.is-cnp {
  background: #52b900;
  color: #52b900;
}

.license-chart-swatch.is-nbds,
.license-chart-bar.is-nbds {
  background: #bec900;
  color: #bec900;
}

.license-chart-plot {
  position: relative;
  height: 246px;
  min-width: 720px;
  border-bottom: 1px solid #555555;
  border-left: 1px solid #555555;
}

.license-chart-gridline {
  position: absolute;
  z-index: 0;
  right: 0;
  left: 0;
  border-top: 1px dashed #bfc3c1;
}

.license-chart-gridline.is-top {
  top: 0;
}

.license-chart-gridline.is-middle {
  top: 50%;
}

.license-chart-y-axis {
  position: absolute;
  top: 31px;
  left: 43px;
  display: flex;
  width: 16px;
  height: 246px;
  flex-direction: column;
  justify-content: space-between;
  color: #4d4d4d;
  font-size: 11px;
  line-height: 11px;
  text-align: right;
}

.license-chart-months {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(54px, 1fr));
}

.license-chart-month {
  position: relative;
  min-width: 0;
  border-right: 1px dashed #bfc3c1;
}

.license-chart-month:last-child {
  border-right: 0;
}

.license-chart-bars {
  position: absolute;
  inset: 0 5px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
}

.license-chart-bar {
  position: relative;
  display: block;
  width: 11px;
  height: var(--license-chart-height);
  min-height: 0;
}

.license-chart-bar > span {
  position: absolute;
  right: 0;
  bottom: calc(100% + 2px);
  left: 0;
  background: transparent;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
}

.license-chart-bar.is-zero {
  height: 0;
  background: transparent;
}

.license-chart-bar.is-zero > span {
  bottom: 2px;
}

.license-chart-month-label {
  position: absolute;
  top: calc(100% + 7px);
  right: -12px;
  left: -12px;
  color: #4d4d4d;
  font-size: 11px;
  line-height: 11px;
  text-align: center;
  white-space: nowrap;
}

.license-chart-nav {
  position: absolute;
  top: 139px;
  display: grid;
  width: 28px;
  height: 40px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  padding: 0;
}

.license-chart-nav.is-previous {
  left: 0;
  color: #a5aaa7;
}

.license-chart-nav.is-next {
  right: 0;
}

.license-detail-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 0 16px 24px;
}

.license-detail-summary {
  padding-top: 2px;
}

.license-detail-donut {
  width: 176px;
  height: 176px;
  border: 20px solid #0c50f4;
  border-radius: 50%;
  background: #ffffff;
  margin: 0 0 18px 13px;
}

.license-detail-legend {
  display: grid;
  gap: 9px;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 15px;
}

.license-detail-legend-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 7px;
}

.license-detail-legend-row > span:first-child {
  width: 12px;
  height: 12px;
}

.license-detail-legend-row > span.is-expired {
  background: #ff3030;
}

.license-detail-legend-row > span.is-soon {
  background: #ff8900;
}

.license-detail-legend-row > span.is-later {
  background: #0c50f4;
}

.license-detail-legend-row > span.is-inactive {
  background: #c7c7c7;
}

.license-detail-legend-row strong {
  justify-self: end;
  font-weight: 100;
}

.license-detail-content {
  min-width: 0;
  overflow-x: auto;
}

.license-table-toolbar {
  display: flex;
  min-height: 42px;
  align-items: flex-start;
  gap: 5px;
}

.license-table-toolbar .license-inventory-select {
  width: 192px;
}

.license-table-toolbar .license-info-icon {
  margin-top: 7px;
}

.license-detail-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 15px;
  table-layout: fixed;
}

.license-detail-table th {
  height: 28px;
  border: 0;
  background: #767676;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 14px;
  padding: 4px 8px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.license-detail-table th:first-child {
  width: 27%;
  text-align: left;
}

.license-detail-table th:nth-child(2) {
  width: 13%;
}

.license-detail-table th:nth-child(3) {
  width: 16%;
}

.license-detail-table th:nth-child(4) {
  width: 18%;
}

.license-detail-table th:nth-child(5) {
  width: 17%;
}

.license-detail-table th:nth-child(6) {
  width: 9%;
}

.license-detail-table td {
  height: 39px;
  border-bottom: 1px solid #dedede;
  background: #ffffff;
  padding: 4px 8px;
  text-align: center;
  vertical-align: middle;
}

.license-detail-table tbody tr:nth-child(even) td {
  background: #f1f1f1;
}

.license-detail-table td:first-child {
  text-align: left;
}

.license-device-cell {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.license-device-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: #4d4d4d;
}

.license-device-ncc-icon,
.license-device-arrow-icon {
  color: #4d4d4d;
  fill: currentColor;
}

.license-device-expand {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  margin-left: auto;
}

.license-inventory-page .dashboard-footer {
  margin-top: 0;
  padding-bottom: 12px;
}

.license-inventory-chat-button {
  right: 18px;
  bottom: 16px;
}

.license-devices-panel {
  min-width: 0;
  border: 1px solid #dedede;
  background: #ffffff;
  padding: 16px 16px 8px;
}

.license-device-counts {
  display: flex;
  min-height: 82px;
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 2px;
  overflow-x: auto;
}

.license-device-count {
  display: inline-flex;
  min-width: 170px;
  flex: 1 0 170px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #4d4d4d;
  font-size: 14px;
  line-height: 18px;
  padding: 12px 6px;
}

.license-device-count strong {
  color: #4d4d4d;
  font-size: 28px;
  font-weight: 100;
  line-height: 32px;
}

.license-device-count-icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #4d4d4d;
}

.license-device-count-ncc-icon {
  color: currentColor;
  fill: currentColor;
}

.license-devices-toolbar {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
}

.license-device-use-filter {
  display: inline-flex;
  height: 30px;
  align-items: stretch;
  border: 1px solid #3c9f00;
  border-radius: 2px;
  overflow: hidden;
}

.license-device-use-filter button {
  border: 0;
  border-right: 1px solid #3c9f00;
  background: #ffffff;
  color: #3c9f00;
  font: inherit;
  font-size: 12px;
  padding: 0 12px;
}

.license-device-use-filter button:last-child {
  border-right: 0;
}

.license-device-use-filter button.is-active {
  background: #3c9f00;
  color: #ffffff;
  font-weight: 700;
}

.license-devices-search {
  display: inline-flex;
  width: 230px;
  height: 30px;
  align-items: center;
  gap: 6px;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  color: #777777;
  padding: 0 8px;
}

.license-devices-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: #4d4d4d;
  font: inherit;
  font-size: 12px;
  outline: 0;
}

.license-devices-count {
  color: #4d4d4d;
  font-size: 12px;
  white-space: nowrap;
}

.license-devices-count strong {
  display: inline-grid;
  width: 27px;
  height: 21px;
  place-items: center;
  border: 1px solid #777777;
  border-radius: 12px;
  color: #3c9f00;
  font-size: 12px;
  font-weight: 500;
}

.license-devices-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.license-devices-toolbar .license-outline-button {
  display: inline-flex;
  height: 30px;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  padding: 0 10px;
}

.license-devices-actions-menu:disabled {
  border-color: #e6e6e6;
  color: #b8b8b8;
}

.license-devices-primary-button {
  display: inline-flex;
  height: 30px;
  align-items: center;
  gap: 4px;
  border: 1px solid #3c9f00;
  border-radius: 2px;
  background: #3c9f00;
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 0 10px;
}

.license-payg-notice {
  margin: 0 0 14px;
  border: 1px solid #ff9700;
  border-radius: 2px;
  background: #fff0c4;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 20px;
  padding: 9px 16px 10px;
}

.license-payg-notice p {
  margin: 0;
}

.license-payg-notice ol {
  margin: 4px 0 0;
  padding-left: 16px;
}

.license-payg-notice a {
  color: #00a8ef;
  text-decoration: underline;
}

.license-devices-table-shell {
  width: 100%;
  overflow-x: auto;
}

.license-devices-table {
  width: 100%;
  min-width: 1280px;
  border-collapse: collapse;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 18px;
  white-space: nowrap;
}

.license-devices-table th {
  height: 32px;
  border: 0;
  background: #767676;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 8px;
  text-align: left;
}

.license-devices-table th.license-devices-check,
.license-devices-table td.license-devices-check {
  width: 36px;
  text-align: center;
}

.license-devices-table td {
  height: 39px;
  border-bottom: 1px solid #dedede;
  background: #ffffff;
  padding: 5px 8px;
  vertical-align: middle;
}

.license-devices-table tbody tr:nth-child(even) td {
  background: #f7f7f7;
}

.license-device-name {
  color: #4d4d4d;
  font-weight: 100;
}

.license-payg-service {
  color: #4d4d4d;
  font-weight: 100;
}

.license-device-actions-button {
  display: inline-flex;
  height: 28px;
  align-items: center;
  gap: 3px;
  border: 1px solid #3c9f00;
  border-radius: 2px;
  background: #3c9f00;
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 0 8px;
  white-space: nowrap;
}

.license-devices-pagination {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: #4d4d4d;
  font-size: 12px;
}

.license-devices-pagination > button:not(.license-devices-page-number):not(.license-devices-page-size) {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #a0a0a0;
}

.license-devices-page-number,
.license-devices-page-size {
  height: 26px;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  background: #ffffff;
  color: #4d4d4d;
  font: inherit;
  font-size: 12px;
  padding: 0 9px;
}

.license-devices-page-number {
  color: #3c9f00;
  font-weight: 700;
}

.license-devices-page-size {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.license-devices-results {
  margin-left: 10px;
}

.license-prototype-placeholder {
  display: flex;
  min-height: 240px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid #dedede;
  background: #ffffff;
  color: #4d4d4d;
  padding: 24px;
  text-align: left;
}

.license-prototype-placeholder-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: #eff9e8;
  color: #3c9f00;
}

.license-prototype-placeholder h2 {
  margin: 0 0 7px;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.license-prototype-placeholder p {
  max-width: 560px;
  margin: 0;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 20px;
}

.license-prototype-placeholder p + p {
  margin-top: 3px;
}

.topology-page {
  min-width: 980px;
  color: #4d4d4d;
}

.topology-header {
  display: flex;
  min-height: 58px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 8px;
}

.topology-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 9px;
  color: #299900;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.topology-breadcrumbs a {
  color: #00a8ff;
  text-decoration: underline;
}

.topology-title {
  margin: 0;
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.topology-panel {
  border: 1px solid #e0e0e0;
  background: #ffffff;
}

.topology-toolbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #e0e0e0;
  background: #fcfcfc;
  padding: 8px 12px;
}

.topology-toolbar-left,
.topology-toolbar-right {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
}

.topology-toolbar-right {
  justify-content: flex-end;
}

.topology-search-group {
  display: inline-flex;
  height: 30px;
  align-items: stretch;
}

.topology-search {
  display: inline-flex;
  width: 196px;
  height: 30px;
  align-items: center;
  gap: 6px;
  border: 1px solid #e5e5e5;
  border-right: 0;
  background: #ffffff;
  color: #c4c4c4;
  padding: 0 8px;
}

.topology-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  outline: 0;
  padding: 0;
}

.topology-search input::placeholder {
  color: #b3b3b3;
}

.topology-search:has(input:disabled) {
  background: #f5f5f5;
  color: #c6c6c6;
}

.topology-search input:disabled {
  color: #b8b8b8;
}

.topology-search-menu {
  display: grid;
  width: 24px;
  height: 30px;
  place-items: center;
  border: 1px solid #e5e5e5;
  background: #f7f7f7;
  color: #666666;
  padding: 0;
}

.topology-search-menu:disabled {
  color: #c4c4c4;
  cursor: not-allowed;
}

.topology-count-badge {
  display: inline-grid;
  width: 26px;
  height: 20px;
  place-items: center;
  border: 1px solid #9d9d9d;
  border-radius: 999px;
  background: #ffffff;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

.topology-count-label {
  color: #666666;
  font-size: 12px;
  line-height: 20px;
  margin-right: 5px;
  white-space: nowrap;
}

.topology-tool-button,
.topology-pdf-button {
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid #e6e6e6;
  border-radius: 1px;
  background: #f4f4f4;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  padding: 0 8px;
  white-space: nowrap;
}

.topology-tool-button.is-disabled {
  border-color: #eeeeee;
  background: #f5f5f5;
  color: #c8c8c8;
}

.topology-tool-button:hover,
.topology-pdf-button:hover {
  border-color: #d6d6d6;
  background: #eeeeee;
}

.topology-tool-button.is-disabled:hover {
  border-color: #eeeeee;
  background: #f5f5f5;
}

.topology-pdf-button {
  border-color: #3c9f00;
  background: #3c9f00;
  color: #ffffff;
  font-weight: 500;
}

.topology-pdf-button:hover {
  border-color: #338c00;
  background: #338c00;
}

.topology-pdf-button.is-disabled,
.topology-pdf-button.is-disabled:hover {
  border-color: #eeeeee;
  background: #f5f5f5;
  color: #c8c8c8;
  cursor: not-allowed;
}

.topology-tool-button .lucide,
.topology-pdf-button .lucide {
  color: currentColor;
  stroke-width: 1.7;
}

.topology-canvas {
  position: relative;
  display: grid;
  place-items: center;
  height: calc(100vh - 192px);
  min-height: 520px;
  overflow: hidden;
  background: #ffffff;
}

.topology-permission-message {
  display: grid;
  width: min(520px, calc(100% - 48px));
  justify-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #4d4d4d;
  padding: 34px 38px 36px;
  text-align: center;
}

.topology-permission-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #d8e7d1;
  border-radius: 50%;
  background: #f2f9ef;
  color: #269d00;
}

.topology-permission-icon .lucide {
  stroke-width: 1.8;
}

.topology-limited-message .topology-permission-icon .lucide {
  fill: none;
  color: #269d00;
}

.topology-permission-message h2 {
  margin: 16px 0 9px;
  color: #4d4d4d;
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
}

.topology-permission-message p {
  max-width: 430px;
  margin: 0;
  color: #666666;
  font-size: 13px;
  line-height: 20px;
}

.topology-canvas-tools {
  position: absolute;
  right: 14px;
  top: 14px;
  display: flex;
  align-items: center;
  gap: 0;
}

.topology-canvas-tools button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #e5e5e5;
  border-right: 0;
  border-radius: 0;
  background: #f7f7f7;
  color: #777777;
  box-shadow: none;
  padding: 0;
}

.topology-canvas-tools button:first-child {
  margin-right: 5px;
  border-right: 1px solid #e5e5e5;
}

.topology-canvas-tools button:nth-child(3) {
  border-right: 1px solid #e5e5e5;
}

.topology-canvas-tools button:last-child {
  margin-left: 6px;
  border: 0;
  background: transparent;
  color: #159ce8;
}

.topology-canvas-tools button:hover {
  background: #eeeeee;
}

.topology-canvas-tools button:last-child:hover {
  background: transparent;
}

.topology-canvas-tools button:disabled,
.topology-canvas-tools button:disabled:hover {
  border-color: #eeeeee;
  background: #f7f7f7;
  color: #c6c6c6;
  cursor: not-allowed;
}

.topology-canvas-tools button:last-child:disabled,
.topology-canvas-tools button:last-child:disabled:hover {
  background: transparent;
  color: #c6c6c6;
}

.topology-info-button .lucide {
  fill: #159ce8;
  color: #159ce8;
  stroke-width: 2;
}

.topology-info-button:disabled .lucide {
  fill: #c6c6c6;
  color: #c6c6c6;
}

.clients-page {
  min-width: 920px;
  min-height: calc(100vh - 90px);
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 19.2px;
  margin: 0 -10px 0;
  padding: 0 16px;
}

.clients-header {
  min-height: 58px;
  padding: 0 0 8px;
}

.clients-breadcrumbs {
  display: block;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  color: #3c9f00;
  font-family: zyxel-nebula, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
}

.clients-breadcrumbs li {
  display: inline;
  color: #3c9f00;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0;
  padding: 0;
}

.clients-breadcrumbs li:not(:last-child)::after {
  color: #3c9f00;
  content: ">";
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0 3px;
}

.clients-breadcrumbs a {
  color: #00b2ff;
  margin: 0 4px;
  text-decoration: underline;
}

.clients-title {
  margin: 0;
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 100;
  line-height: 18px;
}

.clients-panel {
  background: transparent;
}

.clients-tabs {
  display: flex;
  min-height: 48px;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid #dedede;
  background: #ffffff;
}

.clients-tab {
  position: relative;
  display: inline-flex;
  width: 160px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  padding: 0;
}

.clients-tab.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: #35a800;
  content: "";
}

.clients-diamond {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
}

.clients-diamond .monitor-premium-diamond {
  width: 14px;
  height: 14px;
}

.clients-preview-badge {
  display: inline-flex;
  height: 18px;
  align-items: center;
  border-radius: 3px;
  background: #56c400;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  padding: 0 5px;
}

.clients-content-frame {
  border: 1px solid #dedede;
  border-top: 0;
  background: #fcfcfc;
  padding: 16px 16px 26px;
}

.clients-filter-row {
  display: flex;
  min-height: 48px;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  border-bottom: 1px solid #eeeeee;
  padding: 0 0 16px;
}

.clients-device-type-select {
  position: relative;
  z-index: 8;
}

.clients-select,
.clients-refresh,
.clients-client-mode button,
.clients-policy-button,
.clients-policy-segment button,
.clients-export,
.clients-pagination button {
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfdfdf;
  border-radius: 1px;
  background: #ffffff;
  color: #5b5b5b;
  font-size: 13px;
  font-weight: 500;
  line-height: 28px;
}

.clients-select {
  justify-content: space-between;
  width: 192px;
  padding: 0 9px;
}

.clients-device-type-select.is-open .clients-select {
  border-color: #b7b7b7;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.clients-device-type-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 2px);
  left: 0;
  width: 220px;
  border: 1px solid #d6d6d6;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  color: #4d4d4d;
  padding: 6px 0;
}

.clients-device-type-group + .clients-device-type-group {
  border-top: 1px solid #eeeeee;
  margin-top: 4px;
  padding-top: 4px;
}

.clients-device-type-group-label {
  color: #777777;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  padding: 4px 12px 3px;
}

.clients-device-type-option {
  display: flex;
  width: 100%;
  min-height: 28px;
  align-items: center;
  border: 0;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  padding: 5px 14px 5px 18px;
  text-align: left;
}

.clients-device-type-option:hover,
.clients-device-type-option.is-selected {
  background: #eaf7e5;
  color: #249400;
}

.clients-device-type-option.is-disabled,
.clients-device-type-option:disabled {
  cursor: not-allowed;
  background: #ffffff;
  color: #b4b4b4;
}

.clients-device-type-option.is-disabled:hover,
.clients-device-type-option:disabled:hover {
  background: #ffffff;
  color: #b4b4b4;
}

.clients-time-select {
  width: 135px;
}

.clients-refresh {
  width: 31px;
  padding: 0;
}

.clients-info-icon {
  display: inline-grid;
  width: 20px;
  height: 30px;
  place-items: center;
  color: #009bff;
}

.clients-info-icon .lucide {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.clients-filter-spacer {
  flex: 1 1 auto;
}

.clients-client-mode {
  display: inline-flex;
  height: 30px;
  align-items: stretch;
}

.clients-client-mode button {
  border-color: #229300;
  color: #229300;
  padding: 0 14px;
}

.clients-client-mode button + button {
  border-left: 0;
}

.clients-client-mode button.is-active,
.clients-export {
  border-color: #3c9f00;
  background: #3c9f00;
  color: #ffffff;
}

.clients-usage-summary {
  min-height: 71px;
  border: 1px solid #e6e6e6;
  background: #fcfcfc;
  margin: 0 0 16px;
  padding: 0 16px;
}

.clients-usage-head-panel {
  display: flex;
  min-height: 37px;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0;
  padding: 0 16px;
}

.clients-usage-summary h2 {
  display: block;
  flex: 1 1 auto;
  margin: 0;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.clients-usage-summary h2 span {
  display: block;
  margin: 0 0 8px;
}

.clients-usage-summary h2 small {
  display: block;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
}

.clients-collapse-icon {
  display: inline-grid;
  width: 16px;
  height: 19px;
  flex: 0 0 16px;
  place-items: center;
  color: #4d4d4d;
}

.clients-collapse-svg {
  display: block;
  width: 16px;
  height: 16px;
}

.clients-table-toolbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0 8px;
}

.clients-policy-button {
  min-width: 56px;
  padding: 0 8px;
}

.clients-policy-button:disabled {
  border-color: #eeeeee;
  background: #e5e5e5;
  color: #b3b3b3;
  opacity: 1;
}

.clients-policy-segment {
  display: inline-flex;
  height: 30px;
  align-items: stretch;
  margin-right: 6px;
}

.clients-policy-segment button {
  min-width: 44px;
  padding: 0 10px;
}

.clients-policy-segment button + button {
  border-left: 0;
}

.clients-policy-segment button.is-active {
  background: #35b600;
  color: #ffffff;
}

.clients-policy-segment button:disabled {
  background: #f3f3f3;
  color: #c7c7c7;
  opacity: 1;
}

.clients-search {
  display: inline-flex;
  width: 229px;
  height: 30px;
  align-items: center;
  border: 1px solid #dfdfdf;
  background: #ffffff;
  color: #b3b3b3;
}

.clients-search > .lucide {
  margin-left: 8px;
}

.clients-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  outline: 0;
  padding: 0 6px;
}

.clients-search input::placeholder {
  color: #b3b3b3;
}

.clients-search button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-left: 1px solid #dfdfdf;
  background: #fafafa;
  color: #666666;
  padding: 0;
}

.clients-count {
  display: inline-grid;
  min-width: 30px;
  height: 20px;
  place-items: center;
  border: 1px solid #b6b6b6;
  border-radius: 999px;
  color: #666666;
  font-size: 13px;
  margin-left: 0;
  padding: 0 7px;
}

.clients-count-label {
  margin-left: 5px;
  color: #5f5f5f;
}

.clients-nebula-toggle {
  display: inline-grid;
  grid-template-columns: 42px max-content;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: #5f5f5f;
  font-size: 13px;
  line-height: 16px;
}

.clients-nebula-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.clients-nebula-toggle span {
  position: relative;
  width: 42px;
  height: 22px;
  border-radius: 999px;
  background: #35b600;
}

.clients-nebula-toggle span::after {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  content: "";
}

.clients-table-actions {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-left: auto;
}

.clients-export {
  border-color: #229300;
  gap: 4px;
  margin-left: 0;
  padding: 0 12px;
}

.clients-table-shell {
  overflow: auto;
  margin: 0;
  border: 1px solid #d8d8d8;
  background: #ffffff;
}

.clients-table {
  min-width: 1338px;
  width: 100%;
  border-collapse: collapse;
  color: #4d4d4d;
  font-size: 13px;
  table-layout: fixed;
}

.clients-table th {
  height: 30px;
  border: 0;
  background: #767676;
  color: #ffffff;
  font-weight: 700;
  padding: 0 9px;
  text-align: left;
  white-space: nowrap;
}

.clients-table td {
  height: 38px;
  border: 0;
  overflow: hidden;
  padding: 0 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clients-table tbody tr:nth-child(even) {
  background: #f2f2f2;
}

.clients-table tbody tr.is-highlighted {
  background: #fff3c7;
}

.clients-table a {
  color: #00a8c8;
  text-decoration: underline;
}

.clients-check {
  width: 36px;
  text-align: center;
}

.clients-check input {
  appearance: none;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid #8f8f8f;
  border-radius: 2px;
  background: #ffffff;
  vertical-align: middle;
}

.clients-table th .clients-check input,
.clients-table th.clients-check input {
  border-color: #ffffff;
}

.clients-check input:checked {
  border-color: #3c9f00;
  background: #3c9f00;
  box-shadow: inset 0 0 0 3px #ffffff;
}

.clients-table th:nth-child(2),
.clients-table td:nth-child(2) {
  width: 70px;
  text-align: center;
}

.clients-table th:nth-child(3),
.clients-table td:nth-child(3) {
  width: 130px;
}

.clients-table th:nth-child(4),
.clients-table td:nth-child(4),
.clients-table th:nth-child(5),
.clients-table td:nth-child(5),
.clients-table th:nth-child(6),
.clients-table td:nth-child(6),
.clients-table th:nth-child(7),
.clients-table td:nth-child(7),
.clients-table th:nth-child(8),
.clients-table td:nth-child(8) {
  width: 125px;
}

.clients-table th:nth-child(9),
.clients-table td:nth-child(9) {
  width: 150px;
}

.clients-table th:nth-child(10),
.clients-table td:nth-child(10) {
  width: 130px;
}

.clients-table th:nth-child(11),
.clients-table td:nth-child(11) {
  width: 160px;
}

.clients-table th:nth-child(12),
.clients-table td:nth-child(12) {
  width: 32px;
}

.client-status-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #73bf00;
}

.client-status-icon .lucide {
  stroke-width: 2.1;
}

.client-status-icon.is-warning {
  color: #ed2e5a;
}

.client-status-icon.is-wired-offline {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #c93b45;
}

.client-status-icon.is-wired-offline::before {
  position: absolute;
  top: -3px;
  left: 4px;
  width: 10px;
  height: 6px;
  border: 2px solid #c93b45;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  content: "";
}

.client-signal-cell {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
}

.client-signal-bars {
  display: inline-flex;
  height: 17px;
  align-items: flex-end;
  gap: 2px;
}

.client-signal-bars span {
  display: block;
  width: 3px;
  border-radius: 2px 2px 0 0;
  background: #54bd00;
}

.client-signal-bars span:nth-child(1) {
  height: 5px;
}

.client-signal-bars span:nth-child(2) {
  height: 8px;
}

.client-signal-bars span:nth-child(3) {
  height: 11px;
}

.client-signal-bars span:nth-child(4) {
  height: 14px;
}

.client-signal-bars span:nth-child(5) {
  height: 17px;
}

.client-signal-bars.is-fair span {
  background: #ff9a2d;
}

.client-signal-bars.is-fair span:nth-child(n + 4),
.client-signal-bars.is-poor span {
  background: #cfcfcf;
}

.clients-columns {
  width: 32px;
  padding-right: 5px;
  padding-left: 5px;
  text-align: center;
}

.clients-table th.clients-columns {
  text-align: center;
}

.clients-columns img {
  display: inline-block;
  width: 21px;
  height: 21px;
  filter: brightness(0) invert(1);
  opacity: 0.86;
  vertical-align: middle;
}

.clients-pagination {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 12px;
  color: #666666;
  font-size: 12px;
}

.clients-pagination button {
  height: 24px;
  min-width: 26px;
  padding: 0 7px;
}

.clients-pagination button:disabled {
  color: #cfcfcf;
  cursor: default;
}

.clients-pagination button.is-active {
  border-color: #249400;
  background: #249400;
  color: #ffffff;
}

.clients-pagination .clients-page-number {
  background: #ffffff;
  color: #555555;
}

.clients-pagination .clients-page-size {
  min-width: 64px;
  justify-content: space-between;
}

.clients-results {
  margin-left: auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
}

.breadcrumb-part {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-header {
  margin-bottom: 20px;
}

.page-title {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
}

.page-description {
  margin-top: 8px;
  color: var(--text-muted);
}

.tabs {
  display: flex;
  gap: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.admins-page {
  min-width: 920px;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  letter-spacing: normal;
  line-height: 13px;
  margin: 0 -10px 0;
  padding: 0 16px;
}

.admins-page .admin-breadcrumbs {
  display: block;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  color: #3c9f00;
  font-family: zyxel-nebula, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
}

.admins-page .admin-breadcrumbs li {
  display: inline;
  color: #3c9f00;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0;
  padding: 0;
}

.admins-page .admin-breadcrumbs li:not(:last-child)::after {
  color: #3c9f00;
  content: ">";
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  margin: 0 3px;
}

.admins-page .admin-breadcrumbs a {
  color: #00b2ff;
  margin: 0 4px;
  text-decoration: underline;
}

.custom-role-page .admin-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 1px 0 0;
  color: #3c9f00;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
}

.custom-role-page .admin-breadcrumbs a {
  color: #00a8ff;
  text-decoration: underline;
}

.admin-page-title {
  margin: 0 0 10px;
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 100;
  line-height: 18px;
}

.admin-tabs {
  display: flex;
  height: 48px;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid #d6d6d6;
}

.admin-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 144px;
  height: 48px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 13px;
  padding: 0 14px;
  text-align: center;
}

.admin-tab.is-disabled {
  color: #4d4d4d;
  cursor: not-allowed;
}

.admin-tab.has-tooltip::after {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 50%;
  display: none;
  width: max-content;
  max-width: 220px;
  transform: translateX(-50%);
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  color: #4d4d4d;
  content: attr(data-tooltip);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  padding: 9px 12px;
  pointer-events: none;
  white-space: nowrap;
}

.admin-tab.has-tooltip::before {
  position: absolute;
  z-index: 21;
  top: calc(100% - 1px);
  left: 50%;
  display: none;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: #ffffff;
  content: "";
  pointer-events: none;
}

.admin-tab.has-tooltip:hover::after,
.admin-tab.has-tooltip:hover::before,
.admin-tab.has-tooltip:focus-visible::after,
.admin-tab.has-tooltip:focus-visible::before {
  display: block;
}

.admin-tab-premium-icon {
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
}

.admin-tab-premium-icon .monitor-premium-diamond {
  width: 16px;
  height: 16px;
}

.admin-tab.is-active {
  border-bottom-color: #147400;
  color: #4d4d4d;
}

.admin-management-panel {
  border: 1px solid #e6e6e6;
  background: #fcfcfc;
  margin-top: -1px;
  padding: 16px 0;
}

.admin-subtabs {
  display: flex;
  height: 31px;
  align-items: stretch;
  gap: 16px;
  border-bottom: 1px solid #e6e6e6;
  margin: 0 16px;
  padding-left: 0;
}

.admin-subtab {
  min-width: 0;
  height: 31px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 13px;
  padding: 8px 16px;
  text-align: center;
}

.admin-subtab.is-active {
  border-bottom-color: #147400;
  color: #149000;
}

.admin-table-shell {
  border: 1px solid #d9d9d9;
  background: #fcfcfc;
  margin: -1px 16px 0;
  padding: 16px;
}

.org-admin-table-shell {
  border: 0;
  margin-top: 0;
  padding: 0;
}

.msp-org-admin-table-shell {
  border: 1px solid #d9d9d9;
  margin: -1px 16px 0;
  padding: 16px;
}

.site-group-table-shell {
  margin-top: 0;
}

.admin-toolbar {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.admin-toolbar-left,
.admin-toolbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.admin-action-button,
.admin-create-button {
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 1px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  padding: 0 8px;
  white-space: nowrap;
}

.admin-action-button {
  border: 1px solid #e5e5e5;
  background: #e5e5e5;
  color: #b3b3b3;
}

.admin-action-button.is-enabled {
  border-color: #3c9f00;
  background: #ffffff;
  color: #3c9f00;
  cursor: pointer;
}

.admin-action-button.is-enabled:hover {
  background: #eef8e8;
}

.admin-action-button.is-primary.is-enabled {
  border-color: #3c9f00;
  background: #3c9f00;
  color: #ffffff;
}

.admin-action-button.is-primary.is-enabled:hover {
  border-color: #338c00;
  background: #338c00;
}

.admin-action-button.is-danger.is-enabled {
  border-color: #ff2837;
  background: #ff2837;
  color: #ffffff;
}

.admin-action-button.is-danger.is-enabled:hover {
  border-color: #e02030;
  background: #e02030;
}

.admin-action-button.is-disabled,
.admin-action-button:disabled {
  border-color: #eeeeee;
  background: #e5e5e5;
  color: #b3b3b3;
  cursor: not-allowed;
  opacity: 1;
}

.admin-create-button {
  border: 1px solid #3c9f00;
  background: #3c9f00;
  color: #ffffff;
}

.admin-create-button:hover {
  background: #338c00;
}

.admin-filter-segment {
  display: inline-flex;
  height: 30px;
}

.admin-filter-segment button {
  height: 30px;
  min-width: 34px;
  border: 1px solid #3c9f00;
  border-left: 0;
  border-right: 1px solid #3c9f00;
  background: #fcfcfc;
  color: #3c9f00;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  padding: 0 8px;
}

.admin-filter-segment button:first-child {
  border-left: 1px solid #3c9f00;
}

.admin-filter-segment button:last-child {
  border-right: 1px solid #3c9f00;
}

.admin-filter-segment button.is-active {
  background: #3c9f00;
  color: #ffffff;
}

.admin-search {
  display: inline-flex;
  width: 173px;
  height: 30px;
  align-items: center;
  gap: 5px;
  border: 1px solid #d9d9d9;
  background: #ffffff;
  color: #b3b3b3;
  padding: 0 6px;
}

.admin-search input {
  height: 24px;
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 24px;
  outline: 0;
  padding: 0 4px;
}

.admin-search input::placeholder {
  color: #b3b3b3;
}

.admin-search-filter {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 30px;
}

.admin-search-filter .admin-search {
  position: relative;
  width: 245px;
  border-right: 0;
  border-radius: 3px 0 0 3px;
}

.admin-search-filter .admin-search.has-clear-all input {
  padding-right: 24px;
}

.admin-search-clear-all {
  position: absolute;
  top: 50%;
  right: 8px;
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #9a9a9a;
  padding: 0;
  transform: translateY(-50%);
}

.admin-search-clear-all .lucide {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.admin-search-clear-all:hover {
  color: #666666;
}

.admin-search-panel-anchor {
  position: relative;
  height: 30px;
}

.admin-search-panel-trigger {
  display: grid;
  width: 29px;
  height: 30px;
  place-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 0 3px 3px 0;
  background: #f7f7f7;
  color: #555555;
  padding: 0;
}

.admin-search-panel-trigger .ncc-dropdown-arrow {
  margin-left: 0;
}

.admin-search-panel-trigger[aria-expanded="true"] .ncc-dropdown-arrow {
  border-top: 0;
  border-bottom: 5px solid #555555;
  transform: translateY(-1px);
}

.admin-search-panel {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  z-index: 70;
  width: 276px;
  border: 1px solid #d9d9d9;
  border-radius: 0 0 4px 4px;
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  padding: 14px 17px 18px;
}

.admin-search-panel-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #5a5a5a;
  font-size: 14px;
  line-height: 18px;
}

.admin-search-panel-field + .admin-search-panel-field {
  margin-top: 12px;
}

.admin-search-panel-text-control,
.admin-search-panel-select {
  position: relative;
}

.admin-search-panel-field input,
.admin-search-panel-select-trigger {
  display: inline-flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 18px;
  outline: 0;
  padding: 0 12px;
}

.admin-search-panel-field input {
  height: 36px;
  justify-content: flex-start;
}

.admin-search-panel-select-trigger {
  position: relative;
  align-items: flex-start;
  color: #b3b3b3;
  cursor: default;
  gap: 8px;
  padding: 5px 34px 5px 12px;
}

.admin-search-panel-text-control.has-clear input {
  padding-right: 34px;
}

.admin-search-panel-select.has-clear .admin-search-panel-select-trigger {
  padding-right: 58px;
}

.admin-search-panel-select-trigger span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-search-panel-tags {
  display: inline-flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  overflow: visible;
}

.admin-search-panel-tag {
  display: inline-flex;
  max-width: 122px;
  height: 24px;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 2px;
  background: #4da3ff;
  color: #ffffff;
  font-size: 12px;
  line-height: 18px;
  padding: 1px 5px 1px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-search-panel-tag > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-search-panel-tag-remove {
  display: inline-grid;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #4da3ff;
  padding: 0;
}

.admin-search-panel-tag-remove .lucide {
  width: 10px;
  height: 10px;
  stroke-width: 3;
}

.admin-search-panel-any {
  color: #b3b3b3;
  line-height: 24px;
}

.admin-search-panel-clear {
  position: absolute;
  top: 10px;
  right: 30px;
  z-index: 2;
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #777777;
  padding: 0;
}

.admin-search-panel-select .admin-search-panel-clear {
  right: 34px;
}

.admin-search-panel-text-control .admin-search-panel-clear {
  right: 9px;
}

.admin-search-panel-clear .lucide {
  width: 14px;
  height: 14px;
  stroke-width: 2.3;
}

.admin-search-panel-clear:hover {
  color: #3c9f00;
}

.admin-search-panel-select-trigger .ncc-dropdown-arrow {
  position: absolute;
  top: 15px;
  right: 12px;
  margin-left: 0;
  border-left-width: 5px;
  border-right-width: 5px;
  border-top-width: 5px;
  transform: none;
}

.admin-search-panel-select-trigger[aria-expanded="true"] .ncc-dropdown-arrow {
  border-top: 0;
  border-bottom: 5px solid #555555;
  transform: translateY(-2px);
}

.admin-search-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 80;
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
  border: 1px solid #d9d9d9;
  background: #ffffff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.14);
}

.admin-search-panel-value-menu {
  min-width: 100%;
}

.admin-search-menu-item {
  display: block;
  width: 100%;
  border: 0;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 18px;
  padding: 6px 10px;
  text-align: left;
}

.admin-search-menu-item:hover,
.admin-search-menu-item.is-selected {
  background: #e6f4ff;
}

.item-count-badge {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border: 1px solid #8c8c8c;
  border-radius: 50%;
  background: #ffffff;
  color: #666666;
  font-size: 12px;
  font-weight: 500;
}

.item-count-label {
  color: #4d4d4d;
  font-size: 14px;
  white-space: nowrap;
}

.export-button {
  padding-right: 8px;
}

.admin-table-wrap {
  overflow: auto;
}

.admin-table {
  width: 100%;
  min-width: 1160px;
  border-collapse: collapse;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 20px;
  table-layout: fixed;
}

.admin-table th {
  height: 28px;
  background: #666666;
  color: #ffffff;
  font-weight: 700;
  line-height: 13px;
  padding: 0 8px;
  text-align: left;
}

.admin-table td {
  height: 32px;
  overflow: hidden;
  padding: 0 8px;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.admin-table tbody tr:nth-child(even) {
  background: #eeeeee;
}

.admin-table tbody tr:hover {
  background: #fff6cc;
}

.admin-table tbody tr.is-selected {
  background: #fff6cc;
}

.admin-table tbody tr.admin-detail-row {
  background: #ffffff;
}

.admin-table tbody tr.admin-detail-row:hover {
  background: #fff6cc;
}

.admin-table tbody tr.admin-detail-row td {
  color: #5a5a5a;
}

.admin-table th:nth-child(2),
.admin-table td:nth-child(2) {
  width: 16%;
}

.admin-table th:nth-child(3),
.admin-table td:nth-child(3) {
  width: 16%;
}

.admin-table th:nth-child(4),
.admin-table td:nth-child(4) {
  width: 10%;
}

.admin-table.has-expanded-team-column {
  min-width: 1260px;
}

.admin-table.has-expanded-team-column th:nth-child(3),
.admin-table.has-expanded-team-column td:nth-child(3) {
  width: 15%;
}

.admin-table.has-expanded-team-column th:nth-child(4),
.admin-table.has-expanded-team-column td:nth-child(4) {
  width: 30%;
}

.admin-table.has-expanded-team-column th:nth-child(7),
.admin-table.has-expanded-team-column td:nth-child(7) {
  width: 9%;
}

.admin-table th:nth-child(5),
.admin-table td:nth-child(5),
.admin-table th:nth-child(6),
.admin-table td:nth-child(6) {
  width: 9%;
}

.admin-table th:nth-child(7),
.admin-table td:nth-child(7) {
  width: 11%;
}

.admin-table th:nth-child(8),
.admin-table td:nth-child(8) {
  width: 10%;
}

.admin-table th:nth-child(9),
.admin-table td:nth-child(9) {
  width: 8%;
}

.admin-table th:nth-child(10),
.admin-table td:nth-child(10) {
  width: 8%;
}

.org-admin-table {
  min-width: 980px;
}

.org-admin-table th:nth-child(2),
.org-admin-table td:nth-child(2) {
  width: 24%;
}

.org-admin-table th:nth-child(3),
.org-admin-table td:nth-child(3) {
  width: 24%;
}

.org-admin-table th:nth-child(4),
.org-admin-table td:nth-child(4) {
  width: 16%;
  overflow: visible;
}

.org-admin-table th:nth-child(5),
.org-admin-table td:nth-child(5) {
  width: 18%;
}

.org-admin-table th:nth-child(6),
.org-admin-table td:nth-child(6) {
  width: 12%;
}

.org-admin-table th:nth-child(7),
.org-admin-table td:nth-child(7) {
  width: 12%;
}

.org-admin-table.is-msp-org-admin-table {
  min-width: 1080px;
}

.org-admin-table.is-msp-org-admin-table th:nth-child(4),
.org-admin-table.is-msp-org-admin-table td:nth-child(4) {
  width: 14%;
  overflow: hidden;
}

.org-admin-table.is-msp-org-admin-table th:nth-child(5),
.org-admin-table.is-msp-org-admin-table td:nth-child(5) {
  width: 15%;
}

.org-admin-table.is-msp-org-admin-table th:nth-child(6),
.org-admin-table.is-msp-org-admin-table td:nth-child(6) {
  width: 16%;
}

.org-admin-table.is-msp-org-admin-table th:nth-child(7),
.org-admin-table.is-msp-org-admin-table td:nth-child(7) {
  width: 12%;
}

.site-group-table {
  min-width: 760px;
}

.site-group-table th:nth-child(2),
.site-group-table td:nth-child(2) {
  width: 34%;
}

.site-group-table th:nth-child(3),
.site-group-table td:nth-child(3) {
  width: 58%;
}

.site-group-check-col {
  width: 44px;
  text-align: center;
}

.site-group-check-col input {
  width: 15px;
  height: 15px;
  margin: 0;
  vertical-align: middle;
  accent-color: #ffffff;
}

.site-group-search {
  width: 230px;
}

.site-group-name-cell {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.site-group-name-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-group-name-cell.is-group .site-group-name-text {
  font-weight: 700;
}

.site-group-type-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.admin-select-col {
  width: 80px;
  white-space: nowrap;
}

.admin-menu-col {
  width: 28px;
  padding-right: 4px;
  text-align: right;
}

.org-admin-table .admin-menu-col {
  width: 28px;
  padding-right: 4px;
  text-align: right;
}

.admin-select-col input {
  width: 15px;
  height: 15px;
  margin: 0 3px 0 8px;
  vertical-align: middle;
  accent-color: #ffffff;
}

.row-expander {
  display: inline-grid;
  width: 26px;
  height: 24px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #666666;
  padding: 0;
  vertical-align: middle;
}

.row-expander .lucide {
  stroke-width: 1.7;
}

.row-expander.is-static {
  color: #8a8a8a;
  cursor: default;
}

.admin-summary-toggle {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  text-align: left;
}

.admin-summary-toggle:hover {
  color: #00a8ff;
  text-decoration: underline;
}

.admin-team-summary-cell {
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-team-list {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 6px;
  min-width: 0;
  white-space: nowrap;
}

.admin-team-tags {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.admin-team-list > .admin-team-tags {
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-team-list.is-expanded > .admin-team-tags {
  overflow: visible;
}

.admin-team-more {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #00a8ff;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  padding: 0;
  white-space: nowrap;
}

.admin-team-more:hover {
  text-decoration: underline;
}

.invalid-role-warning {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  color: #f39800;
  vertical-align: middle;
  z-index: 5;
}

.invalid-role-warning-icon {
  display: block;
  width: 16px;
  height: 16px;
}

.invalid-role-tooltip {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  z-index: 140;
  display: none;
  width: 390px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.24);
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 12px;
  text-align: left;
  transform: translateX(-50%);
  white-space: normal;
}

.invalid-role-tooltip::before {
  position: absolute;
  left: 50%;
  top: -9px;
  width: 16px;
  height: 16px;
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  background: #ffffff;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.invalid-role-warning:hover .invalid-role-tooltip,
.invalid-role-warning:focus .invalid-role-tooltip {
  display: block;
}

.admin-name-cell {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.admin-row-type-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-right: 8.6px;
}

.admin-name-cell strong {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-name-cell strong.is-team {
  font-weight: 700;
}

.admin-team-badge,
.admin-scope-badge {
  display: inline-flex;
  height: 17px;
  align-items: center;
  border-radius: 2px;
  color: #ffffff;
  line-height: 17px;
  padding: 0 5px;
}

.admin-team-badge {
  background: #66d8a0;
}

.admin-scope-badge {
  background: #ffa43a;
}

.role-panel {
  border: 1px solid #e6e6e6;
  background: #fcfcfc;
  margin-top: -1px;
  padding: 16px 0;
}

.role-type-tabs {
  display: flex;
  height: 31px;
  align-items: stretch;
  gap: 16px;
  border-bottom: 1px solid #e6e6e6;
  margin: 0 16px;
}

.role-type-tab {
  min-width: 0;
  height: 31px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 13px;
  padding: 8px 16px;
}

.role-type-tab.is-active {
  border-bottom-color: #147400;
  color: #149000;
}

.role-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 16px;
}

.role-toolbar-left,
.role-toolbar-center,
.role-toolbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.role-toolbar-left,
.role-toolbar-right {
  min-height: 30px;
}

.role-toolbar-left {
  flex: 0 0 auto;
}

.role-toolbar-center {
  flex: 1 1 auto;
}

.role-toolbar-right {
  flex: 0 0 auto;
  margin-left: auto;
}

.role-search {
  width: 230px;
}

.role-content-frame.is-msp-role .role-action-row {
  align-items: flex-start;
}

.role-content-frame.is-msp-role .role-toolbar-left {
  display: none;
}

.role-content-frame.is-msp-role .role-toolbar-center {
  flex: 0 0 auto;
}

.role-license-note {
  margin: -8px 0 12px;
  color: #f28c00;
  font-size: 13px;
  line-height: 18px;
}

.role-content-frame {
  border: 1px solid #e6e6e6;
  background: #fcfcfc;
  margin: -1px 16px 0;
  padding: 16px;
}

.org-role-content-frame {
  border: 0;
  margin: 0 16px;
  padding: 0;
}

.role-content-frame.is-readonly {
  padding-top: 16px;
}

.nebula-green-button,
.nebula-danger-button {
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.2px;
  padding: 0 8px;
  box-shadow: none;
  white-space: nowrap;
}

.nebula-green-button {
  border: 1px solid #3c9f00;
  background: #3c9f00;
  color: #ffffff;
}

.nebula-green-button:hover {
  background: #338c00;
}

.nebula-danger-button {
  min-width: 80px;
  border: 1px solid #ff2837;
  background: #ff2837;
  color: #ffffff;
}

.nebula-danger-button:hover {
  border-color: #e02030;
  background: #e02030;
}

.nebula-danger-button.is-disabled,
.nebula-danger-button:disabled {
  border-color: #eeeeee;
  background: #e5e5e5;
  color: #b3b3b3;
  cursor: not-allowed;
  opacity: 1;
}

.role-table-wrap {
  overflow: auto;
  border: 0;
  margin: 0;
}

.role-content-frame.has-actions .role-table-wrap {
  margin-top: 0;
}

.role-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  letter-spacing: normal;
  line-height: 20px;
  table-layout: fixed;
}

.role-table th {
  height: 28px;
  background: #666666;
  color: #ffffff;
  font-weight: 700;
  line-height: 13px;
  padding: 0 8px;
  text-align: left;
}

.role-table th:first-child {
  padding-left: 34px;
}

.role-table th:nth-child(1),
.role-table td:nth-child(1) {
  width: 18%;
}

.role-table th:nth-child(2),
.role-table td:nth-child(2) {
  width: 66%;
}

.role-table th:nth-child(3),
.role-table td:nth-child(3) {
  width: 16%;
}

.role-table td {
  height: 32px;
  padding: 0 8px;
  border: 0;
  font-weight: 100;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.role-table tbody tr:nth-child(even) {
  background: #f0f0f0;
}

.role-table tbody tr.is-selected {
  background: #fff6cc;
}

.role-table tbody tr.is-clickable {
  cursor: pointer;
}

.role-table tbody tr.is-clickable:hover {
  background: #eaf7ff;
}

.role-table tbody tr.is-selected.is-clickable:hover {
  background: #fff0ad;
}

.role-cell {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.role-name-with-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.role-msp-tag {
  display: inline-flex;
  min-width: 28px;
  height: 16px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 3px;
  background: #7b3ff2;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  padding: 0 5px;
}

.role-cell input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: #ffffff;
}

.role-checkbox-spacer {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.permission-link {
  border: 0;
  background: transparent;
  color: #00a8ff;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  text-decoration: underline;
}

.permission-detail-overlay {
  background: rgba(0, 0, 0, 0.32);
}

.permission-detail-dialog {
  width: 640px;
  height: min(520px, calc(100vh - 72px));
  max-height: calc(100vh - 72px);
  border-color: #d8d8d8;
  border-radius: 2px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.permission-detail-dialog.is-msp-role {
  height: min(720px, calc(100vh - 36px));
  max-height: calc(100vh - 36px);
}


.modal.role-template-warning-dialog {
  width: min(480px, calc(100vw - 44px));
  max-height: calc(100vh - 72px);
  border-color: #d8d8d8;
  border-radius: 2px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.role-template-warning-header {
  display: flex;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 0 24px;
}

.role-template-warning-header h1 {
  margin: 0;
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 400;
}

.role-template-warning-content {
  min-height: 96px;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 20px;
  padding: 24px 24px 18px;
}

.role-template-warning-footer {
  display: flex;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid #e5e5e5;
  background: #fcfcfc;
  padding: 0 18px;
}

.role-template-warning-footer .dialog-cancel-button {
  border: 1px solid #d9d9d9;
  background: #ffffff;
  color: #4d4d4d;
}

.modal-overlay.delete-role-overlay {
  background: rgba(0, 0, 0, 0.32);
}

.modal-overlay.payg-billing-info-overlay {
  background: rgba(0, 0, 0, 0.32);
}

.modal.payg-billing-info-dialog {
  width: min(504px, calc(100vw - 44px));
  max-height: calc(100vh - 48px);
  border-color: #d8d8d8;
  border-radius: 4px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.payg-billing-info-header {
  display: flex;
  min-height: 72px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 0 24px 0 26px;
}

.payg-billing-info-header h1 {
  margin: 0;
  color: #4d4d4d;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

.payg-billing-info-close {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  cursor: pointer;
  padding: 0;
}

.payg-billing-info-close:hover {
  color: #222222;
}

.payg-billing-info-close:focus-visible {
  outline: 2px solid #00b2ff;
  outline-offset: 2px;
}

.payg-billing-info-content {
  overflow-y: auto;
  background: #ffffff;
  color: #5b5b5b;
  font-size: 16px;
  font-weight: 100;
  line-height: 27px;
  padding: 27px 26px 12px;
}

.payg-billing-info-content p {
  margin: 0 0 18px;
}

.payg-billing-info-footer {
  display: flex;
  height: 72px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #e5e5e5;
  background: #fcfcfc;
  padding: 0 26px;
}

.payg-billing-info-footer .license-ncc-button {
  min-width: 60px;
}

@media (max-width: 560px) {
  .payg-billing-info-header {
    min-height: 58px;
    flex-basis: 58px;
    padding: 0 16px;
  }

  .payg-billing-info-header h1 {
    font-size: 19px;
  }

  .payg-billing-info-content {
    font-size: 14px;
    line-height: 23px;
    padding: 20px 16px 6px;
  }

  .payg-billing-info-footer {
    height: 58px;
    flex-basis: 58px;
    padding: 0 16px;
  }
}

.modal.delete-role-dialog {
  width: min(640px, calc(100vw - 44px));
  max-height: calc(100vh - 74px);
  border-color: #d8d8d8;
  border-radius: 2px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.delete-role-header {
  display: flex;
  height: 68px;
  flex: 0 0 68px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 0 20px 0 22px;
}

.delete-role-header h1 {
  margin: 0;
  color: #4d4d4d;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.delete-role-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  padding: 0;
}

.delete-role-close:hover {
  background: #eeeeee;
}

.delete-role-close .lucide {
  stroke-width: 1.5;
}

.delete-role-content {
  overflow: auto;
  background: #ffffff;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 24px 18px 16px 20px;
}

.delete-role-content p {
  margin: 0 0 12px;
}

.delete-role-content a {
  color: #00a8ff;
  text-decoration: underline;
}

.delete-role-table-wrap {
  margin-top: 14px;
  border: 1px solid #d6d6d6;
}

.delete-role-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
}

.delete-role-table th {
  height: 34px;
  background: #666666;
  color: #ffffff;
  font-weight: 500;
  padding: 0 14px;
  text-align: left;
}

.delete-role-table th:first-child,
.delete-role-table td:first-child {
  width: 38%;
}

.delete-role-table th:nth-child(2),
.delete-role-table td:nth-child(2) {
  width: 34%;
}

.delete-role-table td {
  height: 34px;
  color: #555555;
  padding: 0 14px;
  vertical-align: middle;
}

.delete-role-table tr.is-delete-target td {
  background: #fff6f6;
}

.delete-role-table tbody tr:nth-child(even) {
  background: #eeeeee;
}

.delete-role-table tbody tr.is-delete-target:nth-child(even) {
  background: #fff0f0;
}

.delete-role-name-cell {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.delete-role-name-cell .is-team {
  font-weight: 500;
}

.delete-role-row-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  object-fit: contain;
}

.delete-role-value-cell {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.delete-role-target-badge {
  display: inline-flex;
  height: 20px;
  align-items: center;
  border: 1px solid #ff2837;
  border-radius: 2px;
  color: #ff2837;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 0 6px;
  white-space: nowrap;
}

.delete-role-footer {
  display: flex;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 0 16px;
}

.modal-overlay.limited-visibility-overlay {
  background: rgba(0, 0, 0, 0.32);
}

.modal.limited-visibility-dialog {
  width: min(450px, calc(100vw - 32px));
  border-radius: 2px;
  overflow: hidden;
}

.limited-visibility-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  min-height: 50px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 0 10px 0 16px;
}

.limited-visibility-header h1 {
  margin: 0;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.limited-visibility-close {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #555555;
  padding: 0;
}

.limited-visibility-close:hover {
  background: #eeeeee;
}

.limited-visibility-content {
  background: #ffffff;
  color: #666666;
  font-size: 13px;
  line-height: 20px;
  padding: 16px 16px 18px;
}

.limited-visibility-content p {
  margin: 0;
}

.limited-visibility-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: #555555;
  font-size: 13px;
  line-height: 18px;
}

.limited-visibility-checkbox input {
  width: 15px;
  height: 15px;
  margin: 0;
}

.limited-visibility-footer {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 0 12px;
}

.permission-detail-header {
  display: flex;
  height: 64px;
  flex: 0 0 64px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 0 20px 0 22px;
}

.permission-detail-header h1 {
  margin: 0;
  color: #4d4d4d;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.permission-detail-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #555555;
  padding: 0;
}

.permission-detail-close:hover {
  background: #eeeeee;
}

.permission-detail-content {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 13px;
}

.permission-detail-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 12px 31px 8px 16px;
}

.permission-detail-fields.is-single-field {
  grid-template-columns: minmax(0, 1fr);
}

.permission-detail-field {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.permission-detail-field span {
  color: #666666;
  font-size: 13px;
}

.permission-detail-field input,
.permission-detail-field select {
  width: 100%;
  height: 28px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 13px;
  padding: 0 8px;
}

.permission-detail-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width=%278%27 height=%275%27 viewBox=%270 0 8 5%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 0h8L4 5z%27 fill=%27%23555555%27/%3E%3C/svg%3E");
  background-position: right 11px center;
  background-repeat: no-repeat;
  background-size: 8px 5px;
  padding-right: 28px;
}

.permission-detail-field input {
  background: #f0f0f0;
  color: #a0a0a0;
}

.permission-detail-toolbar {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  padding: 0 31px 10px 16px;
}

.permission-detail-filter-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 13px;
}

.permission-detail-filter-field > span:first-child {
  width: 56px;
  flex: 0 0 56px;
  line-height: 28px;
  white-space: nowrap;
}

.permission-detail-search-field {
  display: flex;
  width: 220px;
  height: 28px;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  background: #fcfcfc;
  color: #c9c9c9;
  padding: 0 8px;
}

.permission-detail-search-field input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-size: 13px;
  outline: 0;
}

.permission-detail-search-field input::placeholder {
  color: #b3b3b3;
}

.permission-detail-assigned-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  margin-left: auto;
  color: #111111;
  white-space: nowrap;
}

.permission-detail-assigned-label {
  color: #111111;
  font-size: 13px;
  line-height: 28px;
}

.permission-detail-notice {
  margin: 0 31px 10px 16px;
  border: 1px solid #e0d0a1;
  border-radius: 2px;
  background: #fff9e8;
  color: #6c550f;
  font-size: 13px;
  line-height: 18px;
  padding: 8px 10px;
}

.permission-detail-table-shell {
  min-height: 0;
  flex: 1;
  overflow: auto;
  padding: 0 16px;
  scrollbar-gutter: stable;
}

.permission-detail-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 13px;
}

.permission-detail-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 24px;
  background: #777777;
  color: #ffffff;
  font-weight: 400;
  padding: 0 12px;
  text-align: left;
}

.permission-detail-table th:nth-child(1),
.permission-detail-table td:nth-child(1) {
  width: 60%;
}

.permission-detail-table th:nth-child(2),
.permission-detail-table td:nth-child(2),
.permission-detail-table th:nth-child(3),
.permission-detail-table td:nth-child(3),
.permission-detail-table th:nth-child(4),
.permission-detail-table td:nth-child(4) {
  width: 13.3333%;
  text-align: center;
}

.permission-detail-table td {
  height: 26px;
  border-bottom: 1px solid #eeeeee;
  padding: 0 12px;
  vertical-align: middle;
}

.permission-detail-table tbody tr:nth-child(even) {
  background: #f5f5f5;
}

.permission-detail-tree-cell {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.permission-detail-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.permission-detail-toggle:hover span,
.permission-detail-toggle:hover strong {
  color: #2f2f2f;
}

.permission-detail-toggle:focus {
  outline: 1px solid #00a8ff;
  outline-offset: 2px;
}

.permission-detail-caret {
  width: 0;
  height: 0;
  flex: 0 0 auto;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #3c9f00;
  transition: transform 120ms ease;
}

.permission-detail-caret.is-expanded {
  transform: rotate(90deg);
}

.permission-detail-tree-cell.is-feature-group {
  padding-left: 41px;
}

.permission-detail-tree-cell.is-feature {
  display: inline-grid;
  gap: 1px;
  padding-left: 58px;
}

.permission-detail-tree-cell.is-feature.is-group-child {
  padding-left: 82px;
}

.permission-detail-tree-cell.is-feature small {
  display: block;
  padding-left: 12px;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.permission-detail-feature-row.has-note td {
  height: 44px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.permission-detail-category-row strong {
  font-weight: 700;
}

.permission-detail-action-cell {
  color: #269d00;
  text-align: center;
}

.permission-detail-action-cell .lucide {
  stroke-width: 2.4;
}

.permission-detail-footer {
  display: flex;
  height: 45px;
  flex: 0 0 45px;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  border-top: 1px solid #e2e2e2;
  background: #ffffff;
  padding: 0 12px;
}

.tab {
  min-width: 64px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #777777;
  padding: 0 0 12px;
  text-align: center;
}

.tab.is-active {
  border-bottom-color: var(--green);
  color: var(--green);
}

.module-stack {
  display: grid;
  gap: 16px;
}

.enterprise-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
}

.device-access-card {
  margin-top: 12px;
}

.device-access-toolbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
  padding: 8px 12px;
}

.device-access-search {
  display: inline-flex;
  width: 220px;
  height: 30px;
  align-items: center;
  gap: 8px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  color: #9a9a9a;
  padding: 0 8px;
}

.device-access-table {
  width: 100%;
  border-collapse: collapse;
  color: #4d4d4d;
  font-size: 12px;
  line-height: 13px;
}

.device-access-table th {
  height: 25px;
  background: #666666;
  color: #ffffff;
  font-weight: 500;
  padding: 0 10px;
  text-align: left;
}

.device-access-table td {
  height: 32px;
  padding: 0 10px;
}

.device-access-table tbody tr:nth-child(even) {
  background: #f0f0f0;
}

.device-access-table a {
  color: #0099ff;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 50%;
  background: #45b500;
}

.summary-report-page {
  min-height: 100%;
  color: #4d4d4d;
}

.summary-report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.summary-report-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2c9a15;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.summary-report-breadcrumbs a {
  color: #0099ff;
}

.summary-report-title {
  margin: 6px 0 0;
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.summary-report-panel {
  border: 1px solid #d7d7d7;
  background: #ffffff;
}

.summary-report-toolbar {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #d7d7d7;
  background: #fbfbfb;
  padding: 10px 14px;
}

.summary-report-control-group,
.summary-report-actions {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.summary-report-field {
  display: grid;
  gap: 4px;
  color: #666666;
  font-size: 12px;
  line-height: 14px;
}

.summary-report-field button {
  display: inline-flex;
  min-width: 150px;
  height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  color: #4d4d4d;
  padding: 0 9px;
}

.summary-report-button {
  display: inline-flex;
  height: 30px;
  align-items: center;
  gap: 6px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  color: #666666;
  padding: 0 10px;
}

.summary-report-content {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.summary-report-card {
  border: 1px solid #dfdfdf;
  background: #ffffff;
}

.summary-report-card-title {
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e5e5e5;
  background: #fafafa;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 600;
  padding: 0 12px;
}

.summary-report-denied-body {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
}

.summary-report-denied-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  background: #f5f5f5;
  color: #777777;
}

.summary-report-denied-body h2 {
  margin: 0 0 6px;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 600;
}

.summary-report-denied-body p {
  max-width: 640px;
  margin: 0;
  color: #777777;
  font-size: 13px;
  line-height: 19px;
}

.summary-report-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border-top: 1px solid #ededed;
  padding: 14px;
}

.summary-report-placeholder-grid div {
  height: 74px;
  background:
    linear-gradient(90deg, rgba(245, 245, 245, 0.88), rgba(250, 250, 250, 0.88)),
    repeating-linear-gradient(90deg, #f2f2f2 0 12px, #ffffff 12px 24px);
}

.summary-report-access-badge {
  display: inline-flex;
  height: 18px;
  align-items: center;
  margin-left: auto;
  border-radius: 2px;
  background: #43b000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  padding: 0 6px;
}

.summary-ap-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #e5e5e5;
}

.summary-ap-metrics div {
  min-height: 72px;
  border-right: 1px solid #eeeeee;
  padding: 13px 16px;
}

.summary-ap-metrics div:last-child {
  border-right: 0;
}

.summary-ap-metrics strong {
  display: block;
  color: #333333;
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
}

.summary-ap-metrics span {
  color: #777777;
  font-size: 12px;
}

.summary-ap-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  gap: 14px;
  padding: 14px;
}

.summary-ap-chart {
  min-height: 190px;
  border: 1px solid #e3e3e3;
  background: #fcfcfc;
  padding: 16px 16px 10px;
}

.summary-ap-chart-bars {
  display: flex;
  height: 130px;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #d8d8d8;
}

.summary-ap-chart-bars span {
  width: 100%;
  min-width: 18px;
  height: var(--h);
  background: #7ac843;
}

.summary-ap-chart-axis {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 8px;
  color: #777777;
  font-size: 11px;
  text-align: center;
}

.summary-ap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 13px;
}

.summary-ap-table th {
  height: 25px;
  background: #666666;
  color: #ffffff;
  font-weight: 500;
  padding: 0 10px;
  text-align: left;
}

.summary-ap-table td {
  height: 32px;
  padding: 0 10px;
}

.summary-ap-table tbody tr:nth-child(even) {
  background: #f0f0f0;
}

.summary-ap-table a {
  color: #0099ff;
}

.access-point-report-toolbar .summary-report-field button {
  min-width: 176px;
}

.ap-report-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
}

.ap-report-card {
  min-width: 0;
  border: 1px solid #dfdfdf;
  background: #ffffff;
}

.ap-report-health-grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 190px;
  padding: 18px;
}

.ap-report-ring {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 55%, transparent 56%),
    conic-gradient(#6ac13b var(--progress), #e2e2e2 0);
}

.ap-report-ring div {
  display: grid;
  place-items: center;
  color: #777777;
  font-size: 12px;
  line-height: 16px;
}

.ap-report-ring strong {
  color: #4d4d4d;
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
}

.ap-report-health-list {
  display: grid;
  gap: 12px;
}

.ap-report-health-list div {
  display: grid;
  grid-template-columns: 16px 36px minmax(0, 1fr);
  align-items: center;
  color: #777777;
  font-size: 12px;
}

.ap-report-health-list strong {
  color: #4d4d4d;
  font-size: 20px;
  font-weight: 500;
}

.ap-report-health-list em {
  font-style: normal;
}

.ap-report-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #45b500;
}

.ap-report-dot.warning {
  background: #ffb000;
}

.ap-report-dot.danger {
  background: #ff3340;
}

.ap-report-traffic-card,
.ap-report-client-card {
  min-height: 228px;
}

.ap-report-traffic-total,
.ap-report-client-total {
  color: #4d4d4d;
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
  padding: 15px 16px 0;
}

.ap-report-traffic-chart {
  display: flex;
  height: 118px;
  align-items: end;
  gap: 10px;
  margin: 10px 16px 0;
  border-bottom: 1px solid #d8d8d8;
}

.ap-report-traffic-chart span {
  width: 100%;
  min-width: 18px;
  height: var(--h);
  background: #70c63a;
}

.ap-report-axis {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin: 8px 16px 0;
  color: #777777;
  font-size: 11px;
  text-align: center;
}

.ap-report-client-bars {
  display: grid;
  gap: 12px;
  padding: 18px 16px;
}

.ap-report-client-bars div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 10px;
  color: #666666;
  font-size: 12px;
}

.ap-report-client-bars b {
  display: block;
  height: 12px;
  background:
    linear-gradient(90deg, #70c63a 0 var(--w), transparent var(--w)),
    #eeeeee;
}

.ap-report-client-bars em {
  color: #4d4d4d;
  font-style: normal;
  text-align: right;
}

.ap-report-table-card {
  grid-column: 1 / -1;
}

.toolbar {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
  padding: 10px 16px;
}

.toolbar-side {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2px;
  padding: 0 13px;
  white-space: nowrap;
}

.btn-primary {
  border: 1px solid var(--green);
  background: var(--green);
  color: #ffffff;
}

.btn-primary:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.btn-secondary {
  border: 1px solid #d8d8d8;
  background: var(--surface);
  color: var(--text-soft);
}

.btn-secondary:hover {
  border-color: var(--border-strong);
  background: #fbfbfb;
}

.search-field {
  width: 240px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
  padding: 0 12px;
}

.search-field:focus,
.field-control:focus,
.modal-close:focus,
.btn:focus,
.tab:focus,
.sidebar-item:focus,
.topbar-icon-button:focus,
.user-avatar:focus,
.permission input:focus {
  outline: 2px solid rgba(25, 165, 0, 0.28);
  outline-offset: 1px;
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 12px;
  border-bottom: 1px solid var(--border);
  background: #fcfdfb;
  padding: 14px 16px;
}

.filter-chip {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0 12px;
  color: var(--text-soft);
}

.table-wrap {
  overflow: auto;
}

.compact-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compact-table thead {
  background: var(--header);
  color: #ffffff;
}

.compact-table th {
  padding: 9px 12px;
  font-weight: 400;
  text-align: left;
}

.compact-table td {
  border-bottom: 1px solid #ecefeb;
  padding: 10px 12px;
  vertical-align: middle;
}

.compact-table tbody tr:hover {
  background: #fbfcfa;
}

.muted-cell {
  color: var(--text-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 2px;
  background: #eef2ea;
  color: #4f6b44;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
}

.badge-system {
  background: #eef2ea;
  color: #4f6b44;
}

.badge-custom {
  background: #eaf2f6;
  color: var(--blue);
}

.badge-status {
  background: #f6f1e3;
  color: var(--amber);
}

.empty-state {
  padding: 32px 16px;
  color: var(--text-muted);
  text-align: center;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.metric {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 16px;
}

.metric-value {
  color: var(--text);
  font-size: 24px;
  font-weight: 300;
}

.metric-label {
  margin-top: 4px;
  color: var(--text-muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  padding: 22px;
}

.modal-overlay.is-fullscreen {
  padding: 4px;
}

.modal {
  display: flex;
  width: min(1100px, calc(100vw - 56px));
  max-height: 90vh;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(32, 42, 26, 0.24);
}

.custom-role-dialog {
  display: flex;
  width: min(1207px, calc(100vw - 28px));
  max-height: calc(100vh - 44px);
  flex-direction: column;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
}

.custom-role-dialog.is-fullscreen {
  width: calc(100vw - 8px);
  height: calc(100vh - 8px);
  max-height: calc(100vh - 8px);
}

.custom-role-page {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: #4d4d4d;
}

.back-to-role-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: #00a8ff;
  font-size: 13px;
  line-height: 22px;
  margin: 6px 0 10px;
  padding: 0;
  text-decoration: underline;
}

.back-to-role-link:hover {
  color: #007dc1;
}

.back-to-role-link .lucide {
  stroke-width: 2;
}

.custom-role-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.custom-role-page-header h1 {
  margin: 0;
  color: #333333;
  font-size: 15px;
  font-weight: 100;
  line-height: 15px;
}

.custom-role-page-frame {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  border: 1px solid #e1e1e1;
  background: #fcfcfc;
}

.custom-role-page .custom-role-content {
  overflow: visible;
}

.custom-role-page-footer-slot {
  display: flex;
  min-height: 85px;
  align-items: stretch;
  justify-content: center;
  margin: 16px 0 0;
}

.custom-role-page-footer-slot.is-hidden,
.custom-role-page-footer.is-hidden {
  display: none;
}

.custom-role-page-footer {
  z-index: 20;
  display: flex;
  width: 100%;
  min-height: 85px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7f3a9;
  border-radius: 4px;
  color: #4d4d4d;
  font-size: 9px;
  font-weight: 100;
  padding: 12px 16px 9px;
}

.custom-role-page-footer.is-floating {
  position: fixed;
  right: 32px;
  bottom: 26px;
  width: min(379px, calc(100vw - 64px));
  min-height: 70px;
  box-shadow: none;
}

.custom-role-save-actions {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  justify-content: center;
}

.custom-role-save-button {
  display: inline-flex;
  min-width: 40px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 2px;
  background: #3c9f00;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;
  padding: 0 7px;
}

.custom-role-save-button:hover {
  background: #338c00;
}

.custom-role-save-or {
  color: #4d4d4d;
  font-size: 10px;
  font-weight: 100;
  line-height: 25px;
  margin-left: 5px;
}

.custom-role-cancel-link {
  height: 25px;
  border: 0;
  background: transparent;
  color: #147400;
  font-size: 10px;
  font-weight: 100;
  line-height: 25px;
  margin-left: 3px;
  padding: 0;
}

.custom-role-cancel-link:hover {
  text-decoration: underline;
}

.custom-role-save-hint {
  margin-top: 9px;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 100;
  line-height: 13px;
  text-align: center;
}

.create-site-group-dialog {
  width: min(700px, calc(100vw - 44px));
  height: min(560px, calc(100vh - 74px));
  max-height: calc(100vh - 74px);
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.add-sites-to-groups-dialog {
  width: min(520px, calc(100vw - 44px));
  height: min(420px, calc(100vh - 74px));
  max-height: calc(100vh - 74px);
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.create-admin-dialog {
  width: min(760px, calc(100vw - 44px));
  height: min(610px, calc(100vh - 74px));
  max-height: calc(100vh - 74px);
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.create-admin-header {
  height: 50px;
  flex-basis: 50px;
  padding: 0 18px;
}

.create-admin-header h1 {
  font-size: 16px;
  font-weight: 500;
}

.create-site-group-header {
  height: 50px;
  flex-basis: 50px;
  padding: 0 18px;
}

.add-sites-to-groups-header {
  height: 50px;
  flex-basis: 50px;
  padding: 0 18px;
}

.create-site-group-header h1 {
  font-size: 16px;
  font-weight: 500;
}

.add-sites-to-groups-header h1 {
  font-size: 16px;
  font-weight: 500;
}

.custom-dialog-header {
  display: flex;
  height: 66px;
  flex: 0 0 66px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e2e2;
  background: #fcfcfc;
  padding: 0 24px;
}

.custom-dialog-header h1 {
  margin: 0;
  color: #4d4d4d;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.custom-dialog-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.custom-dialog-icon-button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  padding: 0;
}

.custom-dialog-icon-button:hover,
.custom-dialog-close:hover {
  background: #eeeeee;
}

.custom-dialog-close {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-size: 28px;
  line-height: 1;
}

.custom-role-content {
  flex: 1;
  overflow: auto;
  background: #fcfcfc;
  color: #4d4d4d;
  font-size: 12px;
}

.create-site-group-content {
  flex: 1;
  overflow: visible;
  background: #fcfcfc;
  color: #4d4d4d;
  font-size: 12px;
}

.add-sites-to-groups-content {
  flex: 1;
  overflow: visible;
  background: #fcfcfc;
  color: #4d4d4d;
  font-size: 13px;
  padding: 22px 18px 30px 24px;
}

.add-sites-to-groups-message {
  margin: 0 0 22px;
  color: #4d4d4d;
  line-height: 20px;
}

.add-sites-to-groups-selector {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
}

.add-sites-to-groups-trigger {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 28px;
  height: auto;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  background-image: none;
  padding-right: 28px;
  text-align: left;
}

.add-sites-to-groups-trigger .create-site-group-member-value {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-wrap: wrap;
  gap: 4px;
  overflow: hidden;
}

.add-sites-to-groups-tag {
  display: inline-flex;
  max-width: 100%;
  height: 19px;
  align-items: center;
  background: #6fc43f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
  padding: 0 4px;
}

.add-sites-to-groups-selector .add-sites-to-groups-trigger.custom-field-control {
  width: 100%;
}

.add-sites-to-groups-trigger.is-open {
  border-color: #a8a8a8;
}

.add-sites-to-groups-selector .add-sites-to-groups-menu.create-site-group-member-menu {
  width: 100%;
  max-width: 100%;
}

.add-sites-to-groups-menu .create-site-group-member-list {
  max-height: 104px;
}

.add-sites-to-groups-search {
  margin-bottom: 4px;
}

.add-sites-to-groups-select-all {
  border-bottom: 1px solid #ececec;
  font-weight: 700;
  margin-bottom: 4px;
  padding-bottom: 4px;
}

.create-admin-content {
  flex: 1;
  overflow: auto;
  background: #fcfcfc;
  color: #4d4d4d;
  font-size: 12px;
}

.custom-dialog-footer {
  display: flex;
  height: 64px;
  flex: 0 0 64px;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  border-top: 1px solid #e2e2e2;
  background: #fcfcfc;
  padding: 0 24px;
}

.dialog-cancel-button,
.dialog-ok-button {
  height: 29px;
  min-width: 64px;
  border: 0;
  border-radius: 2px;
  color: #ffffff;
  font-weight: 700;
  padding: 0 12px;
}

.dialog-cancel-button {
  background: #767676;
}

.dialog-ok-button {
  background: #269d00;
}

.dialog-ok-button:hover {
  background: #1f8d00;
}

.dialog-ok-button.is-disabled,
.dialog-ok-button:disabled {
  background: #b6d7ad;
  color: #ffffff;
  cursor: default;
}

.custom-dialog-section {
  padding: 12px 12px 16px;
}

.create-site-group-section {
  border-bottom: 1px solid #e6e6e6;
  padding: 14px 18px 16px;
}

.create-admin-section {
  border-bottom: 1px solid #e6e6e6;
  padding: 14px 18px 16px;
}

.create-site-group-section:last-child {
  border-bottom: 0;
}

.create-admin-section:last-child {
  border-bottom: 0;
}

.create-admin-form {
  display: grid;
  grid-template-columns: 132px minmax(0, 420px) 16px;
  gap: 10px 0;
  align-items: start;
  padding-left: 6px;
}

.create-site-group-form {
  display: grid;
  grid-template-columns: 128px minmax(0, 420px) 16px;
  gap: 10px 0;
  align-items: start;
  padding-left: 6px;
}

.create-admin-field,
.create-admin-field .custom-field-control,
.create-admin-form .custom-field-control {
  width: 100%;
}

.create-admin-select {
  padding: 0 8px;
}

.create-site-group-field,
.create-site-group-field .custom-field-control {
  width: 100%;
}

.create-site-group-form .create-site-group-field {
  width: 100%;
}

.create-site-group-form .custom-field-control {
  width: 100%;
}

.create-site-group-textarea {
  height: 72px;
  min-height: 72px;
  max-height: 72px;
  resize: none;
  line-height: 18px;
  overflow: auto;
  padding: 6px 8px;
}

.create-site-group-member-selector {
  position: relative;
  width: 272px;
  min-width: 0;
}

.create-site-group-member-trigger {
  display: flex;
  min-height: 28px;
  height: auto;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 8px;
  text-align: left;
}

.create-site-group-form .create-site-group-member-trigger {
  padding: 0 8px;
}

.create-site-group-member-trigger .lucide {
  flex: 0 0 auto;
  margin-left: auto;
}

.create-site-group-member-trigger.is-open {
  border-color: #a8a8a8;
}

.create-site-group-member-value {
  display: block;
  min-width: 0;
  flex: 1;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.create-site-group-member-placeholder {
  color: #b3b3b3;
  line-height: 18px;
}

.create-site-group-member-text {
  color: #4d4d4d;
  line-height: 18px;
}

.create-site-group-member-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  z-index: 90;
  width: 272px;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  padding: 4px;
}

.create-site-group-member-search {
  width: 100%;
  height: 28px;
  margin-bottom: 6px;
  padding: 0 6px;
}

.create-site-group-member-search input::placeholder {
  color: transparent;
}

.create-site-group-member-option {
  display: flex;
  min-height: 26px;
  align-items: center;
  gap: 7px;
  color: #4d4d4d;
  line-height: 18px;
  padding: 3px 4px;
}

.create-site-group-member-option:hover {
  background: #f3f3f3;
}

.create-site-group-member-option input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #777777;
}

.create-site-group-member-option.is-select-all {
  font-weight: 700;
  margin-bottom: 0;
}

.create-site-group-member-list {
  max-height: 132px;
  overflow: auto;
}

.create-site-group-member-empty {
  color: #767676;
  line-height: 18px;
  padding: 8px 6px;
}

.create-site-group-footer {
  height: 52px;
  flex-basis: 52px;
  padding: 0 18px;
}

.create-admin-access-table-wrap {
  width: min(100%, 690px);
  padding-left: 6px;
}

.create-admin-access-table {
  width: 100%;
  border: 1px solid #e1e1e1;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.create-admin-access-table th {
  height: 28px;
  background: #666666;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 13px;
  padding: 0 8px;
  text-align: left;
}

.create-admin-access-table th:nth-child(1),
.create-admin-access-table td:nth-child(1) {
  width: 34%;
}

.create-admin-access-table th:nth-child(2),
.create-admin-access-table td:nth-child(2) {
  width: 43%;
}

.create-admin-access-table th:nth-child(3),
.create-admin-access-table td:nth-child(3) {
  width: 23%;
}

.create-admin-access-table td {
  height: 40px;
  background: #ffffff;
  padding: 6px 8px;
  vertical-align: middle;
}

.create-admin-table-select {
  width: 100%;
  padding: 0 8px;
}

.create-admin-invite-section {
  padding-top: 12px;
  padding-bottom: 12px;
}

.create-admin-check-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4d4d4d;
  padding-left: 6px;
}

.create-admin-check-option input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #3c9f00;
}

.create-admin-footer {
  height: 52px;
  flex-basis: 52px;
  padding: 0 18px;
}

.create-admin-dialog {
  width: min(730px, calc(100vw - 44px));
  height: min(724px, calc(100vh - 34px));
  max-height: calc(100vh - 34px);
  overflow: visible;
  border-color: #d7d7d7;
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.create-admin-header {
  height: 74px;
  flex-basis: 74px;
  border-bottom-color: #e5e5e5;
  background: #fcfcfc;
  padding: 0 22px 0 28px;
}

.create-admin-header h1 {
  color: #4d4d4d;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.create-admin-header .custom-dialog-close {
  width: 30px;
  height: 30px;
  color: #000000;
  font-size: 32px;
  font-weight: 100;
}

.create-admin-content {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fcfcfc;
  color: #4d4d4d;
  font-size: 13px;
  padding: 29px 28px 24px;
}

.create-admin-form {
  display: grid;
  grid-template-columns: 212px minmax(0, 1fr) 14px;
  gap: 8px 0;
  align-items: center;
  padding-left: 0;
}

.create-admin-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  align-self: start;
  gap: 7px;
  color: #595959;
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
}

.create-admin-input-wrap {
  position: relative;
  min-width: 0;
}

.create-admin-text-control,
.create-admin-select,
.create-admin-table-select,
.create-admin-msp-role-trigger,
.create-admin-scope-trigger {
  width: 100%;
  height: 30px;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  background-color: #ffffff;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 24px;
  padding: 0 34px 0 9px;
}

.create-admin-text-control {
  height: 33px;
  line-height: 27px;
}

.create-admin-select,
.create-admin-table-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width=%278%27 height=%275%27 viewBox=%270 0 8 5%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 0h8L4 5z%27 fill=%27%23555555%27/%3E%3C/svg%3E");
  background-position: right 13px center;
  background-repeat: no-repeat;
  background-size: 8px 5px;
  padding-right: 30px;
}

.create-admin-text-control.is-invalid {
  border-color: #ff5a66;
  background: #ffdddd;
}

.create-admin-field-error {
  color: #ff3d51;
  font-size: 12px;
  line-height: 16px;
  margin-top: 4px;
}

.create-admin-field-error.is-hidden {
  display: none;
}

.create-admin-clear-button {
  position: absolute;
  right: 6px;
  top: 50%;
  display: grid;
  width: 24px;
  height: 16px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #b3b3b3;
  font-size: 16px;
  font-weight: 100;
  line-height: 16px;
  opacity: 0;
  padding: 0 4px;
  pointer-events: none;
  transform: translateY(-50%);
  visibility: hidden;
}

.create-admin-clear-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.create-admin-clear-button:hover {
  color: #777777;
}

.create-admin-required-mark {
  align-self: start;
  color: #ff3d51;
  font-size: 13px;
  line-height: 33px;
  padding-left: 3px;
}

.create-admin-switch {
  position: relative;
  width: 38px;
  height: 19px;
  border: 0;
  border-radius: 14px;
  background: #888888;
  padding: 0;
}

.create-admin-switch span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 120ms ease;
}

.create-admin-switch.is-on {
  background: #56bf00;
}

.create-admin-switch.is-on span {
  transform: translateX(19px);
}

.create-admin-info-icon {
  display: inline-grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  background: #1295ff;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 15px;
}

.create-admin-validity {
  display: grid;
  gap: 11px;
  color: #5a5a5a;
  font-size: 13px;
  font-weight: 400;
}

.create-admin-radio-option,
.create-admin-delete-expired {
  display: flex;
  min-height: 24px;
  align-items: center;
  gap: 10px;
}

.create-admin-radio-option input[type="radio"] {
  width: 21px;
  height: 21px;
  margin: 0;
  accent-color: #7b7b7b;
}

.create-admin-delete-expired {
  padding-left: 32px;
}

.create-admin-delete-expired input,
.create-admin-scope-option input {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: #7b7b7b;
}

.create-admin-expire-option {
  flex-wrap: nowrap;
}

.create-admin-date-wrap {
  position: relative;
  display: inline-flex;
  width: 230px;
  height: 30px;
  align-items: center;
}

.create-admin-date {
  width: 230px;
  height: 30px;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  color: #666666;
  font: inherit;
  font-weight: 500;
  padding: 0 30px 0 8px;
}

.create-admin-date-wrap .lucide,
.create-admin-date-wrap .ncc-calendar-icon {
  position: absolute;
  right: 8px;
  pointer-events: none;
}

.create-admin-timezone {
  white-space: nowrap;
}

.create-admin-select.is-placeholder {
  color: #b3b3b3;
}

.create-admin-org-role-block {
  position: relative;
  min-width: 0;
}

.create-admin-access-table {
  width: 100%;
  border: 1px solid #e1e1e1;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.create-admin-access-table th {
  height: 18px;
  background: #555555;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  padding: 0 14px;
}

.create-admin-access-table th:nth-child(1),
.create-admin-access-table td:nth-child(1),
.create-admin-access-table th:nth-child(2),
.create-admin-access-table td:nth-child(2) {
  width: calc((100% - 42px) / 2);
}

.create-admin-access-table th:nth-child(3),
.create-admin-access-table td:nth-child(3) {
  width: 42px;
}

.create-admin-access-table td {
  height: 40px;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 4px 8px;
  vertical-align: middle;
}

.create-admin-access-table tbody tr:last-child td {
  border-bottom: 0;
}

.create-admin-table-select,
.create-admin-role-trigger,
.create-admin-scope-trigger {
  height: 30px;
  padding: 0 9px;
}

.create-admin-role-picker,
.create-admin-msp-role-picker,
.create-admin-scope-picker {
  position: relative;
}

.create-admin-role-trigger,
.create-admin-msp-role-trigger,
.create-admin-scope-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border-color: #dddddd;
  border-radius: 3px;
  padding-right: 28px;
  text-align: left;
}

.create-admin-role-trigger > span:first-child,
.create-admin-msp-role-trigger > span:first-child,
.create-admin-scope-trigger > span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.create-admin-role-trigger.is-placeholder {
  color: #6f6f6f;
}

.create-admin-msp-role-trigger.is-placeholder {
  color: #b3b3b3;
}

.create-admin-dropdown-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #555555;
  pointer-events: none;
  transform: translateY(-35%);
}

.create-admin-msp-role-trigger[aria-expanded="true"] .create-admin-dropdown-arrow {
  border-top: 0;
  border-bottom: 5px solid #555555;
  transform: translateY(-55%);
}

.ncc-dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  flex: 0 0 auto;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #555555;
  pointer-events: none;
  transform: translateY(1px);
}

.template-trigger[aria-expanded="true"] .ncc-dropdown-arrow,
.permission-multiselect-trigger[aria-expanded="true"] .ncc-dropdown-arrow,
.category-quick-apply-trigger[aria-expanded="true"] .ncc-dropdown-arrow {
  border-top: 0;
  border-bottom: 5px solid #555555;
  transform: translateY(-1px);
}

.create-admin-msp-role-menu {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  z-index: 110;
  width: calc(100% + 31px);
  overflow: hidden;
  border: 1px solid #e2e2e2;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.32);
  color: #5d5d5d;
  font-size: 13px;
  line-height: 18px;
}

.create-admin-msp-role-placeholder {
  height: 29px;
  background: #ffffff;
}

.create-admin-msp-role-option {
  display: flex;
  width: 100%;
  height: 29px;
  align-items: center;
  border: 0;
  background: #ffffff;
  color: #5d5d5d;
  font: inherit;
  padding: 0 7px;
  text-align: left;
}

.create-admin-msp-role-option:hover,
.create-admin-msp-role-option.is-selected {
  background: #f2f2f2;
}

.create-admin-msp-pack-message {
  width: 100%;
  background: #fff4cf;
  color: #5d5d5d;
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  padding: 5px 4px;
}

.create-admin-scope-trigger.is-placeholder {
  color: #6f6f6f;
}

.create-admin-scope-trigger.is-readonly {
  background: #f5f5f5;
  color: #6f6f6f;
  cursor: default;
}

.create-admin-role-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 4px);
  z-index: 95;
  width: 178px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  padding: 10px 10px 9px;
}

.create-admin-role-search {
  display: flex;
  height: 28px;
  align-items: center;
  gap: 5px;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  color: #4d4d4d;
  padding: 0 5px;
}

.create-admin-role-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
}

.create-admin-role-groups {
  display: grid;
  gap: 3px;
  margin-top: 9px;
}

.create-admin-role-group-title {
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.create-admin-role-option {
  display: flex;
  width: 100%;
  min-height: 23px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #5d5d5d;
  font-size: 13px;
  line-height: 20px;
  padding: 1px 0 1px 12px;
  text-align: left;
}

.create-admin-role-option:hover,
.create-admin-role-option.is-selected {
  background: #eef7e7;
  color: #148700;
}

.create-admin-role-msp-tag {
  display: inline-flex;
  min-width: 28px;
  height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #7b3ff2;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  padding: 0 5px;
}

.create-admin-role-empty {
  color: #777777;
  font-size: 13px;
  line-height: 18px;
  margin-top: 8px;
}

.create-admin-scope-menu {
  position: absolute;
  left: -32px;
  top: calc(100% + 4px);
  z-index: 90;
  width: 280px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
  padding: 5px 6px 7px;
}

.create-admin-scope-picker.is-open-upward .create-admin-scope-menu {
  top: auto;
  bottom: calc(100% + 4px);
}

.create-admin-scope-type-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  background: #f7f7f7;
  margin-bottom: 6px;
  padding: 2px;
}

.create-admin-scope-type-tabs button {
  min-width: 0;
  height: 26px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #5d5d5d;
  font-size: 12px;
  line-height: 16px;
  padding: 0 4px;
}

.create-admin-scope-type-tabs button.is-active {
  background: #ffffff;
  color: #148700;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.create-admin-scope-search {
  display: flex;
  height: 30px;
  align-items: center;
  gap: 5px;
  border: 1px solid #eeeeee;
  color: #4d4d4d;
  padding: 0 5px;
}

.create-admin-scope-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
}

.create-admin-scope-options {
  display: grid;
  gap: 5px;
  max-height: var(--create-admin-scope-options-max-height, 260px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: 6px;
}

.create-admin-scope-option {
  display: flex;
  min-height: 19px;
  align-items: center;
  gap: 7px;
  color: #5d5d5d;
  font-size: 13px;
  line-height: 19px;
}

.create-admin-scope-option input:disabled {
  display: none;
}

.create-admin-scope-option .is-scope-group-label {
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 700;
}

.create-admin-scope-option.scope-level-1 {
  padding-left: 13px;
}

.create-admin-scope-option.scope-level-0 {
  padding-left: 0;
}

.create-admin-scope-option.scope-level-2 {
  padding-left: 26px;
}

.create-admin-add-button {
  display: inline-flex;
  height: 28px;
  align-items: center;
  gap: 3px;
  border: 0;
  border-radius: 2px;
  background: #3c9f00;
  color: #ffffff;
  font-size: 13px;
  line-height: 28px;
  margin-top: 10px;
  padding: 0 7px;
}

.create-admin-add-button:hover {
  background: #338c00;
}

.create-admin-assignment-action-cell {
  text-align: center;
}

.create-admin-remove-assignment {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #d93025;
  padding: 0;
}

.create-admin-remove-assignment:hover {
  background: #fff0ef;
  color: #b3261e;
}

.create-admin-footer {
  position: relative;
  height: 60px;
  flex-basis: 60px;
  border-top-color: #e7e7e7;
  padding: 0 18px;
}

.create-admin-footer .dialog-cancel-button,
.create-admin-footer .dialog-ok-button {
  height: 30px;
  min-width: 65px;
  font-size: 13px;
  font-weight: 500;
}

.create-admin-footer .dialog-ok-button.is-disabled,
.create-admin-footer .dialog-ok-button:disabled {
  background: #f1f1f1;
  color: #d7d7d7;
}

.create-team-dialog {
  width: min(842px, calc(100vw - 44px));
  height: min(626px, calc(100vh - 34px));
  max-height: calc(100vh - 34px);
  overflow: visible;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.create-team-header {
  height: 86px;
  flex-basis: 86px;
  border-bottom-color: #e5e5e5;
  background: #fcfcfc;
  padding: 0 22px 0 33px;
}

.create-team-header h1 {
  color: #4d4d4d;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.create-team-header .custom-dialog-close {
  width: 32px;
  height: 32px;
  color: #000000;
  font-size: 36px;
  font-weight: 100;
}

.create-team-content {
  flex: 1;
  overflow: visible;
  background: #fcfcfc;
  color: #4d4d4d;
  font-size: 13px;
  padding: 29px 38px 0 33px;
}

.create-team-form {
  display: grid;
  grid-template-columns: 246px minmax(0, 490px) 18px;
  gap: 12px 0;
  align-items: center;
}

.create-team-form .create-admin-label {
  min-height: 30px;
  font-size: 13px;
}

.create-team-form .custom-field-control {
  width: 100%;
}

.create-team-form .create-admin-text-control {
  height: 30px;
  font-size: 13px;
  line-height: 24px;
}

.create-team-form .create-admin-clear-button {
  top: 50%;
}

.create-team-form .create-admin-required-mark {
  line-height: 30px;
}

.create-team-member-selector {
  width: 490px;
}

.create-team-member-trigger {
  width: 100%;
  height: 32px;
  min-height: 32px;
  font-size: 13px;
  padding: 0 32px 0 8px;
}

.create-team-member-menu {
  width: 490px;
  max-width: 490px;
}

.create-team-role-block {
  width: 490px;
}

.create-team-role-table th:nth-child(1),
.create-team-role-table td:nth-child(1),
.create-team-role-table th:nth-child(2),
.create-team-role-table td:nth-child(2) {
  width: 50%;
}

.create-team-role-table.has-action-column th:nth-child(1),
.create-team-role-table.has-action-column td:nth-child(1),
.create-team-role-table.has-action-column th:nth-child(2),
.create-team-role-table.has-action-column td:nth-child(2) {
  width: calc((100% - 42px) / 2);
}

.create-team-role-table.has-action-column th:nth-child(3),
.create-team-role-table.has-action-column td:nth-child(3) {
  width: 42px;
}

.create-team-footer {
  position: relative;
  height: 60px;
  flex-basis: 60px;
  border-top-color: #e7e7e7;
  padding: 0 18px;
}

.create-team-footer .dialog-cancel-button,
.create-team-footer .dialog-ok-button {
  height: 39px;
  min-width: 83px;
  border: 1px solid #dddddd;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
}

.create-team-footer .dialog-cancel-button {
  background: #ffffff;
  color: #4d4d4d;
}

.create-team-footer .dialog-ok-button.is-disabled,
.create-team-footer .dialog-ok-button:disabled {
  background: #eeeeee;
  color: #d8d8d8;
}

.information-section {
  min-height: 118px;
  border-bottom: 1px solid #e6e6e6;
}

.permissions-section {
  padding-top: 13px;
}

.permissions-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 16px 12px 0;
}

.permissions-section-header .custom-dialog-title {
  margin: 0;
}

.permission-style-switch-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.permission-style-switch-label {
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

.permission-style-switch {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid #c49a39;
  border-radius: 2px;
  background: #ffe999;
  overflow: hidden;
}

.permission-style-switch-option {
  display: inline-flex;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-right: 1px solid #c49a39;
  background: transparent;
  color: #6b4a12;
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  padding: 0 12px;
  white-space: nowrap;
}

.permission-style-switch-option:last-child {
  border-right: 0;
}

.permission-style-switch-option:hover,
.permission-style-switch-option:focus-visible {
  background: #f7d873;
}

.permission-style-switch-option.is-selected {
  background: #f7d873;
  color: #6b4a12;
  box-shadow: inset 0 0 0 1px #8a6818;
}

.permission-template-row {
  display: grid;
  grid-template-columns: 187px 190px;
  gap: 8px;
  align-items: center;
  margin: 0 0 12px 18px;
}

.permission-template-control {
  display: contents;
}

.permission-template-control > span {
  color: #666666;
  font-size: 13px;
  line-height: 28px;
  white-space: nowrap;
}

.permission-template-control .template-picker {
  display: block;
  width: 190px;
}

.permission-template-control .template-trigger {
  width: 190px;
}

.permission-template-control .template-menu {
  left: auto;
  right: 0;
}

.permission-expand-collapse-button {
  display: inline-flex;
  height: 28px;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: #00a8ff;
  font-size: 13px;
  line-height: 28px;
  padding: 0;
  white-space: nowrap;
}

.permission-expand-collapse-button:hover {
  text-decoration: underline;
}

.permission-expand-collapse-button:focus {
  outline: 1px solid #00a8ff;
  outline-offset: 2px;
}

.custom-dialog-title {
  margin: 0 0 13px;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.custom-form-grid {
  display: grid;
  grid-template-columns: 195px 198px 64px;
  gap: 10px 0;
  align-items: center;
  padding-left: 18px;
}

.custom-field-label {
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 400;
  line-height: 28px;
}

.custom-field-control {
  width: 198px;
  height: 28px;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  background: #ffffff;
  color: #111111;
  font-size: 13px;
  font-weight: 400;
  padding: 0 26px 0 8px;
}

.custom-field-control:focus,
.permission-search-field input:focus,
.permission-select:focus,
.permission-multiselect-trigger:focus {
  border-color: #e2e2e2;
  outline: none;
}

.clearable-field {
  position: relative;
  width: 198px;
}

.create-admin-field.clearable-field,
.create-site-group-field.clearable-field {
  width: 100%;
}

.field-clear-button {
  position: absolute;
  right: 4px;
  top: 50%;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #9a9a9a;
  padding: 0;
  transform: translateY(-50%);
}

.field-clear-button:hover {
  color: #4d4d4d;
}

.required-mark {
  align-self: start;
  color: #d9003c;
  line-height: 28px;
  padding-left: 3px;
}

.custom-select {
  color: #b3b3b3;
  padding-right: 8px;
}

.template-picker {
  position: relative;
  width: 198px;
}

.template-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b3b3b3;
  padding: 0 8px;
  text-align: left;
}

.template-trigger.has-value {
  color: #4d4d4d;
}

.dropdown-trigger-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.template-menu {
  position: absolute;
  left: 0;
  top: 36px;
  z-index: 80;
  width: 362px;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
  color: #4d4d4d;
  padding: 10px 16px 12px;
}

.template-search {
  display: flex;
  width: 100%;
  height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  background: #ffffff;
  color: #4d4d4d;
  padding: 0 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.template-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  outline: 0;
}

.template-group {
  margin-top: 12px;
}

.template-group-title {
  margin-bottom: 5px;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 700;
}

.template-option {
  display: block;
  width: 100%;
  height: 26px;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 26px;
  padding: 0 0 0 17px;
  text-align: left;
}

.template-option:hover,
.template-option.is-selected {
  background: #eef7e7;
  color: #148700;
}

.import-button {
  width: 65px;
  height: 28px;
  margin-left: 6px;
  border: 1px solid #229900;
  border-radius: 2px;
  background: #269d00;
  color: #ffffff;
  font-weight: 700;
}

.permission-filters {
  display: grid;
  grid-template-columns: 187px 190px auto 1fr;
  gap: 8px;
  align-items: end;
  margin: 0 0 14px 18px;
}

.permission-filter {
  position: relative;
  display: grid;
  gap: 5px;
  color: #666666;
  font-size: 13px;
}

.permission-search-field {
  display: flex;
  width: 187px;
  height: 28px;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e2e2;
  background: #fcfcfc;
  color: #c9c9c9;
  padding: 0 8px;
}

.permission-search-field input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-size: 13px;
}

.permission-search-field input::placeholder {
  color: #b3b3b3;
}

.permission-select {
  width: 190px;
  height: 28px;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  background: #fcfcfc;
  color: #111111;
  font-size: 13px;
  padding: 0 8px;
}

.permission-select option {
  color: #111111;
}

.permission-multiselect {
  position: relative;
  width: 190px;
}

.permission-multiselect-trigger {
  display: inline-flex;
  width: 190px;
  height: 28px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  background: #fcfcfc;
  color: #111111;
  font-size: 13px;
  padding: 0 8px;
  text-align: left;
}

.permission-multiselect-trigger.is-any {
  color: #666666;
}

.permission-multiselect-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  z-index: 120;
  display: grid;
  width: 230px;
  max-height: 260px;
  overflow: auto;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
  padding: 6px 0;
}

.permission-multiselect-option {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 18px;
  padding: 4px 10px;
}

.permission-multiselect-option:hover {
  background: #eef7e7;
}

.permission-multiselect-option input {
  width: 14px;
  height: 14px;
  margin: 0;
}

.permission-multiselect-option span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.reset-filters-link {
  align-self: end;
  color: #00a8ff;
  font-size: 13px;
  line-height: 28px;
  text-decoration: underline;
  white-space: nowrap;
}

.assigned-filter {
  display: inline-flex;
  align-self: end;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 28px;
  padding-right: 16px;
  white-space: nowrap;
}

.assigned-toggle {
  display: inline-grid;
  width: 35px;
  height: 18px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  padding: 0;
}

.assigned-filter-label {
  color: #111111;
  font-size: 13px;
  line-height: 28px;
}

.assigned-toggle:focus {
  outline: 1px solid #00a8ff;
  outline-offset: 2px;
}

.toggle-switch {
  position: relative;
  width: 35px;
  height: 18px;
  border-radius: 10px;
  background: #888888;
  transition: background 0.16s ease;
}

.toggle-switch::before {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
  transition: transform 0.16s ease;
}

.assigned-toggle.is-active .toggle-switch {
  background: #6fb52c;
}

.assigned-toggle.is-active .toggle-switch::before {
  transform: translateX(17px);
}

.permission-accordion {
  display: grid;
  gap: 14px;
  margin: 0 16px 0 18px;
}

.permission-accordion-feature-row {
  display: flex;
  width: 100%;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  padding: 0;
}

.permission-accordion-feature-row .permission-expand-collapse-button {
  margin-left: auto;
}

.permission-category {
  display: grid;
  position: relative;
}

.permission-accordion-row {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 44px;
  align-items: center;
  border: 1px solid #e2e2e2;
  background: #fcfcfc;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
  text-align: left;
}

.permission-category.is-expanded .permission-accordion-row {
  border-bottom: 0;
  background: #ffffff;
}

.permission-category.has-open-quick-apply .permission-accordion-row {
  z-index: 25;
}

.permission-category-row-content {
  display: grid;
  width: min(calc(100% - 56px), 780px);
  max-width: 780px;
  grid-template-columns: minmax(260px, 1fr) 310px;
  align-items: center;
  column-gap: 18px;
  margin-left: 19px;
}

.permissions-section.is-simple-toggle-mode .permission-category-row-content,
.permissions-section.is-simple-radio-mode .permission-category-row-content {
  width: calc(100% - 56px);
  max-width: none;
  grid-template-columns: minmax(300px, 1fr) 310px minmax(180px, 260px);
  margin-left: 28px;
}

.permissions-section.is-simple-toggle-mode .permission-category-row-content .permission-category-title,
.permissions-section.is-simple-radio-mode .permission-category-row-content .permission-category-title {
  grid-column: 1;
  transform: translateX(-9px);
}

.permissions-section.is-simple-toggle-mode .permission-category-row-content .category-quick-apply,
.permissions-section.is-simple-radio-mode .permission-category-row-content .category-quick-apply {
  display: flex;
  width: 300px;
  grid-column: 2;
  justify-content: flex-end;
  justify-self: center;
  margin-right: 0;
}

.permission-category-title {
  display: inline-flex;
  width: 100%;
  height: 42px;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  padding: 0 12px 0 0;
  text-align: left;
}

.permission-category-title:hover {
  color: #2f8200;
}

.permission-category-collapse {
  position: absolute;
  right: 10px;
  top: 50%;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #4d4d4d;
  padding: 0;
}

.permission-category-collapse:hover {
  color: #2f8200;
}

.permission-category-collapse .lucide {
  stroke-width: 2;
}

.permissions-section.is-compact-groups .permission-accordion {
  gap: 0;
}

.permissions-section.is-compact-groups .permission-accordion-feature-row {
  min-height: 32px;
  border: 1px solid #767676;
  background: #767676;
  color: #ffffff;
  padding: 0 10px 0 12px;
}

.permissions-section.is-compact-groups .permission-accordion-feature-row .permission-expand-collapse-button {
  color: #ffffff;
}

.permissions-section.is-compact-groups .permission-category {
  border-bottom: 1px solid #e6e6e6;
}

.permissions-section.is-compact-groups .permission-accordion-row {
  height: 31px;
  border: 0;
  border-top: 1px solid #e6e6e6;
  background: #f7f8f5;
}

.permissions-section.is-compact-groups .permission-category.is-expanded .permission-accordion-row {
  background: #f7f8f5;
}

.permissions-section.is-compact-groups .permission-category-row-content {
  margin-left: 18px;
}

.permissions-section.is-compact-groups .permission-category-title {
  height: 30px;
  color: #4d4d4d;
  font-size: 13px;
}

.permissions-section.is-compact-groups .permission-category-title:hover {
  color: #187a00;
}

.permissions-section.is-compact-groups .permission-category-collapse {
  right: 8px;
}

.permissions-section.is-compact-groups .simple-permission-detail-panel,
.permissions-section.is-compact-groups .permission-detail-panel {
  border: 0;
  background: #ffffff;
  padding: 10px 28px 16px;
}

.permissions-section.is-compact-groups .simple-permission-list {
  row-gap: 6px;
}

.category-quick-apply {
  position: relative;
  justify-self: end;
  margin-right: 5px;
}

.category-quick-apply-trigger {
  display: inline-flex;
  min-width: 126px;
  height: 26px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid #cfd6cc;
  border-radius: 2px;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  padding: 0 8px 0 10px;
}

.category-quick-apply-trigger:hover,
.category-quick-apply-trigger[aria-expanded="true"] {
  border-color: #9fc68f;
  background: #f4faf1;
  color: #218800;
}

.category-quick-apply-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 3px);
  right: 0;
  width: 126px;
  border: 1px solid #cfd6cc;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  padding: 3px 0;
}

.category-quick-apply-menu-label {
  color: #777777;
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
  padding: 2px 12px 6px;
}

.category-quick-apply-option {
  display: block;
  width: 100%;
  min-height: 26px;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  padding: 4px 10px;
  text-align: left;
}

.category-quick-apply-option:hover {
  background: #eef7e7;
  color: #187a00;
}

.category-quick-apply-option.is-clear:hover {
  background: #fff3e8;
  color: #4d4d4d;
}

.category-quick-apply-divider {
  height: 1px;
  background: #e4e7e0;
  margin: 5px 0;
}

.permission-category-title:focus,
.permission-category-collapse:focus,
.category-quick-apply-trigger:focus,
.category-quick-apply-option:focus {
  outline: 2px solid rgba(25, 165, 0, 0.28);
  outline-offset: -2px;
}

.permission-detail-panel {
  border: 1px solid #e2e2e2;
  border-top: 0;
  background: #ffffff;
  padding: 13px 28px 22px;
}

.permission-detail-panel-empty {
  min-height: 38px;
  background: #fcfcfc;
  padding: 0;
}

.permission-matrix {
  display: grid;
  max-width: 950px;
  grid-template-columns: minmax(300px, 1fr) 96px 96px 96px 210px;
  align-items: center;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 20px;
  row-gap: 6px;
  column-gap: 8px;
}

.permission-column-title {
  color: #666666;
  font-weight: 100;
  text-align: center;
}

.permission-feature-name {
  display: grid;
  min-height: 20px;
  color: #555555;
  padding-left: 39px;
}

.permission-feature-label {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.permission-i-note {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  cursor: help;
}

.permission-i-note:hover,
.permission-i-note:focus,
.permission-i-note.is-active {
  z-index: 220;
}

.permission-i-note::after {
  position: absolute;
  left: -12px;
  top: 100%;
  display: none;
  width: 42px;
  height: 18px;
  content: "";
}

.permission-i-note-icon {
  display: block;
  width: 14px;
  height: 14px;
}

.permission-i-note-tooltip {
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  z-index: 230;
  display: none;
  width: 320px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.24);
  color: #4d4d4d;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  padding: 8px 10px;
  text-align: left;
  transform: translateX(-50%);
  white-space: normal;
}

.permission-i-note-tooltip::before {
  position: absolute;
  left: 50%;
  top: -9px;
  width: 16px;
  height: 16px;
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  background: #ffffff;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.permission-i-note:hover::after,
.permission-i-note:hover .permission-i-note-tooltip,
.permission-i-note:focus::after,
.permission-i-note:focus .permission-i-note-tooltip,
.permission-i-note.is-active::after,
.permission-i-note.is-active .permission-i-note-tooltip {
  display: block;
}

.permission-i-note:focus-visible {
  outline: 1px solid #12a8ff;
  outline-offset: 1px;
}

.permission-feature-name small {
  display: block;
  margin-top: 1px;
  padding-left: 12px;
  color: #9a9a9a;
  font-size: 13px;
  line-height: 20px;
}

.permission-feature-name.is-nested {
  padding-left: 58px;
}

.permission-check-cells {
  display: contents;
}

.permission-check-cell {
  position: relative;
  display: grid;
  width: 20px;
  height: 20px;
  place-self: center;
  place-items: center;
  border: 1px solid #b7b7b7;
  border-radius: 2px;
  background: #ffffff;
  padding: 0;
}

.permission-check-cell:hover {
  border-color: #78b964;
  background: #f1f8ed;
}

.permission-check-cell.is-disabled,
.permission-check-cell.is-disabled:hover {
  border-color: #d6d6d6;
  background: #eeeeee;
  cursor: not-allowed;
}

.permission-check-cell.is-selected {
  border-color: #269d00;
  background: #269d00;
}

.permission-check-cell.is-selected span::before {
  display: block;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
  transform: rotate(-45deg) translateY(-1px);
}

.permission-check-cell.is-soft.is-selected {
  border-color: #99ca88;
  background: #eef7e7;
}

.permission-check-cell.is-soft.is-selected span::before {
  border-color: #187a00;
}

.permission-check-cell.is-soft.is-selected:hover {
  background: #e2f1d8;
}

.permission-check-cell.is-disabled.is-selected,
.permission-check-cell.is-soft.is-disabled.is-selected {
  border-color: #d6d6d6;
  background: #eeeeee;
}

.permission-check-cell.is-disabled.is-selected span::before,
.permission-check-cell.is-soft.is-disabled.is-selected span::before {
  border-color: #9a9a9a;
}

.permission-check-cell:focus {
  position: relative;
  z-index: 1;
  outline: 2px solid rgba(25, 165, 0, 0.28);
  outline-offset: -2px;
}

.simple-permission-detail-panel {
  border: 1px solid #e2e2e2;
  border-top: 0;
  background: #ffffff;
  padding: 13px 28px 22px;
}

.simple-permission-list {
  display: grid;
  max-width: 100%;
  grid-template-columns: minmax(300px, 1fr) 310px minmax(180px, 260px);
  align-items: center;
  column-gap: 18px;
  row-gap: 7px;
  color: #4d4d4d;
  font-size: 13px;
  line-height: 20px;
}

.simple-permission-column-title {
  color: #666666;
  font-weight: 100;
}

.simple-permission-column-title:nth-child(2) {
  text-align: center;
}

.simple-permission-radio-header {
  display: grid;
  width: 300px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-self: center;
  color: #666666;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.simple-permission-radio-header.has-apply-all {
  align-items: start;
  line-height: 18px;
  padding-bottom: 2px;
}

.simple-permission-radio-header-cell {
  display: grid;
  min-width: 0;
  justify-items: center;
  row-gap: 2px;
}

.simple-permission-radio-header-cell span {
  min-width: 0;
}

.simple-permission-apply-all {
  border: 0;
  background: transparent;
  color: #00b2ff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  padding: 0;
  text-decoration: underline;
  white-space: nowrap;
}

.simple-permission-apply-all:hover,
.simple-permission-apply-all:focus-visible {
  color: #008dcc;
}

.simple-permission-apply-all:focus-visible {
  outline: 2px solid rgba(0, 178, 255, 0.28);
  outline-offset: 2px;
}

.simple-permission-feature {
  display: grid;
  min-height: 24px;
  align-content: center;
  color: #555555;
  padding-left: 22px;
}

.simple-permission-feature.is-nested {
  padding-left: 42px;
}

.simple-permission-feature small {
  display: block;
  margin-top: 1px;
  padding-left: 12px;
  color: #9a9a9a;
  font-size: 13px;
  line-height: 20px;
}

.simple-permission-toggle {
  display: inline-flex;
  width: 300px;
  height: 26px;
  align-self: start;
  justify-self: center;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  overflow: hidden;
  background: #ffffff;
}

.simple-permission-toggle-option {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  border: 0;
  border-right: 1px solid #bfbfbf;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 700;
  padding: 0 8px;
}

.simple-permission-toggle-option:last-child {
  border-right: 0;
}

.simple-permission-toggle-option:hover {
  background: #eef7e7;
  color: #148700;
}

.simple-permission-toggle-option.is-selected {
  background: #269d00;
  color: #ffffff;
}

.simple-permission-toggle-option.is-selected:hover {
  background: #1f8d00;
  color: #ffffff;
}

.simple-permission-toggle-option.is-disabled,
.simple-permission-toggle-option[aria-disabled="true"] {
  cursor: not-allowed;
  background: #f3f3f3;
  color: #9a9a9a;
}

.simple-permission-toggle-option.is-disabled:hover,
.simple-permission-toggle-option[aria-disabled="true"]:hover {
  background: #f3f3f3;
  color: #9a9a9a;
}

.simple-permission-radio {
  display: grid;
  width: 300px;
  min-height: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: start;
  justify-self: center;
  align-items: center;
}

.simple-permission-radio-option {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
  transition: color 120ms ease;
}

.simple-permission-radio-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.simple-permission-radio-dot {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 1px solid #9a9a9a;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color 120ms ease,
    box-shadow 120ms ease,
    background-color 120ms ease;
}

.simple-permission-radio-option.is-selected .simple-permission-radio-dot {
  border-color: #269d00;
}

.simple-permission-radio-option.is-selected .simple-permission-radio-dot::after {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #269d00;
  content: "";
}

.simple-permission-radio-option:hover {
  color: #148700;
}

.simple-permission-radio-option:hover .simple-permission-radio-dot {
  border-color: #269d00;
  box-shadow: 0 0 0 3px rgba(38, 157, 0, 0.14);
}

.simple-permission-radio-option:has(input:focus-visible) .simple-permission-radio-dot {
  outline: 1px solid #00a8ff;
  outline-offset: 2px;
}

.simple-permission-radio-option.is-disabled {
  cursor: not-allowed;
  color: #9a9a9a;
}

.simple-permission-radio-option.is-disabled:hover {
  color: #9a9a9a;
}

.simple-permission-radio-option.is-disabled .simple-permission-radio-dot {
  border-color: #c9c9c9;
  background: #f3f3f3;
  cursor: not-allowed;
}

.simple-permission-radio-option.is-disabled:hover .simple-permission-radio-dot {
  border-color: #c9c9c9;
  box-shadow: none;
}

.simple-permission-row-note {
  min-height: 18px;
  align-self: start;
  color: #d96c00;
  font-size: 12px;
  line-height: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.modal-header {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
  padding: 14px 24px;
}

.modal-title {
  color: var(--text);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
}

.modal-path {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
}

.modal-close {
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
  color: var(--text-soft);
  padding: 0 14px;
}

.modal-body {
  flex: 1;
  overflow: auto;
  padding: 24px;
}

.form-section + .form-section {
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 24px;
}

.section-title {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.info-grid {
  display: grid;
  max-width: 760px;
  grid-template-columns: 180px 1fr;
  gap: 14px 18px;
  align-items: center;
}

.field-label {
  color: var(--text);
}

.field-control {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
  padding: 8px 10px;
}

input.field-control {
  height: 36px;
}

textarea.field-control {
  min-height: 90px;
  resize: vertical;
}

.readonly-field {
  color: var(--text-soft);
}

.permissions {
  display: grid;
  gap: 12px;
}

.permission-section {
  border: 1px solid var(--border);
  background: var(--surface-soft);
  padding: 16px;
}

.permission-heading {
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 600;
}

.permission-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 10px 18px;
}

.permission {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  color: var(--text);
}

.permission input {
  width: 15px;
  height: 15px;
  accent-color: var(--green);
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 16px 0 0;
}

.autosave {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #999999;
  font-size: 12px;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast {
  position: fixed;
  top: 86px;
  right: 24px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  min-width: 260px;
  max-width: min(420px, calc(100vw - 48px));
  gap: 10px;
  border: 1px solid #b7dfab;
  border-left: 4px solid #4caf2f;
  border-radius: 3px;
  background: #f1faed;
  color: #2f6425;
  font-size: 13px;
  line-height: 18px;
  padding: 11px 14px 11px 11px;
  box-shadow: 0 10px 24px rgba(48, 92, 35, 0.16);
}

.toast .lucide {
  flex: 0 0 auto;
  color: #3f9e2d;
}

.toast-warning {
  border-color: #e2c98b;
  border-left-color: #d7a51f;
  background: #fff8df;
  color: #72560d;
}

.toast-warning .lucide {
  color: #b77b00;
}

@media (max-width: 1120px) {
  .topbar-brand {
    width: 205px;
    flex-basis: 205px;
  }

  .nebula-brand-logo {
    width: 140px;
  }

  .topbar-context {
    gap: 10px;
  }

  .select-like {
    width: 154px;
    flex-basis: 154px;
  }

  .topbar-org-field .select-like {
    width: 154px;
    flex-basis: 154px;
  }

  .select-like-site {
    width: 154px;
  }

  .topbar-actions {
    gap: 8px;
  }
}

@media (max-width: 900px) {
  /* Keep the desktop-density prototype readable on smaller viewports. */
  #app {
    width: 142.857143%;
    min-height: 142.857143dvh;
    zoom: 0.7;
  }

  .app-shell {
    min-width: 980px;
    height: 142.857143dvh;
  }

  .main {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .sidebar {
    width: 255px;
    flex-basis: 255px;
  }

  .toolbar,
  .modal-header,
  .modal-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    gap: 12px;
    min-width: 760px;
  }

  .topbar-actions {
    gap: 8px;
  }

  .toolbar-side {
    flex-wrap: wrap;
  }

  .search-field {
    width: min(240px, calc(100vw - 360px));
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .permission-grid,
  .filter-panel,
  .admin-summary {
    grid-template-columns: 1fr 1fr;
  }

  .license-inventory-page {
    margin-right: 0;
    margin-left: 0;
    padding: 0 12px;
  }

  .license-inventory-title-row,
  .license-section-header {
    align-items: stretch;
    flex-direction: column;
  }

  .license-title-style-buttons {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: flex-end;
    justify-content: stretch;
  }

  .license-title-style-buttons .payg-dropdown-scheme-button:nth-child(5) {
    grid-column: auto;
  }

  .license-overview-panel,
  .license-trial-panel {
    padding: 12px 12px 22px;
  }

  .license-header-actions,
  .license-filter-row {
    flex-wrap: wrap;
  }

  .my-place-scenario-control {
    align-items: flex-start;
    flex-direction: column;
  }

  .my-place-scenario-buttons {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .my-place-scenario-button {
    border-bottom: 1px solid #d9d9d9;
  }

  .license-devices-toolbar {
    height: auto;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .license-devices-actions {
    margin-left: 0;
  }

  .license-devices-pagination {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .license-status-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .license-status-label {
    padding: 0;
  }

  .license-detail-layout {
    grid-template-columns: 1fr;
  }

  .license-detail-summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
  }

  .license-detail-donut {
    width: 132px;
    height: 132px;
    border-width: 16px;
    margin: 0;
  }

  .license-trial-notice {
    padding: 14px 14px;
  }

  .license-trial-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .license-trial-activate-button {
    justify-self: end;
  }
}

@media (max-width: 620px) {
  .license-title-style-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-sidebar-collapsing .sidebar,
  .is-sidebar-expanding .sidebar,
  .device-submenu,
  .device-submenu.is-opening,
  .device-submenu.is-closing,
  .monitor-submenu,
  .monitor-submenu.is-opening,
  .monitor-submenu.is-closing,
  .configure-submenu,
  .configure-submenu.is-opening,
  .configure-submenu.is-closing,
  .app-shell.is-my-place-banner-visible .org-pack-banner {
    animation: none;
  }
}
