:root {
  color-scheme: light;
  --bg: #f7f7f5;
  --surface: #fff;
  --surface-2: #f0f1ee;
  --text: #171a18;
  --muted: #737873;
  --line: #dedfda;
  --line-soft: #e9eae6;
  --accent: #16794a;
  --accent-soft: #dff3e8;
  --shadow: 0 18px 50px rgba(28, 36, 31, 0.12);
  font-family: Geist, "SF Pro Text", "PingFang SC", system-ui, sans-serif;
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #111411;
  --surface: #171b18;
  --surface-2: #202520;
  --text: #eef1ed;
  --muted: #9aa199;
  --line: #303630;
  --line-soft: #272c28;
  --accent: #65d99a;
  --accent-soft: #193c2a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
}
button,
input {
  font: inherit;
}
button,
a {
  color: inherit;
}
button {
  cursor: pointer;
}
svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 30;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--surface);
}
:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 42%, transparent);
  outline-offset: 2px;
}
.topbar {
  height: 58px;
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 228px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(16px);
}
.brand {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-name {
  font-weight: 650;
  letter-spacing: -0.02em;
}
.topnav {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 22px;
  gap: 24px;
}
.topnav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
}
.topnav a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 18px;
}
.icon-button,
.theme-button {
  border: 1px solid var(--line);
  background: var(--surface);
  height: 34px;
  border-radius: 9px;
}
.icon-button {
  width: 34px;
  display: grid;
  place-items: center;
}
.theme-button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: var(--muted);
}
.theme-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.app-shell {
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  min-height: calc(100dvh - 58px);
}
.sidebar {
  position: sticky;
  top: 58px;
  height: calc(100dvh - 58px);
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.sidebar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 9px 16px;
  font-size: 12px;
}
.sidebar-head strong {
  letter-spacing: 0.02em;
}
.sidebar-head span {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.side-nav {
  display: grid;
  gap: 3px;
}
.side-link,
.framework-option {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 9px;
  color: var(--muted);
  text-align: left;
}
.side-link span,
.framework-option span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.side-link svg {
  width: 16px;
}
.side-link small,
.framework-option small {
  font-size: 11px;
}
.side-link:hover,
.framework-option:hover {
  background: var(--surface-2);
  color: var(--text);
}
.side-link.is-active,
.framework-option.is-active {
  background: var(--surface);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-soft);
}
.sidebar-section {
  margin-top: 27px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.sidebar-section > p {
  margin: 0 9px 8px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.framework-option i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #111;
  color: #fff;
  font-style: normal;
  font-size: 10px;
}
.sidebar-note {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line-soft);
  padding: 18px 9px 0;
}
.sidebar-note > div {
  display: grid;
  gap: 2px;
}
.sidebar-note strong {
  font-size: 11px;
}
.sidebar-note small {
  color: var(--muted);
  font-size: 10px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.gallery-main {
  min-width: 0;
  padding: 30px clamp(20px, 3vw, 48px) 24px;
}
.gallery-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1500px;
  margin: 0 auto 27px;
}
.breadcrumb {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
}
.breadcrumb span {
  color: var(--text);
}
h1 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.toolbar-actions {
  display: flex;
  gap: 9px;
}
.search-control {
  height: 38px;
  width: min(330px, 34vw);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  color: var(--muted);
}
.search-control svg {
  width: 16px;
}
.search-control input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}
.search-control kbd {
  font-size: 11px;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-2);
}
.density-control {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  padding: 3px;
}
.density-control button {
  width: 31px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  display: grid;
  place-items: center;
}
.density-control button.is-active {
  background: var(--surface-2);
  color: var(--text);
}
.density-control svg {
  width: 15px;
}
.results-head {
  max-width: 1500px;
  margin: 0 auto 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}
.results-head p {
  margin: 0;
}
.results-head strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.active-filter {
  display: flex;
  align-items: center;
  gap: 7px;
}
.active-filter > span:first-child {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.component-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.component-grid.is-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.gallery-card {
  position: relative;
  min-width: 0;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 0 0 1px var(--line);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(24, 32, 27, 0.1),
    0 0 0 1px color-mix(in srgb, var(--accent) 24%, var(--line));
}
.gallery-card[hidden] {
  display: none;
}
.preview-canvas {
  height: 265px;
  display: grid;
  place-items: center;
  padding: 25px;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.gallery-card--wide {
  grid-column: span 2;
}
.gallery-card--wide .preview-canvas {
  height: 310px;
}
.component-grid.is-compact .preview-canvas {
  height: 215px;
  padding: 18px;
}
.component-grid.is-compact .gallery-card--wide {
  grid-column: span 2;
}
.card-hitarea {
  position: absolute;
  z-index: 3;
  inset: 0 0 62px;
  border: 0;
  background: transparent;
}
.card-hitarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -5px;
}
.card-meta {
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 13px;
}
.card-meta h2 {
  margin: 0 0 4px;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.card-meta p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 10px;
}
.source-avatar {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: var(--text);
  color: var(--surface);
  font-size: 8px;
  font-weight: 800;
}
.type-tag {
  align-self: flex-start;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.tone-paper {
  background: #e8e4dc;
}
.tone-ink {
  background: #1b1d1b;
}
.tone-mist {
  background: #e9eeeb;
}
.tone-white {
  background: #f4f4f2;
}
.tone-sage {
  background: #dae6dc;
}
.tone-blush {
  background: #eee2df;
}
:root[data-theme="dark"] .tone-paper {
  background: #2d2b27;
}
:root[data-theme="dark"] .tone-mist {
  background: #222a25;
}
:root[data-theme="dark"] .tone-white {
  background: #202320;
}
:root[data-theme="dark"] .tone-sage {
  background: #233028;
}
:root[data-theme="dark"] .tone-blush {
  background: #302522;
}
.demo {
  position: relative;
  color: #171a18;
  background: #fff;
  border: 1px solid #e2e3de;
  box-shadow: 0 18px 38px rgba(31, 38, 34, 0.13);
}
.sign-in-demo {
  width: min(100%, 285px);
  border-radius: 12px;
  padding: 21px;
}
.demo-heading {
  display: grid;
  text-align: center;
  justify-items: center;
  margin-bottom: 16px;
}
.demo-heading strong {
  font-size: 15px;
  margin: 8px 0 3px;
}
.demo-heading small,
.settings-demo small {
  color: #777d77;
  font-size: 9px;
}
.demo-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #171a18;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.sign-in-demo label {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  font-size: 9px;
  font-weight: 600;
}
.sign-in-demo input {
  height: 29px;
  border: 1px solid #dadcd7;
  border-radius: 6px;
  padding: 0 8px;
  background: #fff;
  color: #4e544f;
  font-size: 10px;
}
.sign-in-demo > button {
  width: 100%;
  height: 30px;
  margin-top: 13px;
  border: 0;
  border-radius: 6px;
  background: #171a18;
  color: #fff;
  font-size: 10px;
}
.command-demo {
  width: min(100%, 335px);
  border-color: #373b37;
  background: #222522;
  color: #f4f5f2;
  border-radius: 11px;
  padding: 7px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}
.command-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 13px;
  border-bottom: 1px solid #383d39;
  color: #9da29d;
  font-size: 10px;
}
.command-search svg {
  width: 14px;
}
.command-demo > p {
  margin: 12px 9px 6px;
  color: #777e78;
  font-size: 8px;
  letter-spacing: 0.09em;
}
.command-row {
  height: 35px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  padding: 0 9px;
  border-radius: 6px;
  color: #aeb3ae;
  font-size: 10px;
}
.command-row.is-selected {
  background: #343934;
  color: #fff;
}
.command-row kbd {
  font-size: 8px;
  color: #858b85;
}
.calendar-demo {
  width: min(100%, 290px);
  border-radius: 12px;
  padding: 17px;
}
.calendar-demo header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.calendar-demo header strong {
  font-size: 11px;
}
.calendar-demo header button {
  width: 23px;
  height: 23px;
  border: 1px solid #e2e3df;
  border-radius: 6px;
  background: #fff;
}
.week,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}
.week {
  margin-bottom: 5px;
  color: #8a908a;
  font-size: 8px;
}
.days {
  row-gap: 3px;
  font-size: 9px;
}
.days span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 6px;
}
.days .muted {
  color: #bec2be;
}
.days .selected {
  background: #171a18;
  color: #fff;
}
.table-demo {
  width: min(100%, 650px);
  border-radius: 12px;
  padding: 18px;
}
.table-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
}
.table-tools strong {
  font-size: 12px;
}
.table-tools button {
  border: 0;
  background: #171a18;
  color: #fff;
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 9px;
}
.table-row {
  display: grid;
  grid-template-columns: 26px 1.5fr 1fr 0.8fr;
  align-items: center;
  min-height: 40px;
  border-top: 1px solid #eceeea;
  font-size: 9px;
  color: #676d68;
}
.table-head {
  min-height: 29px;
  color: #969b96;
}
.table-row > span:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 8px;
}
.table-row i {
  display: block;
  width: 11px;
  height: 11px;
  border: 1px solid #cfd2ce;
  border-radius: 3px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  color: #fff;
  font-size: 7px;
}
.avatar-a {
  background: #587263;
}
.avatar-b {
  background: #6e6485;
}
.avatar-c {
  background: #8a654f;
}
.table-row strong {
  color: #252925;
  font-size: 9px;
}
.table-row em {
  font-style: normal;
  color: #27704b;
  background: #e3f4e9;
  border-radius: 9px;
  padding: 3px 7px;
}
.table-row em.pending {
  color: #8a6121;
  background: #f5ead6;
}
.settings-demo {
  width: min(100%, 335px);
  border-radius: 12px;
  padding: 18px;
}
.settings-demo header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.settings-demo header div {
  display: grid;
  gap: 3px;
}
.settings-demo label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #eceeea;
}
.settings-demo label > span {
  display: grid;
  gap: 3px;
}
.settings-demo label strong {
  font-size: 10px;
}
.switch {
  position: relative;
  width: 31px;
  height: 18px;
  border: 0;
  border-radius: 10px;
  background: #d9dcd8;
  padding: 2px;
}
.switch i {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease;
}
.switch.is-on {
  background: #20764b;
}
.switch.is-on i {
  transform: translateX(13px);
}
.save-settings {
  width: 100%;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: #171a18;
  color: #fff;
  font-size: 9px;
  margin-top: 5px;
}
.alert-demo {
  width: min(100%, 325px);
  border-radius: 12px;
  padding: 20px;
}
.warning-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f9e1dd;
  color: #b33e32;
  font-weight: 800;
  margin-bottom: 13px;
}
.alert-demo > strong {
  font-size: 13px;
}
.alert-demo p {
  font-size: 9px;
  color: #747a74;
  line-height: 1.5;
  margin: 7px 0 16px;
}
.alert-demo > div {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}
.alert-demo button {
  height: 29px;
  border: 1px solid #dedfdb;
  background: #fff;
  border-radius: 6px;
  padding: 0 11px;
  font-size: 9px;
}
.alert-demo button.danger {
  border-color: #b33e32;
  background: #b33e32;
  color: #fff;
}
.empty-state {
  max-width: 1500px;
  min-height: 430px;
  margin: auto;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}
.empty-state[hidden] {
  display: none;
}
.empty-state > span {
  font-size: 28px;
  color: var(--muted);
}
.empty-state h2 {
  font-size: 16px;
  margin: 12px 0 5px;
}
.empty-state p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 12px;
}
.empty-state button {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 8px 12px;
}
.gallery-footer {
  max-width: 1500px;
  margin: 45px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
}
.gallery-footer p {
  margin: 0;
}
.preview-dialog {
  width: min(1060px, calc(100vw - 34px));
  height: min(760px, calc(100dvh - 34px));
  padding: 0;
  border: 0;
  border-radius: 15px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.preview-dialog::backdrop {
  background: rgba(10, 13, 11, 0.62);
  backdrop-filter: blur(6px);
}
.dialog-shell {
  height: 100%;
  display: grid;
  grid-template-rows: 60px 44px minmax(0, 1fr);
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
}
.dialog-header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dialog-header h2 {
  font-size: 13px;
  margin: 0 0 3px;
}
.dialog-header p {
  font-size: 9px;
  color: var(--muted);
  margin: 0;
}
.dialog-tabs {
  display: flex;
  align-items: end;
  gap: 20px;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
}
.dialog-tabs button {
  height: 100%;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
}
.dialog-tabs button[aria-selected="true"] {
  color: var(--text);
  border-color: var(--accent);
}
.dialog-panel {
  min-height: 0;
}
.dialog-preview-panel {
  display: grid;
  place-items: center;
  padding: 36px;
  background: var(--surface-2);
  overflow: auto;
}
.dialog-canvas {
  width: min(760px, 100%);
  min-height: 450px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  padding: 50px;
}
.dialog-canvas > .demo {
  transform: scale(1.2);
}
.code-panel {
  margin: 0;
  background: #111512;
  color: #dbe4dc;
  overflow: auto;
}
.code-toolbar {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #293029;
  color: #8e9990;
  font-size: 10px;
}
.code-toolbar button {
  border: 1px solid #374039;
  background: #1d231e;
  color: #cdd5ce;
  border-radius: 6px;
  padding: 5px 8px;
}
.code-panel pre {
  margin: 0;
  padding: 25px;
  white-space: pre-wrap;
  font:
    12px/1.75 "SFMono-Regular",
    Consolas,
    monospace;
}
.info-panel {
  padding: 35px;
  overflow: auto;
}
.info-panel dl {
  margin: 0;
  max-width: 620px;
}
.info-panel dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.info-panel dt {
  color: var(--muted);
}
.info-panel dd {
  margin: 0;
}
.dialog-panel[hidden] {
  display: none;
}
@media (max-width: 1250px) {
  .component-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .component-grid.is-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .component-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .component-grid.is-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr auto;
    height: 55px;
  }
  .brand {
    border-right: 0;
  }
  .topnav {
    display: none;
  }
  .top-actions {
    padding-right: 12px;
  }
  .theme-button span:last-child {
    display: none;
  }
  .app-shell {
    display: block;
  }
  .sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 9px 14px;
  }
  .sidebar-head,
  .sidebar-section,
  .sidebar-note {
    display: none;
  }
  .side-nav {
    display: flex;
    overflow: auto;
    gap: 5px;
  }
  .side-link {
    width: auto;
    flex: 0 0 auto;
  }
  .side-link small,
  .side-link svg {
    display: none;
  }
  .gallery-main {
    padding: 22px 14px;
  }
  .gallery-toolbar {
    display: grid;
    align-items: flex-start;
  }
  .gallery-toolbar h1 {
    font-size: 23px;
  }
  .toolbar-actions {
    width: 100%;
    margin-top: 5px;
  }
  .search-control {
    width: 100%;
  }
  .component-grid,
  .component-grid.is-compact {
    grid-template-columns: 1fr;
  }
  .gallery-card--wide,
  .component-grid.is-compact .gallery-card--wide {
    grid-column: auto;
  }
  .preview-canvas,
  .gallery-card--wide .preview-canvas,
  .component-grid.is-compact .preview-canvas {
    height: 270px;
  }
  .gallery-footer {
    display: grid;
    gap: 5px;
  }
  .dialog-canvas {
    min-height: 370px;
    padding: 28px 15px;
  }
  .dialog-canvas > .demo {
    transform: scale(1);
  }
  .dialog-preview-panel {
    padding: 13px;
  }
  .preview-dialog {
    width: calc(100vw - 18px);
    height: calc(100dvh - 18px);
  }
  .table-demo {
    padding: 12px;
  }
  .table-row {
    grid-template-columns: 20px 1.4fr 0.8fr;
  }
  .table-row > span:last-child {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
