j3w1-empty-state { display: block; }
j3w1-empty-state {
  color-scheme: dark;
  background: var(--color-surface-canvas);
  color: var(--color-text-default);
  font-family: var(--font-family-mono);
  font-size: var(--font-size-ui-md);
  line-height: var(--font-line-height-ui-md);
}
j3w1-empty-state, j3w1-empty-state *, j3w1-empty-state *::before, j3w1-empty-state *::after { box-sizing: border-box; }
j3w1-empty-state button, j3w1-empty-state input, j3w1-empty-state select, j3w1-empty-state textarea { font: inherit; }
j3w1-empty-state ::selection {
  background: var(--color-interaction-text-selection-bg);
  color: var(--color-interaction-text-selection-text);
}
j3w1-empty-state .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

j3w1-empty-state .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  min-width: 0;
  padding: var(--space-32) var(--space-16);
  background: var(--color-surface-default);
  border: var(--border-width-default) solid var(--color-border-divider);
  border-radius: var(--radius-none);
  color: var(--color-text-muted);
  text-align: center;
}

j3w1-empty-state .empty-state-glyph {
  color: var(--color-icon-decorative);
  font-size: var(--font-size-h1);
  line-height: var(--font-line-height-h1);
}

j3w1-empty-state .empty-state-heading {
  margin: 0;
  color: var(--color-text-bright);
  font-size: var(--font-size-h2);
  line-height: var(--font-line-height-h2);
  font-weight: var(--font-weight-bold);
  overflow-wrap: anywhere;
}

j3w1-empty-state .empty-state-text {
  max-width: var(--layout-measure);
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-ui-md);
  line-height: var(--font-line-height-ui-md);
  overflow-wrap: anywhere;
}

j3w1-empty-state .empty-state-action {
  display: inline-flex;
  align-items: center;
  min-height: var(--density-control-height, 32px);
  margin-top: var(--space-8);
  padding: 0 var(--density-control-padding-x, 12px);
  background: var(--color-action-secondary-bg);
  border: var(--border-width-default) solid var(--color-action-secondary-border);
  border-radius: var(--radius-none);
  color: var(--color-action-secondary-text);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

j3w1-empty-state .empty-state-action:hover {
  background: var(--color-action-secondary-hover-bg);
}

j3w1-empty-state .empty-state-action:active {
  background: var(--color-action-secondary-pressed-bg);
  border-color: var(--color-border-active);
}

j3w1-empty-state .empty-state-action:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

@media (max-width: 320px) {
  j3w1-empty-state .empty-state {
    padding: var(--space-16);
  }

  j3w1-empty-state .empty-state-action {
    width: 100%;
    justify-content: center;
  }
}

@media (hover: none) {
  j3w1-empty-state .empty-state-action:hover {
    background: var(--color-action-secondary-bg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  j3w1-empty-state .empty-state-action {
    transition: background-color var(--motion-duration-fast);
  }
}

@media (forced-colors: active) {
  j3w1-empty-state .empty-state-action:focus-visible {
    outline-color: Highlight;
  }
}

j3w1-empty-state [hidden] { display: none !important; }
j3w1-empty-state .j3w1-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;
}
j3w1-empty-state .j3w1-readonly-text { white-space: pre; overflow: auto; font: inherit; }
j3w1-empty-state dialog.dialog:modal, j3w1-empty-state dialog.command-palette-dialog:modal {
  position: fixed; inset: 0; margin: auto;
  max-width: calc(100vw - var(--space-32)); max-height: calc(100dvh - var(--space-32)); overflow: auto;
}
j3w1-empty-state dialog.drawer:modal { position: fixed; inset-block: 0; margin-block: 0; max-height: 100dvh; height: 100dvh; overflow: auto; }
j3w1-empty-state dialog.drawer-start:modal { inset-inline-start: 0; inset-inline-end: auto; margin-inline: 0; }
j3w1-empty-state dialog.drawer-end:modal { inset-inline-end: 0; inset-inline-start: auto; margin-inline: 0; }
j3w1-empty-state .menu-list, j3w1-empty-state .combobox-listbox, j3w1-empty-state .tooltip-popup, j3w1-empty-state .popover-panel { z-index: var(--z-popover); }
j3w1-empty-state .tooltip-popup:not([hidden]) { display: block; width: max-content; max-width: min(calc(var(--font-size-ui-md) * 24), calc(100vw - var(--space-32))); }
j3w1-empty-state .combobox-option[aria-selected=true] { background: var(--color-interaction-selection-bg); color: var(--color-interaction-selection-text); }
j3w1-empty-state .menu-list [role=menu] { min-width: calc(var(--font-size-ui-md) * 10); }
j3w1-empty-state [data-tree-toggle] { border: 0; padding: 0 var(--space-4); background: transparent; color: inherit; font: inherit; cursor: pointer; }
j3w1-empty-state .file-input-zone[data-dragging=true] { outline: var(--border-width-emphasis) dashed var(--color-interaction-drop-target); }
j3w1-empty-state .data-table-resize { cursor: col-resize; touch-action: none; }
j3w1-empty-state .wizard-panel[hidden] { display: none; }
@media (prefers-reduced-motion: reduce) {
  j3w1-empty-state, j3w1-empty-state * { scroll-behavior: auto; animation: none; transition: none; }
}
@media (forced-colors: active) {
  j3w1-empty-state .chart-series { fill: CanvasText; stroke: CanvasText; }
  j3w1-empty-state [aria-selected=true] { border-inline-start: var(--border-width-emphasis) solid Highlight; }
}
