/* public/styles/foundation/tokens.css */
:root {
  --bg: #f7f3ec;
  --panel: #fffdf9;
  --panel-alt: #fcfbf8;
  --panel-tint: #f6f0e7;
  --panel-soft: #fbf7f1;
  --panel-warm: #f3ece2;
  --text: #1d1b19;
  --muted: #6f685f;
  --nav-link: #355c74;
  --nav-link-hover: #27475c;
  --action-bg: #1f655a;
  --action-bg-strong: #174b43;
  --action-border: #123832;
  --action-text: #ffffff;
  --action-ghost-bg: #f7fbfa;
  --action-ghost-border: #b9d2cb;
  --action-ghost-text: #1c5a50;
  --accent: var(--action-bg);
  --accent-strong: var(--action-bg-strong);
  --accent-strong-border: var(--action-border);
  --accent-soft: var(--action-ghost-bg);
  --accent-border: var(--action-ghost-border);
  --state-positive-bg: #eef3ea;
  --state-positive-border: #d8e2d1;
  --state-positive-text: #5f6f5d;
  --label-positive-bg: var(--state-positive-bg);
  --label-positive-border: var(--state-positive-border);
  --label-positive-text: var(--state-positive-text);
  --state-neutral-bg: #f3efe8;
  --state-neutral-border: #e4ddd2;
  --state-neutral-text: #6d6b66;
  --control-secondary-bg: var(--action-ghost-bg);
  --control-secondary-border: var(--action-ghost-border);
  --control-secondary-text: var(--action-ghost-text);
  --control-secondary-hover-bg: #ffffff;
  --control-secondary-hover-border: #8fb9af;
  --control-secondary-active-bg: #e6f1ee;
  --control-secondary-active-border: #6fa79c;
  --control-secondary-active-text: var(--action-bg-strong);
  --control-focus-ring: rgba(31, 101, 90, 0.12);
  --eyebrow: #8a8074;
  --border: #e7ddd0;
  --warning-text: #8a5220;
  --warning: var(--warning-text);
  --warning-bg: #fbf1e4;
  --warning-border: #efd1ab;
  --danger-text: #8d4139;
  --danger: var(--danger-text);
  --danger-bg: #f8ece8;
  --danger-border: #edc4bb;
  --commerce-bg: #f6edde;
  --commerce-border: #e6d0a8;
  --commerce-text: #7a5a2e;
  --commerce-lock: var(--commerce-text);
  --commerce-lock-bg: var(--commerce-bg);
  --commerce-lock-border: var(--commerce-border);
  --info: #426760;
  --info-text: #426760;
  --info-bg: #edf4f3;
  --info-border: #d4e4e1;
  --shadow-soft: 0 12px 28px rgba(29, 27, 25, 0.08);
  --shadow-deep: 0 20px 40px rgba(29, 27, 25, 0.14);
  --shadow: var(--shadow-deep);
  --font-product-ui:
    "Avenir Next",
    Avenir,
    ui-rounded,
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  --font-editorial:
    "Georgia",
    "Times New Roman",
    serif;
  --font-product: var(--font-product-ui);
  --font-interface: var(--font-product-ui);
  --sidebar-max: 420px;
  --panel-shell-inline-gap: 24px;
  --section-gap: 10px;
  --section-pad: 12px;
  --control-radius: 10px;
  --assist-width: 272px;
  --assist-offset: 14px;
  --card-label-size: 12px;
  --card-help-size: 12px;
  --card-help-line: 1.4;
}

/* public/styles/foundation/accessibility.css */
.visually-hidden,
.setup-flow__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* public/styles/foundation/actions.css */
.action,
.button {
  border: 1px solid var(--accent-strong-border);
  background:
    linear-gradient(
      180deg,
      var(--accent) 0%,
      var(--accent-strong) 100%);
  color: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-family: var(--font-interface);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(31, 111, 92, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 120ms ease,
    box-shadow 120ms ease,
    border-color 120ms ease,
    background 120ms ease;
  text-decoration: none;
}
.action:not(:disabled):hover,
.action:not(:disabled):focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: #103228;
  background:
    linear-gradient(
      180deg,
      #24836d 0%,
      #123d32 100%);
  box-shadow: 0 14px 28px rgba(31, 111, 92, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.action:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.action--wide {
  width: 100%;
}
.action--small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 8px;
  font-size: 10px;
  border-radius: 999px;
  line-height: 1;
}
.action--ghost {
  background: var(--control-secondary-bg);
  color: var(--control-secondary-text);
  border-color: var(--control-secondary-border);
  box-shadow: none;
}
.action--ghost:not(:disabled):hover,
.action--ghost:not(:disabled):focus-visible {
  background: #fff;
  color: #103228;
  border-color: rgba(20, 62, 51, 0.34);
  box-shadow: 0 12px 24px rgba(20, 62, 51, 0.08);
}
.action--danger {
  background: #7a2e2e;
  border-color: #7a2e2e;
  box-shadow: 0 10px 22px rgba(122, 46, 46, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.action--danger:not(:disabled):hover,
.action--danger:not(:disabled):focus-visible {
  background: #662424;
  border-color: #662424;
  box-shadow: 0 14px 28px rgba(122, 46, 46, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.action--danger.action--ghost {
  background: rgba(255, 255, 255, 0.98);
  color: #7a2e2e;
  border-color: #e6caca;
  box-shadow: none;
}
.action--danger.action--ghost:not(:disabled):hover,
.action--danger.action--ghost:not(:disabled):focus-visible {
  background: #fff5f4;
  color: #662424;
  border-color: #dca8a8;
  box-shadow: 0 12px 24px rgba(122, 46, 46, 0.1);
}

/* public/styles/foundation/base-container.css */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-product-ui);
  color: var(--text);
  background:
    radial-gradient(
      circle at top,
      rgba(255, 253, 249, 0.98) 0%,
      rgba(255, 253, 249, 0) 48%),
    linear-gradient(
      180deg,
      #fcf8f2 0%,
      #f7f3ec 100%);
}
body:not(.marketing-page),
body:not(.marketing-page) button,
body:not(.marketing-page) input,
body:not(.marketing-page) select,
body:not(.marketing-page) textarea {
  font-family: var(--font-product-ui);
}
body.container-page {
  --container-harness-offset: 128px;
}
body.container-page .assist-status {
  top: calc(22px + var(--container-harness-offset));
}
.account-page,
.admin-page,
.commerce-page,
.account-page button,
.account-page input,
.account-page select,
.account-page textarea,
.admin-page button,
.admin-page input,
.admin-page select,
.admin-page textarea,
.commerce-page button,
.commerce-page input,
.commerce-page select,
.commerce-page textarea,
.action,
.button,
.admin-link,
.admin-task-link,
.admin-task-nav__label,
.link--button {
  font-family: var(--font-interface);
}
.container-harness {
  width: min(calc(100vw - var(--panel-shell-inline-gap)), 980px);
  margin: 18px auto 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(248, 244, 236, 0.98) 0%,
      rgba(255, 255, 255, 0.96) 100%);
  box-shadow: var(--shadow-soft);
}
.container-harness__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px 16px;
}
.container-harness__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.container-harness__title h2 {
  font-size: 18px;
}
.container-harness__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.container-harness__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}
.container-harness__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.container-harness__toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.container-harness__actions .action {
  width: auto;
}
.container-harness__toggles .action {
  width: auto;
}
.container-harness__status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 12px;
  color: var(--muted);
}
.container-harness__status strong {
  color: var(--text);
}
.container-harness__log {
  min-height: 108px;
  max-height: 180px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8f5ef;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
}
.container-harness__log p {
  margin: 0;
}
.container-harness__card--wide {
  grid-column: 1 / -1;
}
.container-harness__inline-control {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.container-harness__inline-control label {
  font-size: 12px;
  font-weight: 700;
}
.container-harness__select {
  min-height: 34px;
  max-width: min(100%, 280px);
  padding: 7px 10px;
  border: 1px solid var(--control-secondary-border);
  border-radius: var(--control-radius);
  background: var(--control-secondary-bg);
  color: var(--control-secondary-text);
  font-family: var(--font-interface);
  font-size: 12px;
  line-height: 1.2;
}
.container-harness__select:focus-visible {
  outline: 3px solid var(--control-focus-ring);
  border-color: var(--control-secondary-active-border);
}
.container-oauth-callback-preview {
  margin-top: 12px;
  margin-bottom: 16px;
}
.container-oauth-callback-preview__host {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: clamp(16px, 4vw, 28px);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
}
.container-oauth-callback-preview__host[hidden] {
  display: none;
}
.container-oauth-callback-preview__host .oauth-card {
  margin-bottom: clamp(8px, 2vw, 16px);
  box-shadow: var(--shadow-soft);
}
.container-zoom-chat-preview {
  margin-top: 0;
}
.container-zoom-chat-preview__message {
  margin: 0;
  white-space: pre-wrap;
  overflow: auto;
  max-height: 320px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8f5ef;
  color: var(--text);
  font-family: var(--font-product-ui);
  font-size: 13px;
  line-height: 1.5;
}

/* public/styles/foundation/container-responsive.css */
@media (max-width: 359px) {
  body.container-page {
    --container-harness-offset: 0px;
  }
  body.container-page .assist-status {
    top: 14px;
  }
  .container-harness {
    width: min(calc(100vw - 16px), 980px);
    margin-top: 64px;
  }
  .container-harness__grid {
    grid-template-columns: 1fr;
  }
}

/* public/styles/foundation/panel-shell.css */
.panel {
  position: relative;
  width: min(calc(100vw - var(--panel-shell-inline-gap)), var(--sidebar-max));
  margin: 10px auto 16px;
  padding: 12px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 253, 249, 0.98) 0%,
      rgba(251, 247, 241, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-deep);
}
.panel--sidebar {
  backdrop-filter: blur(6px);
}
.app-loading .assist-status {
  visibility: hidden;
}
.app-loading .panel,
.app-switching-context .panel {
  min-height: min(460px, calc(100vh - 20px));
  max-height: calc(100vh - 20px);
  overflow: hidden;
}
@supports (height: 100dvh) {
  .app-loading .panel,
  .app-switching-context .panel {
    min-height: min(460px, calc(100dvh - 20px));
    max-height: calc(100dvh - 20px);
  }
}
.app-loading .panel__stack,
.app-switching-context .panel__stack {
  display: none;
}
.app-loading-cover {
  position: absolute;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  min-height: inherit;
  padding: clamp(12px, 4vw, 20px);
  overflow: hidden;
  border-radius: inherit;
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 242, 0.97) 0%,
      rgba(247, 245, 241, 0.99) 100%);
  text-align: center;
}
.app-loading .app-loading-cover,
.app-switching-context .app-loading-cover {
  display: grid;
}
.app-loading-cover__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: center;
  gap: clamp(7px, 1.5vh, 11px);
  box-sizing: border-box;
  width: min(326px, 100%);
  max-height: 100%;
  min-height: 0;
  margin: 0 auto;
}
.app-loading-cover--blocked .app-loading-cover__card {
  gap: clamp(6px, 1.3vh, 9px);
  width: min(320px, 100%);
}
.app-loading-cover__spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(31, 111, 92, 0.18);
  border-top-color: var(--accent);
  border-radius: 999px;
  animation: app-loading-spin 0.9s linear infinite;
}
.app-loading-cover--blocked .app-loading-cover__spinner {
  display: none;
}
.app-loading-cover__title {
  max-width: 100%;
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}
.app-loading-cover--blocked .app-loading-cover__title {
  font-size: 14px;
}
.app-loading-cover__copy {
  max-width: 300px;
  margin: 0;
  line-height: 1.35;
}
.app-loading-cover--blocked .app-loading-cover__copy {
  max-width: 280px;
  font-size: 12px;
  line-height: 1.3;
}
.app-loading-cover__diagnostics[hidden] {
  display: none;
}
.app-loading-cover__diagnostics {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--muted);
  text-align: center;
}
.app-loading-cover__diagnostics-summary::-webkit-details-marker {
  display: none;
}
.app-loading-cover__diagnostics-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-sizing: border-box;
  width: auto;
  min-height: 24px;
  padding: 3px 5px;
  list-style: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}
.app-loading-cover__diagnostics-summary::after {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: -2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 120ms ease;
}
.app-loading-cover__diagnostics-summary:focus-visible {
  outline: 3px solid var(--control-focus-ring);
  outline-offset: 2px;
}
.app-loading-cover__diagnostics[open] .app-loading-cover__diagnostics-summary::after {
  margin-top: 2px;
  transform: rotate(225deg);
}
.app-loading-cover__diagnostics-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
  padding: 0 8px 8px;
  overflow: auto;
  overscroll-behavior: contain;
  text-align: left;
}
.app-loading-cover__diagnostics[open] .app-loading-cover__diagnostics-body {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 140;
  width: min(352px, calc(100vw - 28px));
  max-height: min(64vh, 326px);
  padding: 10px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow-deep);
}
@supports (height: 100dvh) {
  .app-loading-cover__diagnostics[open] .app-loading-cover__diagnostics-body {
    max-height: min(64dvh, 326px);
  }
}
.app-loading-cover__diagnostics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.app-loading-cover__diagnostics-title {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.app-loading-cover__diagnostics-close {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 5px 9px;
  font-size: 11px;
}
.app-loading-cover__diagnostics-text {
  box-sizing: border-box;
  width: 100%;
  max-height: min(40vh, 210px);
  margin: 0;
  padding: 8px;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace);
  font-size: 10px;
  line-height: 1.35;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.app-loading-cover__diagnostics-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.app-loading-cover__diagnostics-copy {
  flex: 0 0 auto;
  padding: 6px 10px;
  font-size: 11px;
}
.app-loading-cover__diagnostics-copy-status {
  min-height: 14px;
  font-size: 10px;
}
.app-loading-cover__scope-picker[hidden] {
  display: none;
}
.app-loading-cover__scope-picker {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.app-loading-cover--blocked .app-loading-cover__scope-picker {
  gap: 3px;
}
.app-loading-cover__scope-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.app-loading-cover__scope-select {
  width: 100%;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--control-secondary-border);
  border-radius: var(--control-radius);
  background: var(--control-secondary-bg);
  color: var(--control-secondary-text);
  font-family: var(--font-interface);
  font-size: 12px;
  line-height: 1.2;
}
.app-loading-cover--blocked .app-loading-cover__scope-select {
  min-height: 30px;
}
.app-loading-cover__scope-select:focus-visible {
  outline: 3px solid var(--control-focus-ring);
  border-color: var(--control-secondary-active-border);
}
.app-loading-cover__scope-select:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.app-loading-cover__action[hidden] {
  display: none;
}
.app-loading-cover__helper-copy[hidden],
.app-loading-cover__secondary-actions[hidden] {
  display: none;
}
.app-loading-cover__helper-copy {
  max-width: 276px;
  margin: clamp(10px, 1.8vh, 14px) auto 0;
  padding-top: clamp(7px, 1.3vh, 10px);
  color: var(--muted);
  font-family: var(--font-interface);
  font-size: 11px;
  line-height: 1.3;
}
.app-loading-cover__helper-copy::before {
  content: "";
  display: block;
  width: min(210px, 72%);
  margin: 0 auto clamp(7px, 1.3vh, 10px);
  border-top: 1px solid var(--border);
}
.app-loading-cover__secondary-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.app-loading-cover__secondary-actions .app-loading-cover__action {
  margin-top: 0;
  padding: 5px 9px;
}
.app-loading-cover__action {
  margin-top: 0;
}
.app-loading-cover--blocked .app-loading-cover__action {
  padding-top: 7px;
  padding-bottom: 7px;
}
@media (max-height: 520px) {
  .app-loading-cover {
    padding: 12px;
  }
  .app-loading-cover__card {
    gap: 6px;
  }
  .app-loading-cover__spinner {
    width: 22px;
    height: 22px;
  }
  .app-loading-cover__copy {
    line-height: 1.28;
  }
  .app-loading-cover__diagnostics[open] .app-loading-cover__diagnostics-body {
    width: min(360px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
  }
}
@supports (height: 100dvh) {
  @media (max-height: 520px) {
    .app-loading-cover__diagnostics[open] .app-loading-cover__diagnostics-body {
      max-height: calc(100dvh - 24px);
    }
  }
}
.panel__header {
  position: sticky;
  top: 12px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 var(--section-gap);
  padding: var(--section-pad);
  background:
    linear-gradient(
      180deg,
      rgba(255, 253, 249, 0.98) 0%,
      rgba(251, 247, 241, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}
.app-header__identity {
  min-width: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.app-header__identity-row {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.app-header__brand {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.app-header__slogan {
  margin: 0;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.app-plan-chip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  max-width: 100%;
  margin-top: 2px;
  color: rgba(78, 74, 67, 0.9);
}
.app-plan-chip__title {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--commerce-lock);
  letter-spacing: 0.01em;
}
.app-plan-chip__separator {
  font-size: 10px;
  line-height: 1;
  color: rgba(122, 90, 43, 0.45);
}
.app-plan-chip__detail {
  font-size: 10px;
  line-height: 1.35;
  color: rgba(78, 74, 67, 0.74);
}
.app-header__brand:hover,
.app-header__brand:focus-visible {
  text-decoration: underline;
}
.panel__stack {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

/* public/styles/foundation.css */

/* public/styles/zoom-app/help-page.css */
.subtle {
  margin: 0;
  color: var(--muted);
  font-size: var(--card-help-size);
  line-height: var(--card-help-line);
}
.settings {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}
.settings h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}
.help-page__content {
  width: min(calc(100vw - var(--panel-shell-inline-gap)), 720px);
  margin: 0 auto;
  padding: 12px;
}
.help-page--embed .help-page__content {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 12px;
}
.help-page__intro h1 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}
.help-page__faq {
  gap: 12px;
}
.help-page__faq-item {
  display: grid;
  gap: 6px;
  padding-block: 2px;
}
.help-page__faq-item h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}

/* public/styles/entrypoints/zoom-app-help.css */
