@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("./fonts/IBMPlexSansArabic-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@keyframes zd-blink {
  50% {
    opacity: 0;
  }
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("./fonts/IBMPlexSansArabic-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("./fonts/IBMPlexSansArabic-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Kawkab Mono";
  src: url("./fonts/KawkabMono-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Kawkab Mono";
  src: url("./fonts/KawkabMono-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
}

[data-theme] {
  --zd-ui-tab-strip: color-mix(
    in srgb,
    var(--zd-surface) 55%,
    var(--zd-border)
  );
  --zd-ui-hover: color-mix(
    in srgb,
    var(--zd-surface) 66%,
    var(--zd-border)
  );
  --zd-ui-active: color-mix(
    in srgb,
    var(--zd-surface) 89%,
    var(--zd-clay)
  );
  --zd-ui-placeholder: color-mix(
    in srgb,
    var(--zd-border) 48%,
    var(--zd-muted)
  );
  --zd-ui-gutter: color-mix(
    in srgb,
    var(--zd-border) 70%,
    var(--zd-muted)
  );
  --zd-ui-olive-tint: color-mix(
    in srgb,
    var(--zd-olive) 16%,
    transparent
  );
}

:root[data-theme="night"],
.terminal-pane[data-theme="night"] {
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-width: 0;
  overflow: hidden;
  background: var(--zd-bg);
  color: var(--zd-ink);
  font-family: var(--zd-font-ui);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  margin: 0;
  font: inherit;
}

button,
select {
  cursor: default;
}

button,
select,
input {
  color: inherit;
}

button:focus-visible,
select:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid var(--zd-clay);
  outline-offset: 2px;
}

a {
  color: var(--zd-clay);
  text-decoration: none;
}

a:hover {
  color: var(--zd-clay-deep);
}

::placeholder {
  color: var(--zd-ui-placeholder);
  opacity: 1;
}

.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;
}

.playground {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--zd-bg);
  color: var(--zd-ink);
}

.topbar {
  z-index: 2;
  height: 54px;
  min-height: 54px;
  flex: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid var(--zd-border);
  background: var(--zd-surface);
}

.brand {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--zd-ink);
}

.brand-mark {
  width: 26px;
  height: 24px;
  flex: none;
  object-fit: contain;
}

.brand-marks {
  display: flex;
  align-items: center;
}

.brand-mark-night {
  display: none;
}

:root[data-theme="night"] .brand-mark-day {
  display: none;
}

:root[data-theme="night"] .brand-mark-night {
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-url {
  color: var(--zd-muted);
  font-family: var(--zd-font-code);
  font-size: 9.5px;
  line-height: 1.25;
  text-align: right;
}

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

.topbar-actions {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
}

.control {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--zd-border);
  border-radius: var(--zd-radius);
  background: var(--zd-surface);
  color: var(--zd-ink);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.control:hover {
  border-color: var(--zd-muted);
  background: var(--zd-ui-hover);
}

.control svg {
  width: 13px;
  height: 13px;
  flex: none;
}

.examples-toggle {
  border-color: color-mix(
    in srgb,
    var(--zd-border) 60%,
    var(--zd-clay)
  );
  background: var(--zd-ui-active);
  color: var(--zd-clay);
}

.version-control select {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--zd-border);
  border-radius: var(--zd-radius);
  background: var(--zd-surface);
  color: var(--zd-ink);
  font-size: 12.5px;
}

.theme-toggle {
  padding-inline: 10px;
}

.theme-toggle .moon-icon {
  display: none;
}

:root[data-theme="night"] .theme-toggle .sun-icon {
  display: none;
}

:root[data-theme="night"] .theme-toggle .moon-icon {
  display: block;
}

.github-link {
  color: var(--zd-muted);
  font-family: var(--zd-font-code);
  font-size: 11px;
  white-space: nowrap;
}

.github-link:hover {
  color: var(--zd-clay);
}

.text-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--zd-clay);
  font-size: inherit;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--zd-clay-deep);
}

.workspace {
  min-width: 0;
  min-height: 0;
  flex: 1;
  display: flex;
  overflow: hidden;
}

.examples-drawer {
  width: 300px;
  min-width: 300px;
  flex: 0 0 300px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--zd-border);
  background: var(--zd-surface);
  transition: width 0.25s ease, min-width 0.25s ease, flex-basis 0.25s ease;
}

.drawer-header {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px 10px;
}

.drawer-header h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.example-count,
.live-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  white-space: nowrap;
}

.example-count {
  padding: 1px 8px;
  background: var(--zd-ui-active);
  color: var(--zd-clay);
  font-size: 10.5px;
}

.drawer-header-spacer {
  flex: 1;
}

.drawer-close,
.new-file {
  border: 0;
  background: transparent;
  color: var(--zd-muted);
}

.drawer-close {
  padding: 2px 4px;
  font-size: 15px;
  line-height: 1;
}

.drawer-close:hover,
.new-file:hover {
  color: var(--zd-clay);
}

.drawer-search {
  flex: none;
  padding: 0 16px 12px;
}

.drawer-search input {
  width: 100%;
  padding: 7px 12px;
  border: 1px solid var(--zd-border);
  border-radius: var(--zd-radius);
  outline: none;
  background: var(--zd-bg);
  color: var(--zd-ink);
  font-size: 12px;
}

.drawer-search input:focus {
  border-color: var(--zd-clay);
}

.example-list {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 10px 10px;
  scrollbar-color: var(--zd-border) transparent;
  scrollbar-width: thin;
}

.example-row {
  width: 100%;
  display: block;
  flex: none;
  padding: 7px 8px;
  border: 0;
  border-radius: var(--zd-radius);
  background: transparent;
  color: var(--zd-ink);
  text-align: right;
}

.example-row:hover {
  background: var(--zd-ui-hover);
  color: var(--zd-ink);
}

.example-row.active {
  order: -1;
  background: var(--zd-ui-active);
  color: var(--zd-clay);
}

.example-name {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
}

.example-description {
  display: block;
  margin-top: 1px;
  overflow: hidden;
  color: var(--zd-muted);
  font-size: 10.5px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.example-row.active .example-name {
  color: var(--zd-clay);
  font-weight: 700;
}

.example-row.active .example-description {
  color: var(--zd-clay);
  opacity: 0.75;
}

.drawer-footer {
  min-height: 39px;
  flex: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-top: 1px solid var(--zd-border);
  font-size: 11px;
  white-space: nowrap;
}

.editor-pane {
  min-width: 0;
  min-height: 0;
  flex: 1.15 1 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--zd-border);
  background: var(--zd-surface);
}

.file-tabs {
  min-height: 40px;
  flex: none;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 12px 0;
  border-bottom: 1px solid var(--zd-border);
  background: var(--zd-ui-tab-strip);
  scrollbar-width: none;
}

.file-tabs::-webkit-scrollbar {
  display: none;
}

.file-tab {
  flex: none;
  padding: 7px 14px;
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: var(--zd-radius) var(--zd-radius) 0 0;
  margin-bottom: -1px;
  background: transparent;
  color: var(--zd-muted);
  font-family: var(--zd-font-code);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.45;
  white-space: nowrap;
}

.file-tab.active {
  border-color: var(--zd-border);
  background: var(--zd-surface);
  color: var(--zd-ink);
  font-weight: 700;
}

.new-file {
  flex: none;
  padding: 6px 8px;
  font-size: 14px;
  line-height: 1.5;
}

.code-area {
  min-width: 0;
  min-height: 0;
  flex: 1;
  display: flex;
  overflow: hidden;
  background: var(--zd-surface);
  color: var(--zd-syn-name);
  font-family: var(--zd-font-code);
  font-size: 13.5px;
  line-height: 2.2;
  direction: rtl;
}

#editor > .cm-editor {
  min-width: 0;
  min-height: 0;
  height: 100%;
  flex: 1;
  background: var(--zd-surface);
  color: var(--zd-syn-name);
  direction: rtl;
  font-family: var(--zd-font-code);
  font-size: 13.5px;
}

#editor > .cm-editor.cm-focused {
  outline: 2px solid var(--zd-clay);
  outline-offset: -2px;
}

#editor .cm-scroller {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  direction: rtl;
  font-family: var(--zd-font-code);
  line-height: 2.2;
  scrollbar-color: var(--zd-border) transparent;
  scrollbar-width: thin;
}

#editor .cm-content {
  min-width: max-content;
  padding: 16px 0 16px 14px;
  caret-color: var(--zd-ink);
  direction: rtl;
  text-align: start;
}

#editor .cm-line {
  padding: 0 10px;
}

#editor .cm-gutters {
  border: 0;
  background: var(--zd-surface);
  color: var(--zd-ui-gutter);
  direction: ltr;
  font-size: 11px;
  user-select: none;
}

#editor .cm-gutter {
  direction: ltr;
}

#editor .cm-lineNumbers .cm-gutterElement {
  min-width: 42px;
  padding: 0 14px 0 12px;
  direction: ltr;
  text-align: right;
}

#editor .cm-activeLine {
  background: color-mix(in srgb, var(--zd-clay) 7%, transparent);
}

#editor .cm-activeLineGutter {
  background: color-mix(in srgb, var(--zd-clay) 10%, transparent);
  color: var(--zd-muted);
}

#editor .cm-selectionBackground,
#editor .cm-content ::selection {
  background: color-mix(in srgb, var(--zd-clay) 24%, transparent);
}

#editor .cm-cursor,
#editor .cm-dropCursor {
  border-left-color: var(--zd-ink);
}

#editor .cm-specialChar,
#editor .cm-nonmatchingBracket {
  color: var(--zd-error);
}

#editor .cm-matchingBracket {
  background: color-mix(in srgb, var(--zd-olive) 24%, transparent);
}

#editor .cm-nonmatchingBracket {
  background: color-mix(in srgb, var(--zd-error) 18%, transparent);
}

#editor .cm-selectionMatch,
#editor .cm-searchMatch {
  background: color-mix(in srgb, var(--zd-gold) 24%, transparent);
}

#editor .cm-searchMatch-selected {
  background: color-mix(in srgb, var(--zd-clay) 30%, transparent);
}

#editor .cm-panels {
  border-color: var(--zd-border);
  background: var(--zd-surface);
  color: var(--zd-ink);
  font-family: var(--zd-font-ui);
}

#editor .cm-panel.cm-search {
  border-color: var(--zd-border);
  direction: rtl;
}

#editor .cm-textfield,
#editor .cm-button {
  border: 1px solid var(--zd-border);
  border-radius: var(--zd-radius);
  background: var(--zd-bg);
  background-image: none;
  color: var(--zd-ink);
  font: inherit;
}

#editor .cm-button:active {
  background: var(--zd-ui-hover);
  background-image: none;
}

#editor .cm-placeholder,
#editor .cm-foldPlaceholder {
  border-color: var(--zd-border);
  background: var(--zd-ui-hover);
  color: var(--zd-muted);
}

#editor .cm-line.educational-line,
#editor .cm-line[data-educational-panel-line] {
  padding: 2px 10px;
  margin-block: 0;
  background: var(--zd-syn-edu-bg);
  color: var(--zd-syn-edu);
  border-radius: 0;
  line-height: calc(2.2em - 4px);
}

#editor .cm-line.educational-line-start,
#editor .cm-line[data-educational-block-start] {
  border-start-start-radius: var(--zd-radius);
  border-start-end-radius: var(--zd-radius);
}

#editor .cm-line.educational-line-end,
#editor .cm-line[data-educational-block-end] {
  border-end-start-radius: var(--zd-radius);
  border-end-end-radius: var(--zd-radius);
}

#editor .cm-line.educational-line.cm-activeLine,
#editor .cm-line[data-educational-panel-line].cm-activeLine {
  background: color-mix(
    in srgb,
    var(--zd-clay) 7%,
    var(--zd-syn-edu-bg)
  );
}

.word,
[data-highlight-kind="word"] {
  color: var(--zd-syn-name);
  font-weight: 400;
}

.word.vocabulary,
[data-highlight-kind="word"][data-vocabulary] {
  color: var(--zd-syn-kw);
  font-weight: 700;
}

.literal,
[data-highlight-kind="literal"] {
  color: var(--zd-syn-lit);
}

.number,
[data-highlight-kind="number"] {
  color: var(--zd-syn-num);
}

.string,
[data-highlight-kind="string"] {
  color: var(--zd-syn-str);
}

.comment,
[data-highlight-kind="comment"] {
  color: var(--zd-syn-comment);
}

.educational-prefix,
.educational-prose,
[data-highlight-kind="educational-prefix"],
[data-highlight-kind="educational-prose"] {
  color: var(--zd-syn-edu);
}

.educational-prefix,
[data-highlight-kind="educational-prefix"] {
  font-weight: 700;
}

.delimiter,
.operator,
.punctuation,
[data-highlight-kind="delimiter"],
[data-highlight-kind="operator"],
[data-highlight-kind="punctuation"] {
  color: var(--zd-syn-punct);
}

.diagnostic-span,
#editor .cm-line [data-diagnostic],
[data-diagnostic="span"] {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--zd-error);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-skip-ink: none;
}

#editor .cm-line.diagnostic-line,
#editor .cm-line[data-diagnostic],
#editor .cm-line[data-diagnostic="line"] {
  background: color-mix(in srgb, var(--zd-error) 12%, transparent);
}

.editor-toolbar {
  min-height: 56px;
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--zd-border);
  background: var(--zd-surface);
}

.toolbar-button,
.run-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid var(--zd-border);
  border-radius: var(--zd-radius);
  background: var(--zd-surface);
  color: var(--zd-ink);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.toolbar-button:hover {
  background: var(--zd-ui-hover);
}

.run-button {
  gap: 8px;
  padding-inline: 14px;
  border-color: var(--zd-clay);
  background: var(--zd-clay);
  color: var(--zd-surface);
  font-size: 13px;
  font-weight: 700;
}

.run-button:hover {
  border-color: var(--zd-clay-deep);
  background: var(--zd-clay-deep);
}

.run-button svg {
  width: 11px;
  height: 11px;
  flex: none;
}

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  padding: 1px 6px;
  border: 1px solid var(--zd-border);
  border-radius: 4px;
  background: var(--zd-ui-hover);
  color: inherit;
  font-family: var(--zd-font-code);
  font-size: 9.5px;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
}

.run-button kbd {
  border-color: color-mix(in srgb, var(--zd-surface) 28%, transparent);
  background: color-mix(in srgb, var(--zd-surface) 22%, transparent);
}

.read-input {
  min-width: 116px;
  min-height: 34px;
  flex: 1;
  display: flex;
}

.read-input input {
  width: 100%;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid var(--zd-border);
  border-radius: var(--zd-radius);
  outline: none;
  background: var(--zd-bg);
  color: var(--zd-ink);
  font-family: var(--zd-font-code);
  font-size: 11.5px;
}

.read-input input:focus {
  border-color: var(--zd-clay);
}

.terminal-pane {
  min-width: 0;
  min-height: 0;
  flex: 0.85 1 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--zd-bg);
  color: var(--zd-ink);
}

.terminal-tabs {
  height: 40px;
  min-height: 40px;
  flex: none;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 10px;
  border-bottom: 1px solid var(--zd-border);
  background: var(--zd-surface);
  scrollbar-width: none;
}

.terminal-tabs::-webkit-scrollbar {
  display: none;
}

.terminal-tab {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  padding: 10px 12px 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: var(--zd-muted);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.terminal-tab.active {
  border-bottom-color: var(--zd-clay);
  color: var(--zd-ink);
}

.live-badge {
  padding: 1px 7px;
  background: var(--zd-ui-olive-tint);
  color: var(--zd-olive);
  font-size: 9.5px;
  line-height: 1.4;
}

.terminal-tabs-spacer {
  min-width: 8px;
  flex: 1;
}

.clear-button {
  flex: none;
  padding: 4px 11px;
  border: 1px solid var(--zd-border);
  border-radius: 7px;
  background: transparent;
  color: var(--zd-muted);
  font-size: 11px;
  line-height: 1.4;
}

.clear-button:hover {
  border-color: var(--zd-muted);
  color: var(--zd-ink);
}

.terminal-output {
  min-height: 0;
  flex: 1;
  overflow: auto;
  padding: 16px 18px;
  font-family: var(--zd-font-code);
  font-size: 13px;
  line-height: 2.1;
  scrollbar-color: var(--zd-border) transparent;
  scrollbar-width: thin;
}

.run-heading {
  margin: 0 0 4px;
  color: var(--zd-muted);
  font-size: 11px;
}

.output-lines {
  display: flex;
  flex-direction: column;
  color: var(--zd-ink);
  font-family: inherit;
  font-style: normal;
}

.run-success {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--zd-olive);
}

.diagnostic-card {
  max-width: 760px;
  padding: 14px 16px;
  border: 1px solid color-mix(
    in srgb,
    var(--zd-error) 55%,
    var(--zd-border)
  );
  border-inline-start-width: 3px;
  border-radius: var(--zd-radius);
  background: color-mix(in srgb, var(--zd-error) 8%, var(--zd-bg));
  color: var(--zd-ink);
  font-family: var(--zd-font-ui);
}

.diagnostic-card[hidden] {
  display: none;
}

.diagnostic-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin: 0;
}

.diagnostic-category {
  color: var(--zd-madder);
  font-weight: 700;
}

.diagnostic-location {
  color: var(--zd-muted);
  font-family: var(--zd-font-code);
  font-size: 11px;
}

.diagnostic-source {
  margin: 12px 0 0;
  padding: 8px 12px;
  border-inline-start: 2px solid var(--zd-border);
  background: var(--zd-surface);
  color: var(--zd-ink);
  direction: rtl;
  font-family: var(--zd-font-code);
  font-size: 12.5px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  unicode-bidi: plaintext;
  white-space: pre-wrap;
}

.diagnostic-message {
  margin: 10px 0 0;
  color: var(--zd-ink);
  font-size: 13px;
  line-height: 1.8;
}

.terminal-session {
  min-height: 0;
  flex: 1;
  flex-direction: column;
  overflow: auto;
  padding: 16px 18px;
  font-family: var(--zd-font-code);
  font-size: 13px;
  line-height: 2.1;
}

.terminal-session:not([hidden]) {
  display: flex;
}

.terminal-session[hidden] {
  display: none;
}

.session-hint {
  margin: 8px 0 12px;
  color: var(--zd-muted);
  font-family: var(--zd-font-ui);
  font-size: 12px;
  line-height: 1.8;
}

.session-hint kbd {
  margin-inline: 2px;
  color: var(--zd-ink);
}

.suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suggestion-chips button {
  padding: 3px 12px;
  border: 1px solid var(--zd-border);
  border-radius: 999px;
  background: transparent;
  color: var(--zd-muted);
  font-size: 11.5px;
}

.session-prompt {
  margin-top: auto;
  color: var(--zd-muted);
}

.session-prompt i {
  width: 7px;
  height: 16px;
  display: inline-block;
  margin-inline-start: 4px;
  background: var(--zd-clay);
  vertical-align: -3px;
  animation: zd-blink 1.1s steps(2) infinite;
}

.repl-marker {
  color: var(--zd-repl-marker);
  font-weight: 700;
}

.statusbar {
  height: 30px;
  min-height: 30px;
  flex: none;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 14px;
  border-top: 1px solid var(--zd-border);
  background: var(--zd-surface);
  color: var(--zd-muted);
  font-size: 11px;
  white-space: nowrap;
  scrollbar-width: none;
}

.statusbar::-webkit-scrollbar {
  display: none;
}

.last-run {
  color: var(--zd-ok);
}

.statusbar-spacer {
  min-width: 8px;
  flex: 1;
}

.status-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.status-version {
  font-family: var(--zd-font-code);
  font-size: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .examples-drawer {
    transition: none;
  }

  .session-prompt i {
    animation: none;
  }
}
