:root {
  --see-blue-grey-900: #263238;
  --see-blue-grey-800: #37474f;
  --see-blue-grey-700: #455a64;
  --see-blue-grey-100: #cfd8dc;
  --see-shell: #e6edf2;
  --see-shell-2: #d8e6ee;
  --see-shell-text: #24323c;
  --see-shell-muted: rgba(36, 50, 60, 0.68);
  --see-shell-border: rgba(36, 50, 60, 0.14);
  --see-shell-active: rgba(36, 50, 60, 0.10);
  --see-shell-card: rgba(255, 255, 255, 0.48);
  --see-shell-control: rgba(255, 255, 255, 0.66);
  --see-bg: #eef2f4;
  --see-surface: #ffffff;
  --see-surface-alt: #f5f7f8;
  --see-line: #d8e0e4;
  --see-text: #1f2933;
  --see-muted: #6b7785;
  --see-soc: #ff8a2a;
  --see-env: #55a84d;
  --see-eco: #3454d1;
  --see-review: #4d86e8;
  --see-draft: #ffca3a;
  --see-approved: #55a84d;
  --see-archived: #757575;
  --see-danger: #e05249;
  --see-sidebar-w: 244px;
  --see-sidebar-collapsed-w: 76px;
  --see-topbar-h: 64px;
  --see-radius: 8px;
  --see-shadow-1: 0 1px 2px rgba(15, 23, 42, 0.10);
  --see-shadow-2: 0 8px 20px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--see-bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--see-text);
  background: var(--see-bg);
  font-family: Inter, Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

.see-boot-screen,
.see-placeholder-view {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
}

.see-boot-orb,
.see-spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border-radius: 999px;
  border: 3px solid rgba(38, 50, 56, 0.18);
  border-top-color: var(--see-blue-grey-900);
  animation: see-spin 0.8s linear infinite;
}

@keyframes see-spin {
  to {
    transform: rotate(360deg);
  }
}

.see-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--see-sidebar-w) minmax(0, 1fr);
  grid-template-rows: var(--see-topbar-h) minmax(0, 1fr);
  background:
    linear-gradient(90deg, var(--see-shell) 0 var(--see-sidebar-w), var(--see-bg) var(--see-sidebar-w));
}

.see-shell-sidebar {
  grid-row: 1 / span 2;
  grid-column: 1;
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 12px 16px;
  color: var(--see-shell-text);
  background: var(--see-shell);
  border-right: 1px solid var(--see-shell-border);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.see-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--see-topbar-h);
  padding: 0 8px;
}

.see-sidebar-brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}

.see-sidebar-brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
}

.see-sidebar-brand small {
  display: block;
  margin-top: 2px;
  color: var(--see-shell-muted);
  font-size: 12px;
}

.see-sidebar-nav {
  display: grid;
  gap: 4px;
  padding-top: 12px;
}

.see-sidebar-nav[hidden],
.see-sidebar-account-card[hidden],
.see-topbar-actions[hidden],
.see-notification-panel[hidden],
.see-user-menu[hidden],
.see-route-panel[hidden],
.see-debug[hidden] {
  display: none !important;
}

.hidden-datapage {
  position: absolute !important;
  left: -99999px !important;
  top: 0 !important;
  width: 1400px !important;
  min-height: 1000px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.see-sidebar-nav button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: var(--see-radius);
  padding: 0 12px;
  color: var(--see-shell-muted);
  background: transparent;
  font-weight: 700;
  text-align: left;
}

.see-sidebar-nav button:hover,
.see-sidebar-nav button.is-active {
  color: var(--see-shell-text);
  background: var(--see-shell-active);
}

.see-nav-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  color: currentColor;
}

.see-nav-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.see-sidebar-account-card {
  margin-top: auto;
  padding: 12px;
  border-radius: var(--see-radius);
  color: var(--see-shell-text);
  background: var(--see-shell-card);
}

.see-sidebar-account-card small {
  display: block;
  color: var(--see-shell-muted);
  font-size: 11px;
  font-weight: 700;
}

.see-sidebar-account-card strong {
  display: block;
  margin: 4px 0 10px;
  font-size: 14px;
  line-height: 1.25;
}

.see-sidebar-account-card button {
  min-height: 32px;
  border: 1px solid var(--see-shell-border);
  border-radius: var(--see-radius);
  padding: 0 10px;
  color: var(--see-shell-text);
  background: var(--see-shell-control);
  font-size: 12px;
  font-weight: 800;
}

.see-sidebar-collapse {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-top: 1px solid var(--see-shell-border);
  padding: 10px 8px 0;
  color: var(--see-shell-muted);
  background: transparent;
  font-weight: 700;
}

.see-collapse-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  transition: transform 160ms ease;
}

.see-collapse-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.see-shell-topbar {
  grid-row: 1;
  grid-column: 2;
  position: relative;
  min-height: var(--see-topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: var(--see-shell-text);
  background: var(--see-shell-2);
  border-bottom: 1px solid var(--see-shell-border);
}

.see-topbar-spacer {
  min-width: 1px;
  flex: 1 1 auto;
}

.see-unit-scope {
  min-width: min(440px, 44vw);
  max-width: 560px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  margin-right: 10px;
}

.see-unit-scope[hidden] {
  display: none !important;
}

.see-unit-scope-status {
  flex: 0 0 auto;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid color-mix(in srgb, var(--see-review) 26%, var(--see-shell-border));
  border-radius: 999px;
  padding: 0 10px;
  color: var(--see-shell-text);
  background: color-mix(in srgb, var(--see-review) 10%, var(--see-shell-control));
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.see-unit-scope-status[hidden] {
  display: none !important;
}

.see-unit-scope-status-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid color-mix(in srgb, var(--see-shell-text) 22%, transparent);
  border-top-color: var(--see-review);
  border-radius: 999px;
  animation: see-spin 0.8s linear infinite;
}

.see-unit-scope select {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 36px;
  border: 1px solid var(--see-shell-border);
  border-radius: 999px;
  padding: 0 34px 0 12px;
  color: var(--see-shell-text);
  background: var(--see-shell-control);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.see-unit-scope select:focus {
  outline: 2px solid color-mix(in srgb, var(--see-review) 48%, transparent);
  outline-offset: 2px;
}

.see-unit-scope.is-filter-active select {
  border-color: color-mix(in srgb, var(--see-review) 48%, var(--see-shell-border));
  background: color-mix(in srgb, var(--see-review) 13%, var(--see-shell-control));
}

.see-unit-scope-clear {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: var(--see-shell-text);
  background: color-mix(in srgb, var(--see-shell-text) 9%, transparent);
  text-decoration: none;
}

.see-unit-scope-clear[hidden] {
  display: none !important;
}

.see-unit-scope-clear:hover {
  background: color-mix(in srgb, var(--see-shell-text) 16%, transparent);
}

.see-unit-scope-clear[aria-disabled="true"] {
  opacity: 0.58;
  pointer-events: none;
}

.see-unit-scope-clear svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.4;
}

.see-unit-scope-tooltip {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 120;
  width: max-content;
  max-width: 220px;
  border: 1px solid color-mix(in srgb, var(--see-shell-text) 18%, transparent);
  border-radius: 8px;
  padding: 8px 10px;
  color: #fff;
  background: var(--see-shell-text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.see-unit-scope-tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 10px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  border-left: 1px solid color-mix(in srgb, var(--see-shell-text) 18%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--see-shell-text) 18%, transparent);
  background: var(--see-shell-text);
}

.see-unit-scope-clear:hover .see-unit-scope-tooltip,
.see-unit-scope-clear:focus-visible .see-unit-scope-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.see-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-right: 14px;
}

.see-topbar-action {
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--see-shell-border);
  border-radius: 999px;
  padding: 0 12px 0 10px;
  color: var(--see-shell-text);
  background: var(--see-shell-control);
  font-size: 12px;
  font-weight: 850;
}

.see-topbar-action:hover {
  color: var(--see-shell-text);
  border-color: color-mix(in srgb, var(--see-shell-text) 26%, var(--see-shell-border));
  background: var(--see-shell-active);
}

.see-topbar-action-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: currentColor;
}

.see-topbar-action-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.05;
}

.see-topbar-action-icon-only {
  width: 36px;
  justify-content: center;
  padding: 0;
}

.see-topbar-action-icon-only .see-topbar-action-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.see-topbar-badge {
  position: absolute;
  top: -7px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 4px;
  color: #fff;
  background: var(--see-danger);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.see-topbar-badge.is-empty {
  display: none;
}

.see-notification-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 76px;
  z-index: 70;
  width: min(430px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - var(--see-topbar-h) - 28px));
  display: flex;
  flex-direction: column;
  border: 1px solid var(--see-line);
  border-radius: 12px;
  color: var(--see-text);
  background: color-mix(in srgb, var(--see-surface) 97%, transparent);
  box-shadow: var(--see-shadow-2);
  overflow: hidden;
}

.see-notification-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--see-line);
  background: var(--see-surface-alt);
}

.see-notification-head span,
.see-notification-head strong {
  display: block;
}

.see-notification-head span {
  color: var(--see-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.see-notification-head strong {
  margin-top: 3px;
  font-size: 16px;
}

.see-notification-head button {
  min-height: 30px;
  border: 1px solid var(--see-line);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--see-text);
  background: var(--see-surface);
  font-size: 12px;
  font-weight: 850;
}

.see-notification-list {
  min-height: 0;
  max-height: 430px;
  margin: 0;
  padding: 8px;
  overflow-y: auto;
  list-style: none;
}

.see-notification-item {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
}

.see-notification-item + .see-notification-item {
  margin-top: 6px;
}

.see-notification-item:hover {
  border-color: var(--see-line);
  background: var(--see-surface-alt);
}

.see-notification-dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--see-review);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--see-review) 16%, transparent);
}

.see-notification-item.is-warning .see-notification-dot {
  background: var(--see-draft);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--see-draft) 18%, transparent);
}

.see-notification-item.is-sync .see-notification-dot {
  background: var(--see-eco);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--see-eco) 16%, transparent);
}

.see-notification-item.is-error .see-notification-dot {
  background: var(--see-danger);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--see-danger) 16%, transparent);
}

.see-notification-copy {
  min-width: 0;
}

.see-notification-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.see-notification-line strong {
  color: var(--see-text);
  font-size: 13px;
  line-height: 1.25;
}

.see-notification-line time {
  flex: 0 0 auto;
  color: var(--see-muted);
  font-size: 11px;
  font-weight: 800;
}

.see-notification-copy p,
.see-notification-empty {
  margin: 4px 0 0;
  color: var(--see-muted);
  font-size: 12px;
  line-height: 1.4;
}

.see-notification-empty {
  padding: 18px;
  text-align: center;
}

.see-user-menu-wrap {
  position: relative;
}

.see-user-chip {
  position: relative;
  isolation: isolate;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--see-approved);
  border-radius: 50%;
  color: #fff;
  background: hsl(var(--see-user-chip-hue, 198deg) 42% 42%);
  font-size: 12px;
  font-weight: 900;
}

.see-user-chip::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: conic-gradient(
    from 0deg,
    var(--see-approved),
    color-mix(in srgb, var(--see-approved) 45%, var(--see-review)),
    var(--see-review),
    var(--see-approved)
  );
  pointer-events: none;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
}

.see-user-chip:hover::before,
.see-user-chip:focus-visible::before {
  opacity: 1;
  animation: see-user-ring-spin 900ms linear infinite;
}

@keyframes see-user-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.see-user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  width: 240px;
  padding: 8px;
  border: 1px solid var(--see-line);
  border-radius: var(--see-radius);
  color: var(--see-text);
  background: var(--see-surface);
  box-shadow: var(--see-shadow-2);
}

.see-user-menu-head {
  padding: 10px;
  border-bottom: 1px solid var(--see-line);
  margin-bottom: 6px;
}

.see-user-menu-head strong,
.see-user-menu-head small {
  display: block;
}

.see-user-menu-head strong {
  color: var(--see-text);
}

.see-user-menu-head small {
  margin-top: 3px;
  color: var(--see-muted);
}

.see-user-menu-link {
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--see-text);
  background: transparent;
  font-weight: 700;
  text-align: left;
}

.see-user-menu-link:hover {
  background: var(--see-surface-alt);
}

.see-user-menu-link.is-danger {
  color: var(--see-danger);
}

.see-shell-main {
  grid-row: 2;
  grid-column: 2;
  min-height: calc(100vh - var(--see-topbar-h));
  padding: 22px;
  overflow: auto;
  background: var(--see-bg);
}

.see-shell-view {
  width: 100%;
  min-width: 0;
}

.see-route-panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.see-debug {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: min(720px, calc(100vw - 32px));
  max-height: 40vh;
  overflow: auto;
  padding: 12px;
  border-radius: var(--see-radius);
  background: #111827;
  color: #d1fae5;
  box-shadow: var(--see-shadow-2);
}

.see-shell.is-nav-collapsed {
  grid-template-columns: var(--see-sidebar-collapsed-w) minmax(0, 1fr);
  background:
    linear-gradient(90deg, var(--see-shell) 0 var(--see-sidebar-collapsed-w), var(--see-bg) var(--see-sidebar-collapsed-w));
}

.see-shell.is-nav-collapsed .see-sidebar-brand div,
.see-shell.is-nav-collapsed .see-nav-label,
.see-shell.is-nav-collapsed .see-sidebar-account-card,
.see-shell.is-nav-collapsed .see-sidebar-collapse strong {
  display: none;
}

.see-shell.is-nav-collapsed .see-shell-sidebar {
  align-items: center;
  padding-inline: 10px;
}

.see-shell.is-nav-collapsed .see-sidebar-brand {
  justify-content: center;
  padding-inline: 0;
}

.see-shell.is-nav-collapsed .see-sidebar-nav button {
  width: 44px;
  height: 44px;
  min-height: 44px;
  justify-content: center;
  padding: 0;
  border-radius: 10px;
}

.see-shell.is-nav-collapsed .see-sidebar-collapse {
  justify-content: center;
  padding-inline: 0;
}

.see-shell.is-nav-collapsed .see-collapse-icon {
  transform: rotate(180deg);
}

.see-error {
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--see-danger) 34%, var(--see-line));
  border-radius: var(--see-radius);
  color: var(--see-danger);
  background: var(--see-soft-danger, #fff1f2);
}

body.see-is-logged-out {
  overflow: hidden;
}

body.see-is-logged-out .see-shell {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
}

.see-logout-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(31, 41, 51, 0.32);
}

.see-logout-overlay[hidden] {
  display: none !important;
}

.see-logout-card {
  width: min(420px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 12px;
  background: color-mix(in srgb, var(--see-surface) 96%, transparent);
  box-shadow: var(--see-shadow-2);
  text-align: center;
}

.see-logout-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border: 2px solid color-mix(in srgb, var(--see-danger) 30%, transparent);
  border-radius: 50%;
  background: var(--see-soft-danger, #fff6f5);
}

.see-logout-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid var(--see-danger);
  border-left-color: transparent;
  border-radius: 50%;
}

.see-logout-card p {
  margin: 0 0 6px;
  color: var(--see-danger);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.see-logout-card h1 {
  margin: 0;
  color: var(--see-text);
  font-size: 24px;
  line-height: 1.15;
}

.see-logout-card > span:not(.see-logout-icon) {
  display: block;
  margin: 10px auto 18px;
  max-width: 320px;
  color: var(--see-muted);
  line-height: 1.45;
}

.see-logout-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.see-logout-actions button {
  min-height: 38px;
  border-radius: var(--see-radius);
  padding: 0 14px;
  font-weight: 850;
}

.see-logout-primary {
  border: 1px solid var(--see-blue-grey-900);
  color: #fff;
  background: var(--see-blue-grey-900);
}

.see-logout-secondary {
  border: 1px solid var(--see-line);
  color: var(--see-text);
  background: var(--see-control-bg);
}

.see-logout-card small {
  display: block;
  margin-top: 12px;
  color: var(--see-muted);
}

@media (max-width: 880px) {
  .see-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    background: var(--see-bg);
  }

  .see-shell-sidebar {
    position: sticky;
    top: 0;
    z-index: 70;
    grid-column: 1;
    grid-row: 1;
    min-height: auto;
    max-height: none;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .see-shell-topbar,
  .see-shell-main {
    grid-column: 1;
  }

  .see-sidebar-brand {
    min-height: 44px;
    flex: 0 0 auto;
    padding: 0;
  }

  .see-sidebar-brand div,
  .see-sidebar-account-card,
  .see-nav-label,
  .see-sidebar-collapse strong {
    display: none;
  }

  .see-sidebar-nav {
    display: flex;
    flex: 1 1 auto;
    gap: 6px;
    padding-top: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .see-sidebar-nav::-webkit-scrollbar {
    display: none;
  }

  .see-sidebar-nav button {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
    border-radius: 10px;
  }

  .see-sidebar-collapse {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    border-top: 0;
    padding: 0;
  }

  .see-shell-topbar {
    grid-row: 2;
  }

  .see-topbar-actions {
    gap: 6px;
    margin-right: 10px;
  }

  .see-unit-scope {
    min-width: 0;
    max-width: none;
    flex: 1 1 auto;
    margin-left: 0;
  }

  .see-unit-scope-status {
    padding-inline: 8px;
  }

  .see-topbar-action {
    width: 36px;
    justify-content: center;
    padding: 0;
  }

  .see-topbar-action-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .see-notification-panel {
    left: 14px;
    right: 14px;
    width: auto;
  }

  .see-shell-main {
    grid-row: 3;
    padding: 14px;
  }

  .see-shell.is-nav-collapsed {
    grid-template-columns: 1fr;
    background: var(--see-bg);
  }

  .see-shell.is-nav-collapsed .see-shell-sidebar {
    align-items: center;
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
