/* commit-mono-latin-400-normal */
@font-face {
  font-family: 'Commit Mono';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/commit-mono-latin-400-normal-wzhe4RuD.woff2) format('woff2'), url(/assets/commit-mono-latin-400-normal-s0S3qwFW.woff) format('woff');
}/* commit-mono-latin-400-italic */
@font-face {
  font-family: 'Commit Mono';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/commit-mono-latin-400-italic-DjSHLl2N.woff2) format('woff2'), url(/assets/commit-mono-latin-400-italic-BXinMwCi.woff) format('woff');
}@keyframes sd-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sd-blurIn {
  from {
    opacity: 0;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes sd-slideUp {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-sd-animate] {
  animation: var(--sd-animation, sd-fadeIn) var(--sd-duration, 150ms)
    var(--sd-easing, ease) var(--sd-delay, 0ms) both;
}
.workspaceDrawer {
  width: min(340px, calc(100vw - 48px));
  height: 100%;
  outline: none;
}

.workspaceDrawerDialog {
  height: 100%;
  outline: none;
}

.workspaceDrawer[data-entering] {
  animation: workspaceDrawerSlide 220ms ease-out;
}

.workspaceDrawer[data-exiting] {
  animation: workspaceDrawerSlide 180ms ease-in reverse;
}

@keyframes workspaceDrawerSlide {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .workspaceDrawer[data-entering],
  .workspaceDrawer[data-exiting] {
    animation: none;
  }
}
html {
  min-width: 320px;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
#root {
  min-height: 100dvh;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
pre,
dl,
dd {
  margin: 0;
}

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

/* Shiki's highlighted <pre> is tabindex=0; Chromium then paints outline:auto. */
.maui-code-block :focus,
.maui-code-block :focus-visible {
  outline: none;
}
