body {
  background: var(--st-color-surface-background);
  color: var(--st-color-text-primary);
  font-family: var(--st-font-family);
}

h1,
h2,
h3 {
  font-family: var(--st-font-family-display);
  letter-spacing: 0;
}

.st-shell {
  --st-current-sidebar-width: var(--st-shell-sidebar-width);
  background: var(--st-color-surface-background);
  color: var(--st-color-text-primary);
  height: 100vh;
  overflow: hidden;
  position: relative;
}

:root[data-sidebar-collapsed="true"] .st-shell,
.st-shell.is-sidebar-collapsed {
  --st-current-sidebar-width: var(--st-shell-sidebar-collapsed-width);
}

:root.st-sidebar-preload .st-shell-main,
:root.st-sidebar-preload .st-shell-sidebar {
  transition: none !important;
}

:root.st-shell-preload .st-shell,
:root.st-shell-preload .st-drawer,
:root.st-shell-preload .st-drawer-backdrop,
:root.st-shell-preload .st-workspace-root,
:root.st-shell-preload .st-setup-helper-root.is-panel-host {
  visibility: hidden;
}

.st-shell-main {
  background: var(--st-color-surface-background);
  height: calc(100vh - var(--st-shell-topbar-height));
  margin-left: var(--st-current-sidebar-width);
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  padding-left: 0;
  padding-top: 0;
  transition: margin-left 0.18s ease;
}

.st-shell-content {
  background: var(--st-color-surface-background);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  max-width: none;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.st-subscription-attention-banner {
  flex: 0 0 auto;
  margin: var(--st-space-6) var(--st-page-gutter) 0;
}

.st-shell :is(button, [href], input, select, textarea, [tabindex]):focus-visible {
  box-shadow: 0 0 0 4px var(--st-color-focus-ring);
  outline: 2px solid var(--st-color-brand-primary);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .st-shell {
    --st-current-sidebar-width: 0px;
  }

  .st-shell-main {
    margin-left: 0;
  }

  .st-shell-sidebar {
    display: none;
  }

  .st-shell-content {
    padding: 0;
  }

  .st-subscription-attention-banner {
    margin-left: var(--st-space-4);
    margin-right: var(--st-space-4);
  }
}

@media (max-width: 699px) {
  .st-subscription-attention-banner {
    margin: var(--st-space-4) var(--st-space-3) 0;
  }
}
