/* ARLing Motion components for arling.sk/motion, generated by build-registry.mjs.
   The same rules as components/<name>/<name>.css, each selector under the gallery stage so
   the page's own paper styles cannot override them. Do not edit: edit the component CSS. */

/* accordion */
body.noc .mo-stage .am-accordion {
  display: grid;
  width: 100%;
  color: var(--foreground, #0a0a0a);
}
body.noc .mo-stage .am-accordion-item {
  border-bottom: 1px solid var(--border, #e5e5e5);
}
body.noc .mo-stage .am-accordion-heading {
  margin: 0;
  font: inherit;
}
body.noc .mo-stage .am-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0;
  border: 0;
  border-radius: calc(var(--radius, 0.625rem) - 4px);
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
body.noc .mo-stage .am-accordion-trigger:focus-visible {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 2px;
}
body.noc .mo-stage .am-accordion-trigger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
body.noc .mo-stage .am-accordion-trigger[aria-disabled="true"] {
  cursor: default;
}
body.noc .mo-stage .am-accordion-chevron {
  flex: none;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.25rem 0.25rem 0;
  border-right: 1.5px solid var(--muted-foreground, #737373);
  border-bottom: 1.5px solid var(--muted-foreground, #737373);
  transform-origin: 50% 50%;
  translate: 0 -1px;
  rotate: 45deg;
  pointer-events: none;
}
body.noc .mo-stage .am-accordion-panel {
  overflow: hidden;
}
body.noc .mo-stage .am-accordion-panel[hidden] {
  display: none;
}
body.noc .mo-stage .am-accordion-content {
  display: grid;
  gap: 0.5rem;
  padding: 0 0 1rem;
  color: var(--muted-foreground, #737373);
  font-size: 0.875rem;
  line-height: 1.5;
}
body.noc .mo-stage .am-accordion-content > * {
  margin: 0;
}

/* carousel */
body.noc .mo-stage .am-carousel {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  color: var(--foreground, #0a0a0a);
}
body.noc .mo-stage .am-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius, 0.625rem);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
body.noc .mo-stage .am-carousel-viewport:active {
  cursor: grabbing;
}
body.noc .mo-stage .am-carousel-track {
  display: flex;
  gap: 0.75rem;
}
body.noc .mo-stage .am-carousel-slide {
  flex: 0 0 min(80%, 18rem);
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: var(--radius, 0.625rem);
  background: var(--background, #ffffff);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}
body.noc .mo-stage .am-carousel-slide img {
  display: block;
  max-width: 100%;
  pointer-events: none;
  -webkit-user-drag: none;
}
body.noc .mo-stage .am-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
body.noc .mo-stage .am-carousel-prev,
body.noc .mo-stage .am-carousel-next {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 9999px;
  background: var(--background, #ffffff);
  color: var(--foreground, #0a0a0a);
  cursor: pointer;
}
body.noc .mo-stage .am-carousel-prev::before,
body.noc .mo-stage .am-carousel-next::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}
body.noc .mo-stage .am-carousel-prev::before {
  translate: 1px 0;
  rotate: 45deg;
}
body.noc .mo-stage .am-carousel-next::before {
  translate: -1px 0;
  rotate: -135deg;
}
body.noc .mo-stage .am-carousel-prev:focus-visible,
body.noc .mo-stage .am-carousel-next:focus-visible,
body.noc .mo-stage .am-carousel-slide :focus-visible {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 2px;
}
body.noc .mo-stage .am-carousel-prev[aria-disabled="true"],
body.noc .mo-stage .am-carousel-next[aria-disabled="true"] {
  opacity: 0.4;
  cursor: default;
}

/* command */
body.noc .mo-stage .am-command {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 32rem);
  overflow: hidden;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: var(--radius, 0.625rem);
  background: var(--popover, var(--background, #ffffff));
  color: var(--popover-foreground, var(--foreground, #0a0a0a));
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05), 0 12px 28px rgb(0 0 0 / 0.08);
}
body.noc .mo-stage .am-command-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border: 0;
  border-bottom: 1px solid var(--border, #e5e5e5);
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.9375rem;
  outline: none;
}
body.noc .mo-stage .am-command-input::placeholder {
  color: var(--muted-foreground, #737373);
}
body.noc .mo-stage .am-command:has(.am-command-input:focus-visible) {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 2px;
}
body.noc .mo-stage .am-command-list {
  position: relative;
  max-height: 20rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
body.noc .mo-stage .am-command-list [role="option"] {
  position: absolute;
  top: 0;
  right: 0.25rem;
  left: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: calc(var(--radius, 0.625rem) - 4px);
  font-size: 0.875rem;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
body.noc .mo-stage .am-command-list [role="option"][data-selected] {
  color: var(--accent-foreground, var(--foreground, #0a0a0a));
}
body.noc .mo-stage .am-command-list [role="option"][aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}
body.noc .mo-stage .am-command-highlight {
  position: absolute;
  top: 0;
  right: 0.25rem;
  left: 0.25rem;
  height: 0;
  border-radius: calc(var(--radius, 0.625rem) - 4px);
  background: var(--accent, var(--muted, #f5f5f5));
  transform-origin: 50% 50%;
  visibility: hidden;
  pointer-events: none;
}
body.noc .mo-stage .am-command-empty {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  place-items: center;
  height: 3.375rem;
  color: var(--muted-foreground, #737373);
  font-size: 0.875rem;
  visibility: hidden;
}
body.noc .mo-stage .am-command-kbd {
  margin-left: auto;
  color: var(--muted-foreground, #737373);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
body.noc .mo-stage .am-command-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* dialog */
body.noc .mo-stage .am-dialog-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1rem;
  border: 0;
  border-radius: calc(var(--radius, 0.625rem) - 2px);
  background: var(--primary, #171717);
  color: var(--primary-foreground, #fafafa);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}
body.noc .mo-stage .am-dialog-trigger:focus-visible,
body.noc .mo-stage .am-dialog-content button:focus-visible,
body.noc .mo-stage .am-dialog-content [href]:focus-visible,
body.noc .mo-stage .am-dialog-content input:focus-visible {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 2px;
}
body.noc .mo-stage .am-dialog-root {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 16px;
}
body.noc .mo-stage .am-dialog-root[hidden] {
  display: none;
}
body.noc .mo-stage .am-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.32);
}
body.noc .mo-stage .am-dialog-frame {
  position: relative;
  width: min(100%, 28rem);
  filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.06)) drop-shadow(0 12px 28px rgb(0 0 0 / 0.12));
}
body.noc .mo-stage .am-dialog {
  position: relative;
  border-radius: var(--radius, 0.625rem);
  color: var(--foreground, #0a0a0a);
  outline: none;
}
body.noc .mo-stage .am-dialog-surface {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: var(--background, #ffffff);
}
body.noc .mo-stage .am-dialog-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--border, #e5e5e5);
  pointer-events: none;
}
body.noc .mo-stage .am-dialog-ink {
  position: absolute;
  inset: 0;
  visibility: hidden;
}
body.noc .mo-stage .am-dialog-label {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--primary-foreground, #fafafa);
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
}
body.noc .mo-stage .am-dialog-content {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}
body.noc .mo-stage .am-dialog-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}
body.noc .mo-stage .am-dialog-description {
  margin: 0;
  color: var(--muted-foreground, #737373);
  font-size: 0.875rem;
  line-height: 1.5;
}
body.noc .mo-stage .am-dialog-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}
body.noc .mo-stage .am-dialog-footer button {
  height: 2.25rem;
  padding: 0 1rem;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: calc(var(--radius, 0.625rem) - 2px);
  background: var(--background, #ffffff);
  color: var(--foreground, #0a0a0a);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
body.noc .mo-stage .am-dialog-footer button[data-variant="primary"] {
  border-color: var(--primary, #171717);
  background: var(--primary, #171717);
  color: var(--primary-foreground, #fafafa);
}

/* drawer */
body.noc .mo-stage .am-drawer-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1rem;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: calc(var(--radius, 0.625rem) - 2px);
  background: var(--background, #ffffff);
  color: var(--foreground, #0a0a0a);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}
body.noc .mo-stage .am-drawer-trigger:focus-visible,
body.noc .mo-stage .am-drawer-panel:focus-visible,
body.noc .mo-stage .am-drawer-content button:focus-visible,
body.noc .mo-stage .am-drawer-content [href]:focus-visible,
body.noc .mo-stage .am-drawer-content input:focus-visible {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 2px;
}
body.noc .mo-stage .am-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
}
body.noc .mo-stage .am-drawer[hidden] {
  display: none;
}
body.noc .mo-stage .am-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.32);
}
body.noc .mo-stage .am-drawer-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  margin: 0 auto;
  max-width: 40rem;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 3rem);
  margin-bottom: -3rem;
  border: 1px solid var(--border, #e5e5e5);
  border-bottom: 0;
  border-radius: var(--radius, 0.625rem) var(--radius, 0.625rem) 0 0;
  background: var(--background, #ffffff);
  color: var(--foreground, #0a0a0a);
  box-shadow: 0 -1px 2px rgb(0 0 0 / 0.04), 0 -12px 32px rgb(0 0 0 / 0.1);
  outline: none;
  touch-action: none;
  user-select: none;
}
body.noc .mo-stage .am-drawer-handle {
  flex: none;
  width: 2.75rem;
  height: 0.3125rem;
  margin: 0.75rem auto 0.5rem;
  border-radius: 9999px;
  background: var(--muted, #e5e5e5);
  cursor: grab;
}
body.noc .mo-stage .am-drawer-content {
  display: grid;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
body.noc .mo-stage .am-drawer-content > * {
  margin: 0;
}
body.noc .mo-stage .am-drawer-title {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
}
body.noc .mo-stage .am-drawer-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-top: 0.5rem;
}
body.noc .mo-stage .am-drawer [data-am-no-drag] {
  overflow-y: auto;
  touch-action: pan-y;
  user-select: text;
}

/* dropzone */
body.noc .mo-stage .am-dropzone {
  position: relative;
  width: 100%;
  height: 8rem;
  overflow: hidden;
  border: 1px dashed var(--border, #d4d4d4);
  border-radius: var(--radius, 0.625rem);
  background: var(--background, #ffffff);
  color: var(--foreground, #0a0a0a);
}
body.noc .mo-stage .am-dropzone[data-state="over"] {
  border-style: solid;
  border-color: var(--primary, #171717);
}
body.noc .mo-stage .am-dropzone[data-state="filled"] {
  border-style: solid;
}
body.noc .mo-stage .am-dropzone:has(.am-dropzone-input:focus-visible) {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 2px;
}
body.noc .mo-stage .am-dropzone[data-scroll] {
  overflow-y: auto;
  overscroll-behavior: contain;
}
body.noc .mo-stage .am-dropzone-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
}
body.noc .mo-stage .am-dropzone-prompt {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  place-items: center;
  height: 8rem;
  padding: 0 1rem;
  color: var(--muted-foreground, #737373);
  font-size: 0.875rem;
  text-align: center;
  cursor: pointer;
}
body.noc .mo-stage .am-dropzone-prompt u {
  color: var(--foreground, #0a0a0a);
  text-underline-offset: 3px;
}
body.noc .mo-stage .am-dropzone-head {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 0.5rem 0 1rem;
  border-bottom: 1px solid var(--border, #e5e5e5);
  font-size: 0.8125rem;
  font-weight: 500;
  visibility: hidden;
}
body.noc .mo-stage .am-dropzone-title {
  margin-right: auto;
  color: var(--muted-foreground, #737373);
}
body.noc .mo-stage .am-dropzone-add,
body.noc .mo-stage .am-dropzone-clear {
  height: 1.875rem;
  padding: 0 0.625rem;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: calc(var(--radius, 0.625rem) - 4px);
  background: var(--background, #ffffff);
  color: inherit;
  font: inherit;
  cursor: pointer;
}
body.noc .mo-stage .am-dropzone-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.noc .mo-stage .am-dropzone-row {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 2.75rem;
  padding: 0 0.5rem 0 1rem;
  font-size: 0.875rem;
}
body.noc .mo-stage .am-dropzone-row[hidden] {
  display: none;
}
body.noc .mo-stage .am-dropzone-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.noc .mo-stage .am-dropzone-size {
  margin-left: auto;
  flex: none;
  color: var(--muted-foreground, #737373);
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
}
body.noc .mo-stage .am-dropzone-remove {
  position: relative;
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 0;
  border-radius: calc(var(--radius, 0.625rem) - 4px);
  background: transparent;
  color: var(--muted-foreground, #737373);
  cursor: pointer;
}
body.noc .mo-stage .am-dropzone-remove::before,
body.noc .mo-stage .am-dropzone-remove::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 1.5px;
  background: currentColor;
  translate: -50% -50%;
}
body.noc .mo-stage .am-dropzone-remove::before {
  rotate: 45deg;
}
body.noc .mo-stage .am-dropzone-remove::after {
  rotate: -45deg;
}
body.noc .mo-stage .am-dropzone-remove:hover {
  background: var(--muted, #f5f5f5);
  color: var(--foreground, #0a0a0a);
}
body.noc .mo-stage .am-dropzone-add:focus-visible,
body.noc .mo-stage .am-dropzone-clear:focus-visible,
body.noc .mo-stage .am-dropzone-remove:focus-visible {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 1px;
}
body.noc .mo-stage .am-dropzone-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* otp */
body.noc .mo-stage .am-otp {
  position: relative;
  display: inline-grid;
  gap: 0.5rem;
  color: var(--foreground, #0a0a0a);
}
body.noc .mo-stage .am-otp-input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 3.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  caret-color: transparent;
  font: inherit;
  letter-spacing: 2rem;
  outline: none;
  cursor: text;
}
body.noc .mo-stage .am-otp-input::selection {
  background: transparent;
}
body.noc .mo-stage .am-otp-slots {
  position: relative;
  display: flex;
  gap: 0.5rem;
}
body.noc .mo-stage .am-otp-slot {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 3.25rem;
  overflow: hidden;
  border: 1px solid var(--input, var(--border, #e5e5e5));
  border-radius: calc(var(--radius, 0.625rem) - 2px);
  background: var(--background, #ffffff);
  font-size: 1.375rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
body.noc .mo-stage .am-otp-slot[data-filled] {
  border-color: var(--ring, #a3a3a3);
}
body.noc .mo-stage .am-otp-slot[data-inked] {
  border-color: transparent;
  color: var(--am-success-foreground, #ffffff);
}
body.noc .mo-stage .am-otp[data-state="error"] .am-otp-slot {
  border-color: var(--destructive, #dc2626);
}
body.noc .mo-stage .am-otp-ink {
  position: absolute;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}
body.noc .mo-stage .am-otp-char {
  position: relative;
  pointer-events: none;
}
body.noc .mo-stage .am-otp-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.75rem;
  height: 3.25rem;
  border-radius: calc(var(--radius, 0.625rem) - 2px);
  box-shadow: 0 0 0 2px var(--ring, #a3a3a3);
  visibility: hidden;
  pointer-events: none;
}
body.noc .mo-stage .am-otp[data-state="success"][data-focused] .am-otp-slots {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 3px;
  border-radius: var(--radius, 0.625rem);
}
body.noc .mo-stage .am-otp-status {
  min-height: 1.25rem;
  color: var(--muted-foreground, #737373);
  font-size: 0.8125rem;
}
body.noc .mo-stage .am-otp[data-state="error"] .am-otp-status {
  color: var(--destructive, #dc2626);
}

/* popover */
body.noc .mo-stage .am-popover-root {
  position: relative;
  display: inline-block;
}
body.noc .mo-stage .am-popover-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.25rem;
  padding: 0 0.875rem;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: calc(var(--radius, 0.625rem) - 2px);
  background: var(--background, #ffffff);
  color: var(--foreground, #0a0a0a);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
body.noc .mo-stage .am-popover-trigger:focus-visible {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 2px;
}
body.noc .mo-stage .am-popover-frame {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  z-index: 50;
  filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.06)) drop-shadow(0 8px 20px rgb(0 0 0 / 0.1));
}
body.noc .mo-stage .am-popover-root[data-align="end"] .am-popover-frame {
  right: 0;
  left: auto;
}
body.noc .mo-stage .am-menu,
body.noc .mo-stage .am-popover {
  position: relative;
  min-width: 12rem;
  padding: 0.25rem;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: var(--radius, 0.625rem);
  background: var(--popover, var(--background, #ffffff));
  color: var(--popover-foreground, var(--foreground, #0a0a0a));
  outline: none;
}
body.noc .mo-stage .am-popover {
  display: grid;
  gap: 0.5rem;
  width: 18rem;
  padding: 1rem;
  font-size: 0.875rem;
}
body.noc .mo-stage .am-menu[hidden],
body.noc .mo-stage .am-popover[hidden] {
  display: none;
}
body.noc .mo-stage .am-menu-highlight {
  position: absolute;
  top: 0;
  right: 0.25rem;
  left: 0.25rem;
  height: 0;
  border-radius: calc(var(--radius, 0.625rem) - 4px);
  background: var(--accent, var(--muted, #f5f5f5));
  visibility: hidden;
  pointer-events: none;
}
body.noc .mo-stage .am-menu [role^="menuitem"] {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 2rem;
  padding: 0 0.5rem;
  border: 0;
  border-radius: calc(var(--radius, 0.625rem) - 4px);
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.875rem;
  text-align: left;
  cursor: pointer;
}
body.noc .mo-stage .am-menu [role^="menuitem"]:focus {
  outline: none;
}
body.noc .mo-stage .am-menu [role^="menuitem"][data-highlighted] {
  color: var(--accent-foreground, var(--foreground, #0a0a0a));
}
body.noc .mo-stage .am-menu [role^="menuitem"]:focus-visible {
  box-shadow: inset 0 0 0 2px var(--ring, #a3a3a3);
}
body.noc .mo-stage .am-menu [role^="menuitem"][aria-disabled="true"],
body.noc .mo-stage .am-menu [role^="menuitem"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
body.noc .mo-stage .am-menu-separator {
  height: 1px;
  margin: 0.25rem -0.25rem;
  background: var(--border, #e5e5e5);
}

/* switch */
body.noc .mo-stage .am-switch {
  position: relative;
  display: inline-block;
  flex: none;
  width: 2.75rem;
  height: 1.5rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 9999px;
  background: var(--input, #e5e5e5);
  vertical-align: middle;
  cursor: pointer;
}
body.noc .mo-stage .am-switch[aria-checked="true"] {
  background: var(--primary, #171717);
}
body.noc .mo-stage .am-switch:focus-visible {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 2px;
}
body.noc .mo-stage .am-switch:disabled,
body.noc .mo-stage .am-switch[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}
body.noc .mo-stage .am-switch-ink {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  visibility: hidden;
  pointer-events: none;
}
body.noc .mo-stage .am-switch-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: var(--background, #ffffff);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.12), 0 1px 1px rgb(0 0 0 / 0.06);
  pointer-events: none;
}

/* tabs */
body.noc .mo-stage .am-tabs {
  display: grid;
  gap: 0.75rem;
}
body.noc .mo-stage .am-tabs-list {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: var(--radius, 0.625rem);
  background: var(--muted, #f5f5f5);
}
body.noc .mo-stage .am-tabs-list[aria-orientation="vertical"] {
  flex-direction: column;
  align-items: stretch;
}
body.noc .mo-stage .am-tabs-indicator {
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0;
  width: 0;
  border-radius: calc(var(--radius, 0.625rem) - 2px);
  background: var(--background, #ffffff);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.06), 0 0 0 1px var(--border, #e5e5e5);
  pointer-events: none;
}
body.noc .mo-stage .am-tabs-list[aria-orientation="vertical"] .am-tabs-indicator {
  top: 0;
  right: 0.25rem;
  bottom: auto;
  left: 0.25rem;
  width: auto;
  height: 0;
}
body.noc .mo-stage .am-tabs-list [role="tab"] {
  position: relative;
  z-index: 1;
  height: 2rem;
  padding: 0 0.875rem;
  border: 0;
  border-radius: calc(var(--radius, 0.625rem) - 2px);
  background: transparent;
  color: var(--muted-foreground, #737373);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}
body.noc .mo-stage .am-tabs-list [role="tab"][aria-selected="true"] {
  color: var(--foreground, #0a0a0a);
}
body.noc .mo-stage .am-tabs-list [role="tab"]:focus-visible,
body.noc .mo-stage .am-tabs-panels [role="tabpanel"]:focus-visible {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 2px;
}
body.noc .mo-stage .am-tabs-list [role="tab"]:disabled,
body.noc .mo-stage .am-tabs-list [role="tab"][aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}
body.noc .mo-stage .am-tabs-panels {
  display: grid;
}
body.noc .mo-stage .am-tabs-panels > [role="tabpanel"] {
  grid-area: 1 / 1;
  min-width: 0;
  border-radius: calc(var(--radius, 0.625rem) - 2px);
}

/* toast */
body.noc .mo-stage .am-toaster {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  width: min(356px, calc(100vw - 32px));
  outline: none;
}
body.noc .mo-stage .am-toaster-list {
  position: relative;
  height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.noc .mo-stage .am-toast {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  visibility: hidden;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: var(--radius, 0.625rem);
  background: var(--background, #ffffff);
  color: var(--foreground, #0a0a0a);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05), 0 6px 18px rgb(0 0 0 / 0.08);
  transform-origin: 50% 100%;
}
body.noc .mo-stage .am-toast::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 100%;
  height: 9px;
}
body.noc .mo-stage .am-toast-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0.125rem;
  min-height: 3.5rem;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
}
body.noc .mo-stage .am-toast-title {
  grid-column: 1;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
}
body.noc .mo-stage .am-toast-description {
  grid-column: 1;
  margin: 0;
  color: var(--muted-foreground, #737373);
  font-size: 0.8125rem;
  line-height: 1.4;
}
body.noc .mo-stage .am-toast-close {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  border-radius: calc(var(--radius, 0.625rem) - 4px);
  background: transparent;
  color: var(--muted-foreground, #737373);
  font: inherit;
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
}
body.noc .mo-stage .am-toast-close:hover {
  background: var(--muted, #f5f5f5);
  color: var(--foreground, #0a0a0a);
}
body.noc .mo-stage .am-toast-close:focus-visible {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 1px;
}

/* tooltip */
body.noc .mo-stage .am-tooltip-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
body.noc .mo-stage .am-tooltip-group [data-tooltip] {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: calc(var(--radius, 0.625rem) - 2px);
  background: transparent;
  color: var(--foreground, #0a0a0a);
  font: inherit;
  cursor: pointer;
}
body.noc .mo-stage .am-tooltip-group [data-tooltip]:hover,
body.noc .mo-stage .am-tooltip-group [data-tooltip][data-state="open"] {
  background: var(--muted, #f5f5f5);
}
body.noc .mo-stage .am-tooltip-group [data-tooltip]:focus-visible {
  outline: 2px solid var(--ring, #a3a3a3);
  outline-offset: 2px;
}
body.noc .mo-stage .am-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  visibility: hidden;
  border-radius: calc(var(--radius, 0.625rem) - 4px);
  background: var(--foreground, #0a0a0a);
  color: var(--background, #ffffff);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.12);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
  transform-origin: 50% 100%;
}
body.noc .mo-stage .am-tooltip-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  white-space: nowrap;
}
body.noc .mo-stage .am-tooltip-label {
  display: inline-block;
}
