/* frontend/assets/events.less */
.event-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1rem, 4vw, 2rem);
}
.event-grid.stacked {
  grid-template-columns: 1fr;
}
.event-grid .event-list {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1rem, 3vw, 1.6rem);
  border-radius: 24px;
  border: 1px solid var(--surface-border);
  background: rgba(19, 18, 18, 0.85);
  box-shadow: var(--shadow-soft);
  color: var(--text-100);
}
.event-grid .event-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(243, 238, 217, 0.08);
  background: rgba(243, 238, 217, 0.06);
}
.event-grid .event-list__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 238, 217, 0.6);
}
.event-grid .event-list__content {
  color: rgba(243, 238, 217, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-word;
}
.event-grid .event-list__note {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  white-space: pre-wrap;
  line-height: 1.45;
  color: rgba(243, 238, 217, 0.82);
}
.event-grid .event-list--tools .event-list__label {
  color: var(--primary-200);
}
.event-grid .event-list--audio .event-list__item {
  border-left: 4px solid rgba(173, 81, 76, 0.45);
  padding-left: 1.2rem;
}
.event-grid .event-list--audio .event-list__label {
  color: rgba(173, 81, 76, 0.75);
}
.event-pre {
  margin: 0;
  white-space: pre-wrap;
  background: rgba(243, 238, 217, 0.06);
  border: 1px solid rgba(243, 238, 217, 0.12);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  color: rgba(243, 238, 217, 0.85);
}
.event-pre code {
  font-family: inherit;
}
.error-text {
  margin: 0;
  font-weight: 600;
  color: var(--primary-200);
}
.error-text--subtle {
  font-weight: 500;
  color: rgba(173, 81, 76, 0.75);
}

/* frontend/assets/markdown.less */
.markdown-wrapper {
  --kw-md-muted: color-mix(in srgb, currentColor 72%, transparent);
  --kw-md-border: color-mix(in srgb, currentColor 16%, transparent);
  --kw-md-surface: color-mix(in srgb, currentColor 6%, transparent);
  --kw-md-code-surface: color-mix(in srgb, currentColor 10%, transparent);
  --kw-md-link: color-mix(in srgb, var(--primary-100) 85%, currentColor 15%);
  color: inherit;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.markdown-wrapper > :first-child {
  margin-top: 0;
}
.markdown-wrapper > :last-child {
  margin-bottom: 0;
}
.markdown-wrapper p {
  margin: 0.4rem 0;
}
.markdown-wrapper h1,
.markdown-wrapper h2,
.markdown-wrapper h3,
.markdown-wrapper h4 {
  margin: 0.95rem 0 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, currentColor 92%, transparent);
}
.markdown-wrapper h1 {
  font-size: 1.1rem;
}
.markdown-wrapper h2 {
  font-size: 1.02rem;
}
.markdown-wrapper h3 {
  font-size: 0.96rem;
}
.markdown-wrapper h4 {
  font-size: 0.9rem;
}
.markdown-wrapper ul,
.markdown-wrapper ol {
  margin: 0.5rem 0;
  padding-inline-start: 1.25rem;
}
.markdown-wrapper ol {
  padding-inline-start: 1.4rem;
}
.markdown-wrapper li {
  margin: 0.2rem 0;
  padding-inline-start: 0.15rem;
}
.markdown-wrapper li::marker {
  color: var(--kw-md-muted);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.markdown-wrapper li > p {
  margin: 0.25rem 0;
}
.markdown-wrapper ul ul,
.markdown-wrapper ul ol,
.markdown-wrapper ol ul,
.markdown-wrapper ol ol {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
}
.markdown-wrapper a {
  color: var(--kw-md-link);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
}
.markdown-wrapper a:hover {
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
}
.markdown-wrapper blockquote {
  margin: 0.65rem 0;
  padding: 0.55rem 0.75rem;
  border-left: 3px solid color-mix(in srgb, var(--primary-100) 62%, transparent);
  background: color-mix(in srgb, var(--primary-100) 10%, transparent);
  color: color-mix(in srgb, currentColor 88%, transparent);
}
.markdown-wrapper blockquote p {
  margin: 0.25rem 0;
}
.markdown-wrapper hr {
  border: none;
  border-top: 1px solid var(--kw-md-border);
  margin: 0.9rem 0;
  opacity: 0.85;
}
.markdown-wrapper code {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 0.92em;
  border: 1px solid var(--kw-md-border);
  padding: 0.08rem 0.3rem;
}
.markdown-wrapper pre {
  margin: 0.65rem 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--kw-md-border);
  overflow-x: auto;
  line-height: 1.45;
}
.markdown-wrapper pre code {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: 0.9em;
}
.markdown-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.65rem 0;
  border: 1px solid var(--kw-md-border);
  overflow: hidden;
}
.markdown-wrapper th,
.markdown-wrapper td {
  border-bottom: 1px solid var(--kw-md-border);
  padding: 0.5rem 0.65rem;
  vertical-align: top;
}
.markdown-wrapper th {
  text-align: left;
  font-weight: 700;
  background: color-mix(in srgb, currentColor 8%, transparent);
}
.markdown-wrapper tr:last-child td {
  border-bottom: none;
}
.markdown-wrapper img {
  max-width: 100%;
  border: 1px solid var(--kw-md-border);
}

/* node_modules/@xyflow/svelte/dist/style.css */
.svelte-flow {
  direction: ltr;
  --xy-edge-stroke-default: #b1b1b7;
  --xy-edge-stroke-width-default: 1;
  --xy-edge-stroke-selected-default: #555;
  --xy-connectionline-stroke-default: #b1b1b7;
  --xy-connectionline-stroke-width-default: 1;
  --xy-attribution-background-color-default: rgba(255, 255, 255, 0.5);
  --xy-minimap-background-color-default: #fff;
  --xy-minimap-mask-background-color-default: rgba(240, 240, 240, 0.6);
  --xy-minimap-mask-stroke-color-default: transparent;
  --xy-minimap-mask-stroke-width-default: 1;
  --xy-minimap-node-background-color-default: #e2e2e2;
  --xy-minimap-node-stroke-color-default: transparent;
  --xy-minimap-node-stroke-width-default: 2;
  --xy-background-color-default: transparent;
  --xy-background-pattern-dots-color-default: #91919a;
  --xy-background-pattern-lines-color-default: #eee;
  --xy-background-pattern-cross-color-default: #e2e2e2;
  background-color: var(--xy-background-color, var(--xy-background-color-default));
  --xy-node-color-default: inherit;
  --xy-node-border-default: 1px solid #1a192b;
  --xy-node-background-color-default: #fff;
  --xy-node-group-background-color-default: rgba(240, 240, 240, 0.25);
  --xy-node-boxshadow-hover-default: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
  --xy-node-boxshadow-selected-default: 0 0 0 0.5px #1a192b;
  --xy-node-border-radius-default: 3px;
  --xy-handle-background-color-default: #1a192b;
  --xy-handle-border-color-default: #fff;
  --xy-selection-background-color-default: rgba(0, 89, 220, 0.08);
  --xy-selection-border-default: 1px dotted rgba(0, 89, 220, 0.8);
  --xy-controls-button-background-color-default: #fefefe;
  --xy-controls-button-background-color-hover-default: #f4f4f4;
  --xy-controls-button-color-default: inherit;
  --xy-controls-button-color-hover-default: inherit;
  --xy-controls-button-border-color-default: #eee;
  --xy-controls-box-shadow-default: 0 0 2px 1px rgba(0, 0, 0, 0.08);
  --xy-edge-label-background-color-default: #ffffff;
  --xy-edge-label-color-default: inherit;
  --xy-resize-background-color-default: #3367d9;
}
.svelte-flow.dark {
  --xy-edge-stroke-default: #3e3e3e;
  --xy-edge-stroke-width-default: 1;
  --xy-edge-stroke-selected-default: #727272;
  --xy-connectionline-stroke-default: #b1b1b7;
  --xy-connectionline-stroke-width-default: 1;
  --xy-attribution-background-color-default: rgba(150, 150, 150, 0.25);
  --xy-minimap-background-color-default: #141414;
  --xy-minimap-mask-background-color-default: rgba(60, 60, 60, 0.6);
  --xy-minimap-mask-stroke-color-default: transparent;
  --xy-minimap-mask-stroke-width-default: 1;
  --xy-minimap-node-background-color-default: #2b2b2b;
  --xy-minimap-node-stroke-color-default: transparent;
  --xy-minimap-node-stroke-width-default: 2;
  --xy-background-color-default: #141414;
  --xy-background-pattern-dots-color-default: #777;
  --xy-background-pattern-lines-color-default: #777;
  --xy-background-pattern-cross-color-default: #777;
  --xy-node-color-default: #f8f8f8;
  --xy-node-border-default: 1px solid #3c3c3c;
  --xy-node-background-color-default: #1e1e1e;
  --xy-node-group-background-color-default: rgba(240, 240, 240, 0.25);
  --xy-node-boxshadow-hover-default: 0 1px 4px 1px rgba(255, 255, 255, 0.08);
  --xy-node-boxshadow-selected-default: 0 0 0 0.5px #999;
  --xy-handle-background-color-default: #bebebe;
  --xy-handle-border-color-default: #1e1e1e;
  --xy-selection-background-color-default: rgba(200, 200, 220, 0.08);
  --xy-selection-border-default: 1px dotted rgba(200, 200, 220, 0.8);
  --xy-controls-button-background-color-default: #2b2b2b;
  --xy-controls-button-background-color-hover-default: #3e3e3e;
  --xy-controls-button-color-default: #f8f8f8;
  --xy-controls-button-color-hover-default: #fff;
  --xy-controls-button-border-color-default: #5b5b5b;
  --xy-controls-box-shadow-default: 0 0 2px 1px rgba(0, 0, 0, 0.08);
  --xy-edge-label-background-color-default: #141414;
  --xy-edge-label-color-default: #f8f8f8;
}
.svelte-flow__background {
  background-color: var(--xy-background-color-props, var(--xy-background-color, var(--xy-background-color-default)));
  pointer-events: none;
  z-index: -1;
}
.svelte-flow__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.svelte-flow__pane {
  z-index: 1;
}
.svelte-flow__pane.draggable {
  cursor: grab;
}
.svelte-flow__pane.dragging {
  cursor: grabbing;
}
.svelte-flow__pane.selection {
  cursor: pointer;
}
.svelte-flow__viewport {
  transform-origin: 0 0;
  z-index: 2;
  pointer-events: none;
}
.svelte-flow__renderer {
  z-index: 4;
}
.svelte-flow__selection {
  z-index: 6;
}
.svelte-flow__nodesselection-rect:focus,
.svelte-flow__nodesselection-rect:focus-visible {
  outline: none;
}
.svelte-flow__edge-path {
  stroke: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
  stroke-width: var(--xy-edge-stroke-width, var(--xy-edge-stroke-width-default));
  fill: none;
}
.svelte-flow__connection-path {
  stroke: var(--xy-connectionline-stroke, var(--xy-connectionline-stroke-default));
  stroke-width: var(--xy-connectionline-stroke-width, var(--xy-connectionline-stroke-width-default));
  fill: none;
}
.svelte-flow .svelte-flow__edges {
  position: absolute;
}
.svelte-flow .svelte-flow__edges svg {
  overflow: visible;
  position: absolute;
  pointer-events: none;
}
.svelte-flow__edge {
  pointer-events: visibleStroke;
}
.svelte-flow__edge.selectable {
  cursor: pointer;
}
.svelte-flow__edge.animated path {
  stroke-dasharray: 5;
  animation: dashdraw 0.5s linear infinite;
}
.svelte-flow__edge.animated path.svelte-flow__edge-interaction {
  stroke-dasharray: none;
  animation: none;
}
.svelte-flow__edge.inactive {
  pointer-events: none;
}
.svelte-flow__edge.selected,
.svelte-flow__edge:focus,
.svelte-flow__edge:focus-visible {
  outline: none;
}
.svelte-flow__edge.selected .svelte-flow__edge-path,
.svelte-flow__edge.selectable:focus .svelte-flow__edge-path,
.svelte-flow__edge.selectable:focus-visible .svelte-flow__edge-path {
  stroke: var(--xy-edge-stroke-selected, var(--xy-edge-stroke-selected-default));
}
.svelte-flow__edge-textwrapper {
  pointer-events: all;
}
.svelte-flow__edge .svelte-flow__edge-text {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.svelte-flow__arrowhead polyline {
  stroke: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
}
.svelte-flow__arrowhead polyline.arrowclosed {
  fill: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
}
.svelte-flow__connection {
  pointer-events: none;
}
.svelte-flow__connection .animated {
  stroke-dasharray: 5;
  animation: dashdraw 0.5s linear infinite;
}
svg.svelte-flow__connectionline {
  z-index: 1001;
  overflow: visible;
  position: absolute;
}
.svelte-flow__nodes {
  pointer-events: none;
  transform-origin: 0 0;
}
.svelte-flow__node {
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: all;
  transform-origin: 0 0;
  box-sizing: border-box;
  cursor: default;
}
.svelte-flow__node.selectable {
  cursor: pointer;
}
.svelte-flow__node.draggable {
  cursor: grab;
  pointer-events: all;
}
.svelte-flow__node.draggable.dragging {
  cursor: grabbing;
}
.svelte-flow__nodesselection {
  z-index: 3;
  transform-origin: left top;
  pointer-events: none;
}
.svelte-flow__nodesselection-rect {
  position: absolute;
  pointer-events: all;
  cursor: grab;
}
.svelte-flow__handle {
  position: absolute;
  pointer-events: none;
  min-width: 5px;
  min-height: 5px;
  width: 6px;
  height: 6px;
  background-color: var(--xy-handle-background-color, var(--xy-handle-background-color-default));
  border: 1px solid var(--xy-handle-border-color, var(--xy-handle-border-color-default));
  border-radius: 100%;
}
.svelte-flow__handle.connectingfrom {
  pointer-events: all;
}
.svelte-flow__handle.connectionindicator {
  pointer-events: all;
  cursor: crosshair;
}
.svelte-flow__handle-bottom {
  top: auto;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.svelte-flow__handle-top {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.svelte-flow__handle-left {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
.svelte-flow__handle-right {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
.svelte-flow__edgeupdater {
  cursor: move;
  pointer-events: all;
}
.svelte-flow__pane.selection .svelte-flow__panel {
  pointer-events: none;
}
.svelte-flow__panel {
  position: absolute;
  z-index: 5;
  margin: 15px;
}
.svelte-flow__panel.top {
  top: 0;
}
.svelte-flow__panel.bottom {
  bottom: 0;
}
.svelte-flow__panel.top.center,
.svelte-flow__panel.bottom.center {
  left: 50%;
  transform: translateX(-15px) translateX(-50%);
}
.svelte-flow__panel.left {
  left: 0;
}
.svelte-flow__panel.right {
  right: 0;
}
.svelte-flow__panel.left.center,
.svelte-flow__panel.right.center {
  top: 50%;
  transform: translateY(-15px) translateY(-50%);
}
.svelte-flow__attribution {
  font-size: 10px;
  background: var(--xy-attribution-background-color, var(--xy-attribution-background-color-default));
  padding: 2px 3px;
  margin: 0;
}
.svelte-flow__attribution a {
  text-decoration: none;
  color: #999;
}
@keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}
.svelte-flow__edgelabel-renderer {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  left: 0;
  top: 0;
}
.svelte-flow__viewport-portal {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.svelte-flow__minimap {
  background: var( --xy-minimap-background-color-props, var(--xy-minimap-background-color, var(--xy-minimap-background-color-default)) );
}
.svelte-flow__minimap-svg {
  display: block;
}
.svelte-flow__minimap-mask {
  fill: var( --xy-minimap-mask-background-color-props, var(--xy-minimap-mask-background-color, var(--xy-minimap-mask-background-color-default)) );
  stroke: var( --xy-minimap-mask-stroke-color-props, var(--xy-minimap-mask-stroke-color, var(--xy-minimap-mask-stroke-color-default)) );
  stroke-width: var( --xy-minimap-mask-stroke-width-props, var(--xy-minimap-mask-stroke-width, var(--xy-minimap-mask-stroke-width-default)) );
}
.svelte-flow__minimap-node {
  fill: var( --xy-minimap-node-background-color-props, var(--xy-minimap-node-background-color, var(--xy-minimap-node-background-color-default)) );
  stroke: var( --xy-minimap-node-stroke-color-props, var(--xy-minimap-node-stroke-color, var(--xy-minimap-node-stroke-color-default)) );
  stroke-width: var( --xy-minimap-node-stroke-width-props, var(--xy-minimap-node-stroke-width, var(--xy-minimap-node-stroke-width-default)) );
}
.svelte-flow__background-pattern.dots {
  fill: var( --xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-dots-color-default)) );
}
.svelte-flow__background-pattern.lines {
  stroke: var( --xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-lines-color-default)) );
}
.svelte-flow__background-pattern.cross {
  stroke: var( --xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-cross-color-default)) );
}
.svelte-flow__controls {
  display: flex;
  flex-direction: column;
  box-shadow: var(--xy-controls-box-shadow, var(--xy-controls-box-shadow-default));
}
.svelte-flow__controls.horizontal {
  flex-direction: row;
}
.svelte-flow__controls-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  width: 26px;
  padding: 4px;
  border: none;
  background: var(--xy-controls-button-background-color, var(--xy-controls-button-background-color-default));
  border-bottom: 1px solid var( --xy-controls-button-border-color-props, var(--xy-controls-button-border-color, var(--xy-controls-button-border-color-default)) );
  color: var( --xy-controls-button-color-props, var(--xy-controls-button-color, var(--xy-controls-button-color-default)) );
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.svelte-flow__controls-button svg {
  width: 100%;
  max-width: 12px;
  max-height: 12px;
  fill: currentColor;
}
.svelte-flow__edge.updating .svelte-flow__edge-path {
  stroke: #777;
}
.svelte-flow__edge-text {
  font-size: 10px;
}
.svelte-flow__node.selectable:focus,
.svelte-flow__node.selectable:focus-visible {
  outline: none;
}
.svelte-flow__node-input,
.svelte-flow__node-default,
.svelte-flow__node-output,
.svelte-flow__node-group {
  padding: 10px;
  border-radius: var(--xy-node-border-radius, var(--xy-node-border-radius-default));
  width: 150px;
  font-size: 12px;
  color: var(--xy-node-color, var(--xy-node-color-default));
  text-align: center;
  border: var(--xy-node-border, var(--xy-node-border-default));
  background-color: var(--xy-node-background-color, var(--xy-node-background-color-default));
}
.svelte-flow__node-input.selectable:hover,
.svelte-flow__node-default.selectable:hover,
.svelte-flow__node-output.selectable:hover,
.svelte-flow__node-group.selectable:hover {
  box-shadow: var(--xy-node-boxshadow-hover, var(--xy-node-boxshadow-hover-default));
}
.svelte-flow__node-input.selectable.selected,
.svelte-flow__node-input.selectable:focus,
.svelte-flow__node-input.selectable:focus-visible,
.svelte-flow__node-default.selectable.selected,
.svelte-flow__node-default.selectable:focus,
.svelte-flow__node-default.selectable:focus-visible,
.svelte-flow__node-output.selectable.selected,
.svelte-flow__node-output.selectable:focus,
.svelte-flow__node-output.selectable:focus-visible,
.svelte-flow__node-group.selectable.selected,
.svelte-flow__node-group.selectable:focus,
.svelte-flow__node-group.selectable:focus-visible {
  box-shadow: var(--xy-node-boxshadow-selected, var(--xy-node-boxshadow-selected-default));
}
.svelte-flow__node-group {
  background-color: var(--xy-node-group-background-color, var(--xy-node-group-background-color-default));
}
.svelte-flow__nodesselection-rect,
.svelte-flow__selection {
  background: var(--xy-selection-background-color, var(--xy-selection-background-color-default));
  border: var(--xy-selection-border, var(--xy-selection-border-default));
}
.svelte-flow__nodesselection-rect:focus,
.svelte-flow__nodesselection-rect:focus-visible,
.svelte-flow__selection:focus,
.svelte-flow__selection:focus-visible {
  outline: none;
}
.svelte-flow__controls-button:hover {
  background: var( --xy-controls-button-background-color-hover-props, var(--xy-controls-button-background-color-hover, var(--xy-controls-button-background-color-hover-default)) );
  color: var( --xy-controls-button-color-hover-props, var(--xy-controls-button-color-hover, var(--xy-controls-button-color-hover-default)) );
}
.svelte-flow__controls-button:disabled {
  pointer-events: none;
}
.svelte-flow__controls-button:disabled svg {
  fill-opacity: 0.4;
}
.svelte-flow__controls-button:last-child {
  border-bottom: none;
}
.svelte-flow__controls.horizontal .svelte-flow__controls-button {
  border-bottom: none;
  border-right: 1px solid var( --xy-controls-button-border-color-props, var(--xy-controls-button-border-color, var(--xy-controls-button-border-color-default)) );
}
.svelte-flow__controls.horizontal .svelte-flow__controls-button:last-child {
  border-right: none;
}
.svelte-flow__resize-control {
  position: absolute;
}
.svelte-flow__resize-control.left,
.svelte-flow__resize-control.right {
  cursor: ew-resize;
}
.svelte-flow__resize-control.top,
.svelte-flow__resize-control.bottom {
  cursor: ns-resize;
}
.svelte-flow__resize-control.top.left,
.svelte-flow__resize-control.bottom.right {
  cursor: nwse-resize;
}
.svelte-flow__resize-control.bottom.left,
.svelte-flow__resize-control.top.right {
  cursor: nesw-resize;
}
.svelte-flow__resize-control.handle {
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  border-radius: 1px;
  background-color: var(--xy-resize-background-color, var(--xy-resize-background-color-default));
  translate: -50% -50%;
}
.svelte-flow__resize-control.handle.left {
  left: 0;
  top: 50%;
}
.svelte-flow__resize-control.handle.right {
  left: 100%;
  top: 50%;
}
.svelte-flow__resize-control.handle.top {
  left: 50%;
  top: 0;
}
.svelte-flow__resize-control.handle.bottom {
  left: 50%;
  top: 100%;
}
.svelte-flow__resize-control.handle.top.left {
  left: 0;
}
.svelte-flow__resize-control.handle.bottom.left {
  left: 0;
}
.svelte-flow__resize-control.handle.top.right {
  left: 100%;
}
.svelte-flow__resize-control.handle.bottom.right {
  left: 100%;
}
.svelte-flow__resize-control.line {
  border-color: var(--xy-resize-background-color, var(--xy-resize-background-color-default));
  border-width: 0;
  border-style: solid;
}
.svelte-flow__resize-control.line.left,
.svelte-flow__resize-control.line.right {
  width: 1px;
  transform: translate(-50%, 0);
  top: 0;
  height: 100%;
}
.svelte-flow__resize-control.line.left {
  left: 0;
  border-left-width: 1px;
}
.svelte-flow__resize-control.line.right {
  left: 100%;
  border-right-width: 1px;
}
.svelte-flow__resize-control.line.top,
.svelte-flow__resize-control.line.bottom {
  height: 1px;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
}
.svelte-flow__resize-control.line.top {
  top: 0;
  border-top-width: 1px;
}
.svelte-flow__resize-control.line.bottom {
  border-bottom-width: 1px;
  top: 100%;
}
.svelte-flow__edge-label {
  text-align: center;
  position: absolute;
  padding: 2px;
  font-size: 10px;
  color: var(--xy-edge-label-color, var(--xy-edge-label-color-default));
  background: var(--xy-edge-label-background-color, var(--xy-edge-label-background-color-default));
}
.svelte-flow__container {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/graph/GraphCanvas.less */
.canvas {
  height: 100%;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  position: relative;
  min-width: 0;
  max-width: 100%;
}
@media only screen and (max-width: 1223px) {
  .canvas {
    min-height: 320px;
  }
}
.canvas.loading::after {
  content: "Graf wird geladen \2026";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-weight: 500;
  color: var(--text-invers-100);
  z-index: 2;
}
.canvas .svelte-flow {
  width: 100%;
  height: 100%;
}
.canvas .svelte-flow__renderer {
  overflow: hidden;
}
.canvas .svelte-flow__panel.svelte-flow__minimap.kw-minimap {
  margin: 10px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--bg-100);
  overflow: hidden;
}
.canvas .svelte-flow__node {
  background: transparent;
  border: none;
  border-radius: 18px;
  box-shadow: none;
  padding: 0;
  transition: transform 0.18s ease;
}
.canvas .svelte-flow__node:hover {
  transform: translateY(-2px);
}
.canvas .svelte-flow__node.graph-node--default .card,
.canvas .svelte-flow__node.graph-node--agent .card {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.canvas .svelte-flow__node.graph-node--agent .card {
  box-shadow: 0 22px 42px -28px color-mix(in srgb, var(--primary-100) 48%, transparent);
}
.canvas .svelte-flow__node.graph-node--default .card {
  box-shadow: 0 18px 34px -26px color-mix(in srgb, var(--primary-100) 32%, transparent);
}
.canvas .svelte-flow__node:hover .card {
  transform: translateY(-2px);
}
.canvas .svelte-flow__node.subgraph-node {
  cursor: pointer;
}
.canvas .svelte-flow__node.active-node .card {
  border-color: var(--primary-100) !important;
  box-shadow: 0 24px 48px -28px color-mix(in srgb, var(--primary-100) 55%, transparent) !important;
}
.canvas .svelte-flow__node.graph-node--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-style: dashed;
  border-color: color-mix(in srgb, var(--primary-100) 32%, transparent);
  background: color-mix(in srgb, var(--primary-100) 10%, rgba(255, 255, 255, 0.85));
  color: color-mix(in srgb, var(--primary-100) 60%, color-mix(in srgb, var(--text-invers-100) 60%, var(--bg-100) 40%));
  box-shadow: 0 14px 26px -24px color-mix(in srgb, var(--primary-100) 38%, transparent);
}
.canvas .svelte-flow__node.graph-node--placeholder:hover {
  box-shadow: 0 18px 32px -24px color-mix(in srgb, var(--primary-100) 48%, transparent);
}
.canvas .svelte-flow__node.graph-node--placeholder.graph-node--start {
  border-color: color-mix(in srgb, var(--primary-100) 48%, transparent);
  background: color-mix(in srgb, var(--primary-100) 18%, rgba(255, 255, 255, 0.92));
}
.canvas .svelte-flow__node.graph-node--placeholder.graph-node--end {
  border-color: color-mix(in srgb, var(--primary-100) 36%, transparent);
  background: color-mix(in srgb, var(--primary-100) 12%, rgba(255, 255, 255, 0.92));
}
.canvas .graph-node .svelte-flow__handle-top,
.canvas .graph-node .svelte-flow__handle-bottom,
.canvas .graph-node .svelte-flow__handle-left,
.canvas .graph-node .svelte-flow__handle-right {
  transform: unset;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/primitives/TopRightCrinkle.esbuild-svelte-fake-css */
#crinkle.svelte-11ergyq {
  height: calc(3rem - 2px);
  width: 3rem;
  margin-left: -3px;
}
#crinkle.bigVersion.svelte-11ergyq {
  height: 72px;
  width: 72px;
}
#crinkle.svelte-11ergyq .crinkle-background:where(.svelte-11ergyq) {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: visible;
}
#crinkle.svelte-11ergyq .crinkle-background:where(.svelte-11ergyq) img:where(.svelte-11ergyq) {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#crinkle.svelte-11ergyq .crinkle-background.brightColor:where(.svelte-11ergyq) {
  filter: brightness(1.05);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/CrinkledSection.esbuild-svelte-fake-css */
.kw-crinkled-section.svelte-1ra5fmo {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: -3rem;
  z-index: 2000;
}
.kw-crinkled-section.hideCrinkle.svelte-1ra5fmo {
  margin-top: 0;
}
.kw-crinkled-section__upper.svelte-1ra5fmo {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 3rem;
  position: relative;
  overflow: hidden;
}
.kw-crinkled-section__bar.svelte-1ra5fmo {
  flex: 1;
  height: 100%;
  background: var(--neutral-white);
  border-top: 2px solid var(--bg-100);
}
.kw-crinkled-section__crinkle.svelte-1ra5fmo {
  width: 3rem;
  height: calc(3rem - 2px);
  margin-left: -3px;
}
.kw-crinkled-section__crinkle--large.svelte-1ra5fmo {
  width: 4.5rem;
  height: 4.5rem;
}
.kw-crinkled-section__crinkle-svg.svelte-1ra5fmo {
  width: 100%;
  height: 100%;
  display: block;
}
.kw-crinkled-section__wrapper.svelte-1ra5fmo {
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 6rem;
  display: flex;
  justify-content: center;
}
.kw-crinkled-section__wrapper-content.svelte-1ra5fmo {
  width: calc(100% - 2 * var(--horizontal-default-margin));
  max-width: var(--normal-max-width);
  margin-left: var(--horizontal-default-margin);
  margin-right: var(--horizontal-default-margin);
  display: flex;
  flex-direction: column;
  gap: var(--vertical-default-margin);
}
.kw-crinkled-section__wrapper-content.smallWidthAndCentered.svelte-1ra5fmo {
  max-width: var(--small-max-width);
}
.kw-crinkled-section--bright__bar.svelte-1ra5fmo {
  background: var(--neutral-white);
  border-top-color: var(--bg-100);
}
.kw-crinkled-section--bright__wrapper.svelte-1ra5fmo {
  background: var(--neutral-white);
}
.kw-crinkled-section--dark__bar.svelte-1ra5fmo {
  background: var(--bg-100);
  border-top-color: var(--neutral-white);
}
.kw-crinkled-section--dark__wrapper.svelte-1ra5fmo {
  background: var(--bg-100);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/AppFooter.esbuild-svelte-fake-css */
.footer-placeholder {
  background-color: white;
  height: 3rem;
  width: 100%;
  margin-top: -3rem;
}
footer.footer {
  background: var(--neutral-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  gap: 1.5rem;
}
footer.footer,
footer.footer * {
  box-sizing: border-box;
}
footer.footer #content-section {
  padding: 0px var(--horizontal-default-margin);
  max-width: var(--small-max-width);
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
footer.footer #content-section #content-link-section {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
footer.footer #content-section #content-link-section .content {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: flex-start;
  justify-content: flex-start;
  width: 8rem;
  position: relative;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  footer.footer #content-section {
    flex-direction: column;
    align-items: flex-start;
  }
  footer.footer #content-section #content-link-section {
    flex-direction: column;
  }
}
footer.footer #newsletter-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 300px;
}
footer.footer #newsletter-section form button {
  width: fit-content;
}
footer.footer #icons-section {
  padding: 0px var(--horizontal-default-margin);
  max-width: var(--small-max-width);
  width: 100%;
  margin: 0 0 0 -0.0625rem;
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  overflow: hidden;
}
footer.footer #icons-section .payments,
footer.footer #icons-section .social {
  display: flex;
  gap: 0.75rem;
}
footer.footer #icons-section .payments figure,
footer.footer #icons-section .social figure {
  height: 1.2rem;
}
footer.footer #icons-section .payments figure img,
footer.footer #icons-section .social figure img {
  height: 100%;
  width: auto;
}
footer.footer #icons-section .line {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  overflow: hidden;
}
footer.footer #icons-section .line .brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}
footer.footer #icons-section .line svg {
  height: 2.4rem;
  width: auto;
}
footer.footer #icons-section .line .line-1,
footer.footer #icons-section .line .line-2 {
  border-style: solid;
  border-color: var(--text-invers-100);
  border-width: 0.0625rem 0 0 0;
  flex: 1;
  height: 0rem;
  position: relative;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  footer.footer #icons-section {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }
  footer.footer #icons-section .line {
    width: 100%;
    padding: 0px;
  }
}
footer.footer #legal-section {
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--bg-100);
  gap: 1.2rem;
}
footer.footer #legal-section .wrapper {
  max-width: var(--small-max-width);
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: relative;
  gap: 1.2rem;
  padding: 1.5rem var(--horizontal-default-margin);
}
footer.footer #legal-section .wrapper a,
footer.footer #legal-section .wrapper small {
  color: var(--text-100);
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  footer.footer #legal-section .wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer.footer #legal-section .wrapper .nav-points ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
footer.footer #legal-section .wrapper .nav-points ul li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}
footer.footer #legal-section .wrapper .nav-points ul a {
  font-weight: 400;
  font-family: var(--font-family-base, "Outfit", sans-serif);
}
footer.footer #legal-section .wrapper .nav-points a.footer-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 0.05rem;
}
footer.footer #legal-section .wrapper .nav-points a.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  height: 0.125rem;
  width: 100%;
  background: var(--primary-100);
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0.9;
  transition: transform 180ms ease, opacity 180ms ease;
}
footer.footer #legal-section .wrapper .nav-points a.footer-link:hover::after,
footer.footer #legal-section .wrapper .nav-points a.footer-link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/PageTitle.esbuild-svelte-fake-css */
#pageHeadline.svelte-m8xx04 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-100);
  width: 100%;
  padding: 4.8rem 0px;
}
#pageHeadline.svelte-m8xx04 .wrapper:where(.svelte-m8xx04) {
  gap: 12px;
  max-width: var(--normal-max-width);
  color: var(--text-100);
  margin: 0px var(--horizontal-default-margin);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#pageHeadline.svelte-m8xx04 .wrapper:where(.svelte-m8xx04) > a:where(.svelte-m8xx04) {
  color: var(--text-100);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
  opacity: 1;
}
#pageHeadline.svelte-m8xx04 .wrapper:where(.svelte-m8xx04) > a:where(.svelte-m8xx04):hover {
  color: var(--primary-100) !important;
}
#pageHeadline.svelte-m8xx04 .wrapper:where(.svelte-m8xx04) .title-wrapper:where(.svelte-m8xx04) {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
#pageHeadline.svelte-m8xx04 .wrapper:where(.svelte-m8xx04) .title-wrapper:where(.svelte-m8xx04) h1:where(.svelte-m8xx04) {
  padding: 0px;
  margin-bottom: 12px;
}
#pageHeadline.svelte-m8xx04 .wrapper:where(.svelte-m8xx04) .title-wrapper:where(.svelte-m8xx04) .subtitle:where(.svelte-m8xx04) {
  margin: 0;
  color: var(--text-70);
  font-size: 1.2em;
}
#pageHeadline.svelte-m8xx04 .wrapper:where(.svelte-m8xx04) .title-wrapper:where(.svelte-m8xx04) .page-title__heading:where(.svelte-m8xx04) {
  display: flex;
  gap: 0.6rem;
  align-items: flex-end;
}
#pageHeadline.svelte-m8xx04 .wrapper:where(.svelte-m8xx04) .title-wrapper:where(.svelte-m8xx04) .page-title__help:where(.svelte-m8xx04) {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: flex-end;
  color: var(--text-100);
  transition: color 0.2s;
}
#pageHeadline.svelte-m8xx04 .wrapper:where(.svelte-m8xx04) .title-wrapper:where(.svelte-m8xx04) .page-title__help:where(.svelte-m8xx04):hover {
  color: var(--primary-100) !important;
}
@media only screen and (max-width: 967px) {
  #pageHeadline.svelte-m8xx04 .wrapper:where(.svelte-m8xx04) .title-wrapper:where(.svelte-m8xx04) {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
#pageHeadline.svelte-m8xx04 .wrapper.marginBottom:where(.svelte-m8xx04) {
  margin-bottom: 2.4rem;
}
#pageHeadline p {
  color: var(--text-100);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/PageNavigation.esbuild-svelte-fake-css */
.sticky-bar.svelte-5evuhw {
  top: 107px;
  width: 100%;
  position: sticky;
  z-index: 9997;
  display: flex;
  justify-content: center;
  background-color: var(--bg-100);
  border-bottom: 1px solid var(--bg-100);
}
@media only screen and (max-width: 967px) {
  .sticky-bar.svelte-5evuhw {
    top: 76px;
  }
}
.sticky-bar.svelte-5evuhw .bar:where(.svelte-5evuhw) {
  max-width: var(--normal-max-width);
  padding-top: 0.6rem;
  margin: 0px var(--horizontal-default-margin);
  height: 2.4rem;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  gap: 10px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sticky-bar.svelte-5evuhw .bar:where(.svelte-5evuhw)::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 967px) {
  .sticky-bar.svelte-5evuhw .bar:where(.svelte-5evuhw) {
    padding-top: 0.25rem;
  }
}
.sticky-bar.svelte-5evuhw .bar:where(.svelte-5evuhw) button:where(.svelte-5evuhw) {
  background: transparent;
  display: flex;
  color: color-mix(in srgb, var(--text-300) 45%, var(--text-100) 55%);
  height: 100%;
}
.sticky-bar.svelte-5evuhw .bar:where(.svelte-5evuhw) button:where(.svelte-5evuhw) p:where(.svelte-5evuhw) {
  height: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  line-height: 0.7rem;
  white-space: nowrap;
  color: inherit;
}
.sticky-bar.svelte-5evuhw .bar:where(.svelte-5evuhw) button:where(.svelte-5evuhw) svg:where(.svelte-5evuhw) {
  width: 0px;
  height: 100%;
  overflow: hidden;
  margin-bottom: -3px;
}
.sticky-bar.svelte-5evuhw .bar:where(.svelte-5evuhw) button:where(.svelte-5evuhw) svg.visible:where(.svelte-5evuhw) {
  width: unset;
}
.sticky-bar.svelte-5evuhw .bar:where(.svelte-5evuhw) button.active:where(.svelte-5evuhw) p:where(.svelte-5evuhw) {
  color: var(--bg-200);
  background-color: white;
}

/* node_modules/flatpickr/dist/flatpickr.css */
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow:
    1px 0 0 #e6e6e6,
    -1px 0 0 #e6e6e6,
    0 1px 0 #e6e6e6,
    0 -1px 0 #e6e6e6,
    0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow:
    1px 0 0 #e6e6e6,
    -1px 0 0 #e6e6e6,
    0 1px 0 #e6e6e6,
    0 -1px 0 #e6e6e6,
    0 3px 13px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  left: 0;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  right: 0;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\fffd;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.today {
  border-color: #959ea9;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* node_modules/flatpickr/dist/plugins/monthSelect/style.css */
.flatpickr-monthSelect-months {
  margin: 10px 1px 3px 1px;
  flex-wrap: wrap;
}
.flatpickr-monthSelect-month {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  margin: 0.5px;
  justify-content: center;
  padding: 10px;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  width: 33%;
}
.flatpickr-monthSelect-month.flatpickr-disabled {
  color: #eee;
}
.flatpickr-monthSelect-month.flatpickr-disabled:hover,
.flatpickr-monthSelect-month.flatpickr-disabled:focus {
  cursor: not-allowed;
  background: none !important;
}
.flatpickr-monthSelect-theme-dark {
  background: #3f4458;
}
.flatpickr-monthSelect-theme-dark .flatpickr-current-month input.cur-year {
  color: #fff;
}
.flatpickr-monthSelect-theme-dark .flatpickr-months .flatpickr-prev-month,
.flatpickr-monthSelect-theme-dark .flatpickr-months .flatpickr-next-month {
  color: #fff;
  fill: #fff;
}
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month {
  color: rgba(255, 255, 255, 0.95);
}
.flatpickr-monthSelect-month.today {
  border-color: #959ea9;
}
.flatpickr-monthSelect-month.inRange,
.flatpickr-monthSelect-month.inRange.today,
.flatpickr-monthSelect-month:hover,
.flatpickr-monthSelect-month:focus {
  background: #e6e6e6;
  cursor: pointer;
  outline: 0;
  border-color: #e6e6e6;
}
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.inRange,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month:hover,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month:focus {
  background: #646c8c;
  border-color: #646c8c;
}
.flatpickr-monthSelect-month.today:hover,
.flatpickr-monthSelect-month.today:focus {
  background: #959ea9;
  border-color: #959ea9;
  color: #fff;
}
.flatpickr-monthSelect-month.selected,
.flatpickr-monthSelect-month.startRange,
.flatpickr-monthSelect-month.endRange {
  background-color: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}
.flatpickr-monthSelect-month.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-monthSelect-month.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-monthSelect-month.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-monthSelect-month.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.selected,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.startRange,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.endRange {
  background: #80cbc4;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #80cbc4;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/actions/CTA.esbuild-svelte-fake-css */
button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid transparent;
  font-family: var(--font-family-bold, "Outfit-Bold", sans-serif);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-100);
  position: relative;
  overflow: visible;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}
button.cta a {
  color: inherit;
  font: inherit;
  text-transform: inherit;
}
button.cta p {
  color: inherit;
  white-space: nowrap;
}
button.cta img {
  width: 1.2rem !important;
  height: 1.2rem !important;
}
button.cta svg,
button.cta path {
  fill: currentColor;
}
button.cta[disabled] {
  color: var(--text-100);
  opacity: 0.5;
  cursor: not-allowed;
}
@media only screen and (max-width: 967px) {
  button.cta.hideLabelOnMobile p {
    display: none !important;
  }
}
button.cta.small {
  padding: 0.4rem 0.6rem;
}
button.cta.small img {
  width: 1rem !important;
  height: 1rem !important;
}
button.cta.small.hasTooltipIcon {
  padding-right: 1.8rem;
}
@media only screen and (max-width: 967px) {
  button.cta.hideContentOnMobile {
    gap: 0.4rem;
    padding: 0.55rem;
  }
  button.cta.hideContentOnMobile p {
    display: none !important;
  }
  button.cta.hideContentOnMobile.small {
    padding: 0.4rem 0.5rem;
  }
  button.cta.hideContentOnMobile.hasTooltipIcon {
    padding-right: 2rem;
  }
}
button.cta.noBorder {
  border-color: transparent;
}
button.cta.colorForce {
  color: var(--neutral-white);
}
button.cta.whiteVersion {
  color: var(--neutral-white);
}
button.cta.whiteVersion svg,
button.cta.whiteVersion path {
  fill: var(--neutral-white);
}
button.cta.primary {
  background-color: var(--primary-100);
  color: var(--neutral-white) !important;
}
button.cta.primary p {
  color: var(--neutral-white) !important;
}
button.cta.secondary {
  background-color: var(--text-invers-100);
  color: var(--neutral-white) !important;
}
button.cta.secondary p {
  color: var(--neutral-white) !important;
}
button.cta.tertiary {
  background-color: transparent;
  border-color: color-mix(in srgb, var(--text-100) 24%, transparent);
}
button.cta.primaryButton {
  background: var(--primary-100);
  color: var(--neutral-white);
}
button.cta.primaryButton p {
  color: var(--neutral-white) !important;
}
button.cta.primaryButton:not(.noHover):hover {
  background-color: var(--primary-200);
}
button.cta.normal {
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.7rem 0 !important;
  color: var(--text-100);
}
button.cta.normal p {
  padding: 0;
}
button.cta.secondaryButton {
  background-color: var(--blue-100);
  color: var(--neutral-white);
}
button.cta.secondaryButton p {
  color: var(--neutral-white) !important;
}
button.cta.secondaryButton:not(.noHover):hover {
  background: var(--primary-200);
}
button.cta.tertiaryButton.darkMode {
  background: transparent;
  border-color: color-mix(in srgb, var(--text-100) 28%, transparent);
  color: var(--text-100);
}
button.cta.tertiaryButton.darkMode:not(.noHover):hover {
  background: var(--text-100);
  color: var(--bg-100);
}
button.cta.tertiaryButton.lightMode {
  background: transparent;
  border-color: color-mix(in srgb, var(--text-invers-100) 32%, transparent);
  color: var(--text-invers-100);
}
button.cta.tertiaryButton.lightMode .cta-tooltip-icon {
  color: var(--text-invers-100);
}
button.cta.tertiaryButton.lightMode:not(.noHover):hover {
  background: var(--text-invers-100);
  color: var(--neutral-white);
}
button.cta.ghostButton {
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 1.2rem;
}
button.cta.ghostButton p {
  font-weight: 400;
}
button.cta.ghostButton.darkMode {
  border: 1px solid color-mix(in srgb, var(--neutral-white) 65%, transparent);
  color: var(--neutral-white);
}
button.cta.ghostButton.darkMode:not(.noHover):hover {
  background: var(--neutral-white);
  color: var(--text-100);
}
button.cta.ghostButton.lightMode {
  border: 1px solid color-mix(in srgb, var(--text-invers-100) 45%, transparent);
  color: var(--text-invers-100);
}
button.cta.ghostButton.lightMode:not(.noHover):hover {
  background: var(--text-invers-100);
  color: var(--neutral-white);
}
button.cta.ghostButtonReverse {
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 1.2rem;
}
button.cta.ghostButtonReverse.darkMode {
  border: 1px solid color-mix(in srgb, var(--text-100) 55%, transparent);
  color: var(--text-100);
}
button.cta.ghostButtonReverse.darkMode:not(.noHover):hover {
  background: var(--text-100);
  color: var(--bg-100);
}
button.cta.ghostButtonReverse.lightMode {
  border: 1px solid color-mix(in srgb, var(--text-invers-100) 55%, transparent);
  color: var(--text-invers-100);
}
button.cta.ghostButtonReverse.lightMode:not(.noHover):hover {
  background: var(--text-invers-100);
  color: var(--neutral-white);
}
button.cta.toggle {
  text-transform: none;
  letter-spacing: 0;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid color-mix(in srgb, var(--text-100) 24%, transparent);
  background: transparent;
  color: var(--text-100);
  font-size: 0.95rem;
}
button.cta.toggle.darkMode {
  color: var(--neutral-white);
  border-color: color-mix(in srgb, var(--neutral-white) 28%, transparent);
}
button.cta.toggle.lightMode {
  color: var(--text-invers-100);
  border-color: color-mix(in srgb, var(--text-invers-100) 28%, transparent);
}
button.cta.toggle:not(.active):not(.noHover):hover {
  background: color-mix(in srgb, var(--primary-100) 10%, transparent);
  color: var(--neutral-white);
}
button.cta.toggle.active {
  background: var(--primary-100);
  color: var(--neutral-white);
  border-color: color-mix(in srgb, var(--primary-200) 45%, transparent);
}
button.cta.toggle.active:not(.noHover):hover {
  background: var(--primary-200);
}
button.cta.toggle.small {
  padding: 0.25rem 0.5rem;
}
button.cta.toggle p {
  padding: 0;
  text-transform: none;
}
button.cta.tableButton,
button.cta.tableButtonWithContent {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.35rem;
  cursor: pointer;
  transition:
    background-color 0.12s ease,
    color 0.12s ease,
    transform 0.05s ease,
    border-color 0.12s ease;
  color: var(--text-invers-100);
  border: 1px solid transparent !important;
  border: none;
  font-weight: 600 !important;
}
button.cta.tableButton p,
button.cta.tableButtonWithContent p {
  font-size: 0.9rem;
}
button.cta.tableButton:hover,
button.cta.tableButtonWithContent:hover {
  color: var(--bg-100) !important;
  border: 1px solid var(--bg-100) !important;
}
button.cta.tableButton:hover svg,
button.cta.tableButtonWithContent:hover svg,
button.cta.tableButton:hover path,
button.cta.tableButtonWithContent:hover path {
  fill: var(--bg-100) !important;
}
button.cta.tableButton.darkMode:hover,
button.cta.tableButtonWithContent.darkMode:hover {
  color: var(--primary-100) !important;
  border: 1px solid var(--primary-100) !important;
}
button.cta.tableButton.darkMode:hover svg,
button.cta.tableButtonWithContent.darkMode:hover svg,
button.cta.tableButton.darkMode:hover path,
button.cta.tableButtonWithContent.darkMode:hover path {
  fill: var(--primary-100) !important;
}
button.cta.tableButton:disabled,
button.cta.tableButtonWithContent:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}
button.cta.BubbleButton {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0.6rem;
  border-radius: 24px;
  width: fit-content;
}
button.cta.BubbleButton.darkMode {
  background: var(--text-invers-100);
  color: var(--neutral-white);
}
button.cta.BubbleButton.darkMode:not(.noHover):hover {
  background: transparent;
  color: var(--text-100);
}
button.cta.BubbleButton.lightMode {
  background: var(--text-invers-100);
  color: var(--neutral-white);
}
button.cta.BubbleButton.lightMode:not(.noHover):hover {
  background: transparent;
  color: var(--text-invers-100);
}
button.cta.confirmationButton {
  border-radius: 0.7rem;
  background: color-mix(in srgb, var(--text-invers-150) 65%, transparent);
  color: var(--neutral-white);
}
button.cta.confirmationButton.lightMode {
  background: color-mix(in srgb, var(--text-invers-150) 35%, var(--neutral-white));
  color: var(--text-invers-100);
}
button.cta.darkMode {
  color: var(--text-100);
}
button.cta.lightMode {
  color: var(--text-invers-100);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/actions/ToggleCTA.esbuild-svelte-fake-css */
.toggle-cta.svelte-1pa6p64 {
  display: inline-flex;
  align-items: stretch;
  gap: 0.25rem;
  padding: 0.25rem;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--text-100, #f3eed9) 26%, transparent);
}
.toggle-cta.small.svelte-1pa6p64 {
  padding: 0.125rem;
}
.toggle-cta.disabled.svelte-1pa6p64 {
  opacity: 0.5;
  pointer-events: none;
}
.toggle-cta[data-theme=light].svelte-1pa6p64 {
  border-color: color-mix(in srgb, var(--text-invers-100, #2f4858) 28%, transparent);
}
.toggle-cta.svelte-1pa6p64 button.cta.toggle {
  padding: 0.35rem 0.5rem;
  box-shadow: none;
  border: none;
}
.toggle-cta.svelte-1pa6p64 button.cta.toggle.active {
  border: none;
}
.toggle-cta.svelte-1pa6p64 .toggle-cta__svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.toggle-cta.svelte-1pa6p64 .toggle-cta__svg svg {
  width: 1rem;
  height: 1rem;
  display: block;
}
.toggle-cta.svelte-1pa6p64 .toggle-cta__svg path {
  stroke: currentColor;
  fill: none;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/dateInput/DateInputTrigger.esbuild-svelte-fake-css */
.date-input__trigger.svelte-lc6jqv {
  background: transparent;
  border: none;
  color: currentColor;
  padding: 0.15rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.date-input__trigger.svelte-lc6jqv:hover,
.date-input__trigger.svelte-lc6jqv:focus-visible {
  cursor: pointer;
  background-color: color-mix(in srgb, currentColor 12%, transparent);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/DateInput.esbuild-svelte-fake-css */
.date-input-shell.svelte-1cexk7q {
  position: relative;
  width: 100%;
}
.date-input.svelte-1cexk7q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem;
  padding: 0 12px 12px 18px;
  width: 100%;
  border-bottom: 1px solid var(--text-100);
  color: var(--text-100);
  background: transparent;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}
.date-input.svelte-1cexk7q:focus-within {
  border-color: var(--primary-200);
  box-shadow: 0 1px 0 0 color-mix(in srgb, var(--primary-200) 80%, transparent);
}
.date-input.disabled.svelte-1cexk7q {
  opacity: 0.6;
  pointer-events: none;
}
.date-input.brightBackground.svelte-1cexk7q {
  border-color: var(--text-invers-100);
  color: var(--text-invers-100);
}
.date-input.brightBackground.svelte-1cexk7q:focus-within {
  border-color: var(--primary-100);
  box-shadow: 0 1px 0 0 color-mix(in srgb, var(--primary-100) 80%, transparent);
}
.form.light .date-input.svelte-1cexk7q {
  border-color: var(--text-100);
  color: var(--text-100);
}
.form.light .date-input.svelte-1cexk7q:focus-within {
  border-color: var(--primary-200);
  box-shadow: 0 1px 0 0 color-mix(in srgb, var(--primary-200) 80%, transparent);
}
.date-input__icon.svelte-1cexk7q {
  color: currentColor;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.date-input__field.svelte-1cexk7q {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: currentColor;
  padding: 0;
  font-size: 1rem;
  line-height: 1.35;
  min-height: 38px;
  caret-color: transparent;
}
.date-input__field.svelte-1cexk7q::placeholder {
  color: color-mix(in srgb, currentColor 60%, transparent);
}
.date-input__field.svelte-1cexk7q:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.date-input__clear.svelte-1cexk7q {
  background: transparent;
  border: none;
  color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.date-input__clear.svelte-1cexk7q:hover,
.date-input__clear.svelte-1cexk7q:focus-visible {
  cursor: pointer;
  background-color: color-mix(in srgb, currentColor 12%, transparent);
}
.kw-flatpickr {
  --kw-flatpickr-bg: var(--neutral-white, #ffffff);
  --kw-flatpickr-text: var(--text-invers-100, #2f4858);
  --kw-flatpickr-border: var(--input-border, rgba(71, 84, 103, 0.24));
  --kw-flatpickr-shadow: var(--panel-shadow, 0 18px 36px rgba(15, 23, 42, 0.25));
  --kw-flatpickr-hover: color-mix(in srgb, var(--kw-flatpickr-text) 10%, transparent);
  --kw-flatpickr-hover-strong: color-mix(in srgb, var(--kw-flatpickr-text) 16%, transparent);
  --kw-flatpickr-muted: color-mix(in srgb, var(--kw-flatpickr-text) 70%, transparent);
  font-family: var(--font-family-regular, var(--font-family-base, "Outfit", sans-serif));
  background: var(--kw-flatpickr-bg);
  border: 1px solid var(--kw-flatpickr-border);
  border-radius: 0;
  box-shadow: var(--kw-flatpickr-shadow);
  color: var(--kw-flatpickr-text);
  overflow: hidden;
  padding: 0.35rem 0.45rem 0.5rem 0.45rem;
}
.kw-flatpickr.kw-flatpickr--dark.svelte-1cexk7q {
  --kw-flatpickr-bg: var(--surface-overlay, var(--bg-075, #241f1f));
  --kw-flatpickr-text: var(--text-100, #f3eed9);
  --kw-flatpickr-border: var(--surface-border, rgba(243, 238, 217, 0.12));
  --kw-flatpickr-shadow: var(--kontext-shadow, 0 26px 52px rgba(10, 8, 8, 0.55));
}
.kw-flatpickr.arrowTop.svelte-1cexk7q:before,
.kw-flatpickr.arrowTop.svelte-1cexk7q:after,
.kw-flatpickr.arrowBottom.svelte-1cexk7q:before,
.kw-flatpickr.arrowBottom.svelte-1cexk7q:after {
  display: none;
}
.kw-flatpickr .flatpickr-months.svelte-1cexk7q,
.kw-flatpickr .flatpickr-time.svelte-1cexk7q {
  background: transparent;
}
.kw-flatpickr .flatpickr-months.svelte-1cexk7q {
  border-bottom: 1px solid color-mix(in srgb, var(--kw-flatpickr-border) 80%, transparent);
  padding-bottom: 0.25rem;
}
.kw-flatpickr .kw-flatpickr__granularity-slot.svelte-1cexk7q {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.45rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid color-mix(in srgb, var(--kw-flatpickr-border) 80%, transparent);
}
.kw-flatpickr .flatpickr-prev-month.svelte-1cexk7q,
.kw-flatpickr .flatpickr-next-month.svelte-1cexk7q {
  color: currentColor;
  fill: currentColor;
  opacity: 0.85;
}
.kw-flatpickr .flatpickr-prev-month.svelte-1cexk7q:hover,
.kw-flatpickr .flatpickr-next-month.svelte-1cexk7q:hover {
  opacity: 1;
}
.kw-flatpickr .flatpickr-month.svelte-1cexk7q {
  color: currentColor;
}
.kw-flatpickr .flatpickr-current-month.svelte-1cexk7q {
  font-family: var(--font-family-bold, var(--font-family-regular, "Outfit", sans-serif));
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.kw-flatpickr .flatpickr-weekday.svelte-1cexk7q {
  color: var(--kw-flatpickr-muted);
  font-weight: 600;
}
.kw-flatpickr .flatpickr-day.svelte-1cexk7q {
  color: currentColor;
  border-radius: 0;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}
.kw-flatpickr .flatpickr-day.today.svelte-1cexk7q {
  border-color: color-mix(in srgb, var(--primary-200) 42%, transparent);
}
.kw-flatpickr .flatpickr-day.svelte-1cexk7q:hover {
  background-color: var(--kw-flatpickr-hover);
}
.kw-flatpickr .flatpickr-day.selected.svelte-1cexk7q,
.kw-flatpickr .flatpickr-day.startRange.svelte-1cexk7q,
.kw-flatpickr .flatpickr-day.endRange.svelte-1cexk7q,
.kw-flatpickr .flatpickr-day.selected.inRange.svelte-1cexk7q,
.kw-flatpickr .flatpickr-day.startRange.inRange.svelte-1cexk7q,
.kw-flatpickr .flatpickr-day.endRange.inRange.svelte-1cexk7q {
  background: var(--primary-100);
  color: var(--text-100);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--primary-100) 30%, transparent);
}
.kw-flatpickr .flatpickr-day.svelte-1cexk7q:hover,
.kw-flatpickr .flatpickr-day.inRange.svelte-1cexk7q {
  background-color: var(--kw-flatpickr-hover-strong);
}
.kw-flatpickr .flatpickr-time.svelte-1cexk7q {
  border-top: 1px solid color-mix(in srgb, var(--kw-flatpickr-border) 80%, transparent);
}
.kw-flatpickr .flatpickr-time.svelte-1cexk7q input:where(.svelte-1cexk7q) {
  color: currentColor;
  background: transparent !important;
  border: 1px solid color-mix(in srgb, var(--kw-flatpickr-border) 85%, transparent);
  border-radius: 0;
}
.kw-flatpickr .flatpickr-time.svelte-1cexk7q input:where(.svelte-1cexk7q):focus {
  outline: none;
  box-shadow: var(--input-focus-ring, 0 0 0 3px color-mix(in srgb, var(--primary-100) 26%, transparent));
  border-color: color-mix(in srgb, var(--primary-100) 55%, transparent);
}

/* fakecss:/data/node_modules/svelte-select/ChevronIcon.esbuild-svelte-fake-css */
svg.svelte-1kxu7be {
  width: var(--chevron-icon-width, 20px);
  height: var(--chevron-icon-width, 20px);
  color: var(--chevron-icon-colour, currentColor);
}

/* fakecss:/data/node_modules/svelte-select/ClearIcon.esbuild-svelte-fake-css */
svg.svelte-1hraxrc {
  width: var(--clear-icon-width, 20px);
  height: var(--clear-icon-width, 20px);
  color: var(--clear-icon-color, currentColor);
}

/* fakecss:/data/node_modules/svelte-select/LoadingIcon.esbuild-svelte-fake-css */
.loading.svelte-y9fi5p {
  width: var(--spinner-width, 20px);
  height: var(--spinner-height, 20px);
  color: var(--spinner-color, var(--icons-color));
  animation: svelte-y9fi5p-rotate 0.75s linear infinite;
  transform-origin: center center;
  transform: none;
}
.circle_path.svelte-y9fi5p {
  stroke-dasharray: 90;
  stroke-linecap: round;
}
@keyframes svelte-y9fi5p-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* fakecss:/data/node_modules/svelte-select/Select.esbuild-svelte-fake-css */
.svelte-select.svelte-1ul7oo4 {
  --borderRadius: var(--border-radius);
  --clearSelectColor: var(--clear-select-color);
  --clearSelectWidth: var(--clear-select-width);
  --disabledBackground: var(--disabled-background);
  --disabledBorderColor: var(--disabled-border-color);
  --disabledColor: var(--disabled-color);
  --disabledPlaceholderColor: var(--disabled-placeholder-color);
  --disabledPlaceholderOpacity: var(--disabled-placeholder-opacity);
  --errorBackground: var(--error-background);
  --errorBorder: var(--error-border);
  --groupItemPaddingLeft: var(--group-item-padding-left);
  --groupTitleColor: var(--group-title-color);
  --groupTitleFontSize: var(--group-title-font-size);
  --groupTitleFontWeight: var(--group-title-font-weight);
  --groupTitlePadding: var(--group-title-padding);
  --groupTitleTextTransform: var(--group-title-text-transform);
  --groupTitleBorderColor: var(--group-title-border-color);
  --groupTitleBorderWidth: var(--group-title-border-width);
  --groupTitleBorderStyle: var(--group-title-border-style);
  --indicatorColor: var(--chevron-color);
  --indicatorHeight: var(--chevron-height);
  --indicatorWidth: var(--chevron-width);
  --inputColor: var(--input-color);
  --inputLeft: var(--input-left);
  --inputLetterSpacing: var(--input-letter-spacing);
  --inputMargin: var(--input-margin);
  --inputPadding: var(--input-padding);
  --itemActiveBackground: var(--item-active-background);
  --itemColor: var(--item-color);
  --itemFirstBorderRadius: var(--item-first-border-radius);
  --itemHoverBG: var(--item-hover-bg);
  --itemHoverColor: var(--item-hover-color);
  --itemIsActiveBG: var(--item-is-active-bg);
  --itemIsActiveColor: var(--item-is-active-color);
  --itemIsNotSelectableColor: var(--item-is-not-selectable-color);
  --itemPadding: var(--item-padding);
  --listBackground: var(--list-background);
  --listBorder: var(--list-border);
  --listBorderRadius: var(--list-border-radius);
  --listEmptyColor: var(--list-empty-color);
  --listEmptyPadding: var(--list-empty-padding);
  --listEmptyTextAlign: var(--list-empty-text-align);
  --listMaxHeight: var(--list-max-height);
  --listPosition: var(--list-position);
  --listShadow: var(--list-shadow);
  --listZIndex: var(--list-z-index);
  --multiItemBG: var(--multi-item-bg);
  --multiItemBorderRadius: var(--multi-item-border-radius);
  --multiItemDisabledHoverBg: var(--multi-item-disabled-hover-bg);
  --multiItemDisabledHoverColor: var(--multi-item-disabled-hover-color);
  --multiItemHeight: var(--multi-item-height);
  --multiItemMargin: var(--multi-item-margin);
  --multiItemPadding: var(--multi-item-padding);
  --multiSelectInputMargin: var(--multi-select-input-margin);
  --multiSelectInputPadding: var(--multi-select-input-padding);
  --multiSelectPadding: var(--multi-select-padding);
  --placeholderColor: var(--placeholder-color);
  --placeholderOpacity: var(--placeholder-opacity);
  --selectedItemPadding: var(--selected-item-padding);
  --spinnerColor: var(--spinner-color);
  --spinnerHeight: var(--spinner-height);
  --spinnerWidth: var(--spinner-width);
  --internal-padding: 0 0 0 16px;
  border: var(--border, 1px solid #d8dbdf);
  border-radius: var(--border-radius, 6px);
  min-height: var(--height, 42px);
  position: relative;
  display: flex;
  align-items: stretch;
  padding: var(--padding, var(--internal-padding));
  background: var(--background, #fff);
  margin: var(--margin, 0);
  width: var(--width, 100%);
  font-size: var(--font-size, 16px);
  max-height: var(--max-height);
}
.svelte-1ul7oo4 {
  box-sizing: var(--box-sizing, border-box);
}
.svelte-select.svelte-1ul7oo4:hover {
  border: var(--border-hover, 1px solid #b2b8bf);
}
.value-container.svelte-1ul7oo4 {
  display: flex;
  flex: 1 1 0%;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  padding: var(--value-container-padding, 5px 0);
  position: relative;
  overflow: var(--value-container-overflow, hidden);
  align-self: stretch;
}
.prepend.svelte-1ul7oo4,
.indicators.svelte-1ul7oo4 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.indicators.svelte-1ul7oo4 {
  position: var(--indicators-position);
  top: var(--indicators-top);
  right: var(--indicators-right);
  bottom: var(--indicators-bottom);
}
input.svelte-1ul7oo4 {
  position: absolute;
  cursor: default;
  border: none;
  color: var(--input-color, var(--item-color));
  padding: var(--input-padding, 0);
  letter-spacing: var(--input-letter-spacing, inherit);
  margin: var(--input-margin, 0);
  min-width: 10px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  font-size: var(--font-size, 16px);
}
.svelte-1ul7oo4:not(.multi) > .value-container:where(.svelte-1ul7oo4) > input:where(.svelte-1ul7oo4) {
  width: 100%;
  height: 100%;
}
input.svelte-1ul7oo4::placeholder {
  color: var(--placeholder-color, #78848f);
  opacity: var(--placeholder-opacity, 1);
}
input.svelte-1ul7oo4:focus {
  outline: none;
}
.svelte-select.focused.svelte-1ul7oo4 {
  border: var(--border-focused, 1px solid #006fe8);
  border-radius: var(--border-radius-focused, var(--border-radius, 6px));
}
.disabled.svelte-1ul7oo4 {
  background: var(--disabled-background, #ebedef);
  border-color: var(--disabled-border-color, #ebedef);
  color: var(--disabled-color, #c1c6cc);
}
.disabled.svelte-1ul7oo4 input:where(.svelte-1ul7oo4)::placeholder {
  color: var(--disabled-placeholder-color, #c1c6cc);
  opacity: var(--disabled-placeholder-opacity, 1);
}
.selected-item.svelte-1ul7oo4 {
  position: relative;
  overflow: var(--selected-item-overflow, hidden);
  padding: var(--selected-item-padding, 0 20px 0 0);
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--selected-item-color, inherit);
  font-size: var(--font-size, 16px);
}
.multi.svelte-1ul7oo4 .selected-item:where(.svelte-1ul7oo4) {
  position: absolute;
  line-height: var(--height, 42px);
  height: var(--height, 42px);
}
.selected-item.svelte-1ul7oo4:focus {
  outline: none;
}
.hide-selected-item.svelte-1ul7oo4 {
  opacity: 0;
}
.icon.svelte-1ul7oo4 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clear-select.svelte-1ul7oo4 {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--clear-select-width, 40px);
  height: var(--clear-select-height, 100%);
  color: var(--clear-select-color, var(--icons-color));
  margin: var(--clear-select-margin, 0);
  pointer-events: all;
  flex-shrink: 0;
}
.clear-select.svelte-1ul7oo4:focus {
  outline: var(--clear-select-focus-outline, 1px solid #006fe8);
}
.loading.svelte-1ul7oo4 {
  width: var(--loading-width, 40px);
  height: var(--loading-height);
  color: var(--loading-color, var(--icons-color));
  margin: var(--loading--margin, 0);
  flex-shrink: 0;
}
.chevron.svelte-1ul7oo4 {
  width: var(--chevron-width, 40px);
  height: var(--chevron-height, 40px);
  background: var(--chevron-background, transparent);
  pointer-events: var(--chevron-pointer-events, none);
  color: var(--chevron-color, var(--icons-color));
  border: var(--chevron-border, 0 0 0 1px solid #d8dbdf);
  flex-shrink: 0;
}
.multi.svelte-1ul7oo4 {
  padding: var(--multi-select-padding, var(--internal-padding));
}
.multi.svelte-1ul7oo4 input:where(.svelte-1ul7oo4) {
  padding: var(--multi-select-input-padding, 0);
  position: relative;
  margin: var(--multi-select-input-margin, 5px 0);
  flex: 1 1 40px;
}
.svelte-select.error.svelte-1ul7oo4 {
  border: var(--error-border, 1px solid #ff2d55);
  background: var(--error-background, #fff);
}
.a11y-text.svelte-1ul7oo4 {
  z-index: 9999;
  border: 0px;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  position: absolute;
  overflow: hidden;
  padding: 0px;
  white-space: nowrap;
}
.multi-item.svelte-1ul7oo4 {
  background: var(--multi-item-bg, #ebedef);
  margin: var(--multi-item-margin, 0);
  outline: var(--multi-item-outline, 1px solid #ddd);
  border-radius: var(--multi-item-border-radius, 4px);
  height: var(--multi-item-height, 25px);
  line-height: var(--multi-item-height, 25px);
  display: flex;
  cursor: default;
  padding: var(--multi-item-padding, 0 5px);
  overflow: hidden;
  gap: var(--multi-item-gap, 4px);
  outline-offset: -1px;
  max-width: var(--multi-max-width, none);
  color: var(--multi-item-color, var(--item-color));
}
.multi-item.disabled.svelte-1ul7oo4:hover {
  background: var(--multi-item-disabled-hover-bg, #ebedef);
  color: var(--multi-item-disabled-hover-color, #c1c6cc);
}
.multi-item-text.svelte-1ul7oo4 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multi-item-clear.svelte-1ul7oo4 {
  display: flex;
  align-items: center;
  justify-content: center;
  --clear-icon-color: var(--multi-item-clear-icon-color, #000);
}
.multi-item.active.svelte-1ul7oo4 {
  outline: var(--multi-item-active-outline, 1px solid #006fe8);
}
.svelte-select-list.svelte-1ul7oo4 {
  box-shadow: var(--list-shadow, 0 2px 3px 0 rgba(44, 62, 80, 0.24));
  border-radius: var(--list-border-radius, 4px);
  max-height: var(--list-max-height, 252px);
  overflow-y: auto;
  background: var(--list-background, #fff);
  position: var(--list-position, absolute);
  z-index: var(--list-z-index, 2);
  border: var(--list-border);
}
.prefloat.svelte-1ul7oo4 {
  opacity: 0;
  pointer-events: none;
}
.list-group-title.svelte-1ul7oo4 {
  color: var(--group-title-color, #8f8f8f);
  cursor: default;
  font-size: var(--group-title-font-size, 16px);
  font-weight: var(--group-title-font-weight, 600);
  height: var(--height, 42px);
  line-height: var(--height, 42px);
  padding: var(--group-title-padding, 0 20px);
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
  text-transform: var(--group-title-text-transform, uppercase);
  border-width: var(--group-title-border-width, medium);
  border-style: var(--group-title-border-style, none);
  border-color: var(--group-title-border-color, color);
}
.empty.svelte-1ul7oo4 {
  text-align: var(--list-empty-text-align, center);
  padding: var(--list-empty-padding, 20px 0);
  color: var(--list-empty-color, #78848f);
}
.item.svelte-1ul7oo4 {
  cursor: default;
  height: var(--item-height, var(--height, 42px));
  line-height: var(--item-line-height, var(--height, 42px));
  padding: var(--item-padding, 0 20px);
  color: var(--item-color, inherit);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: var(--item-transition, all 0.2s);
  align-items: center;
  width: 100%;
}
.item.group-item.svelte-1ul7oo4 {
  padding-left: var(--group-item-padding-left, 40px);
}
.item.svelte-1ul7oo4:active {
  background: var(--item-active-background, #b9daff);
}
.item.active.svelte-1ul7oo4 {
  background: var(--item-is-active-bg, #007aff);
  color: var(--item-is-active-color, #fff);
}
.item.first.svelte-1ul7oo4 {
  border-radius: var(--item-first-border-radius, 4px 4px 0 0);
}
.item.hover.svelte-1ul7oo4:not(.active) {
  background: var(--item-hover-bg, #e7f2ff);
  color: var(--item-hover-color, inherit);
}
.item.not-selectable.svelte-1ul7oo4,
.item.hover.item.not-selectable.svelte-1ul7oo4,
.item.active.item.not-selectable.svelte-1ul7oo4,
.item.not-selectable.svelte-1ul7oo4:active {
  color: var(--item-is-not-selectable-color, #999);
  background: transparent;
}
.required.svelte-1ul7oo4 {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/display/Tag.esbuild-svelte-fake-css */
span.svelte-19v7h69 {
  --kw-tag-bg: var(--primary-100);
  --kw-tag-fg: white;
  --kw-tag-fill: var(--kw-tag-bg);
  --kw-tag-soft-accent: var(--kw-tag-bg);
  --kw-tag-soft-fg: color-mix(in srgb, var(--kw-tag-soft-accent) 42%, var(--text-100));
  --kw-tag-crinkle-width: 9px;
  --kw-tag-crinkle-outset: 7px;
  background-color: var(--kw-tag-bg);
  border: 1px solid transparent;
  padding: 6px 12px;
  display: flex;
  flex-direction: row;
  height: fit-content;
  gap: 0.5rem;
  position: relative;
  font-size: 20px;
}
span.color-blue.svelte-19v7h69 {
  --kw-tag-bg: var(--blue-100);
  --kw-tag-soft-accent: var(--blue-100);
}
span.color-neutral.svelte-19v7h69 {
  --kw-tag-bg: color-mix(in srgb, var(--text-100) 12%, transparent);
  --kw-tag-fg: var(--text-100);
  --kw-tag-soft-accent: var(--text-100);
  --kw-tag-soft-fg: var(--text-100);
}
span.color-green.svelte-19v7h69 {
  --kw-tag-bg: var(--confirm-100);
  --kw-tag-fg: var(--bg-100);
  --kw-tag-soft-accent: var(--confirm-100);
}
span.color-teal.svelte-19v7h69 {
  --kw-tag-bg: var(--green-200);
  --kw-tag-fg: var(--bg-100);
  --kw-tag-soft-accent: var(--green-200);
}
span.color-yellow.svelte-19v7h69 {
  --kw-tag-bg: var(--yellow-100);
  --kw-tag-fg: var(--bg-100);
  --kw-tag-soft-accent: var(--yellow-100);
}
span.color-orange.svelte-19v7h69 {
  --kw-tag-bg: color-mix(in srgb, var(--yellow-100) 60%, var(--red-300));
  --kw-tag-fg: var(--bg-100);
  --kw-tag-soft-accent: color-mix(in srgb, var(--yellow-100) 60%, var(--red-300));
}
span.color-purple.svelte-19v7h69 {
  --kw-tag-bg: #6d28d9;
  --kw-tag-soft-accent: #6d28d9;
}
span.soft.svelte-19v7h69 {
  --kw-tag-fill: color-mix(in srgb, var(--kw-tag-soft-accent) 18%, transparent);
  background-color: color-mix(in srgb, var(--kw-tag-soft-accent) 18%, transparent);
  border-color: color-mix(in srgb, var(--kw-tag-soft-accent) 42%, transparent);
}
span.svelte-19v7h69 em:where(.svelte-19v7h69) {
  color: var(--kw-tag-fg);
  font-weight: 400;
  font-size: 1em;
  line-height: 14px;
  font-family: var(--font-family-regular, var(--font-family-base, "Outfit", sans-serif));
  font-style: normal;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
span.soft.svelte-19v7h69 em:where(.svelte-19v7h69) {
  color: var(--kw-tag-soft-fg);
}
span.smallVersion.svelte-19v7h69 {
  padding: 4px 10px;
}
span.smallVersion.svelte-19v7h69 em:where(.svelte-19v7h69) {
  font-size: 0.7em;
  line-height: 9px;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/SelectInput.esbuild-svelte-fake-css */
.svelte-select {
  margin-top: 0rem !important;
  --border-radius: 6px;
  --font-size: 1rem;
  --height: 40px;
  --padding: 4px 52px 4px 14px;
  --value-container-padding: 2px 0;
  --selected-item-padding: 0 16px 0 4px;
  --input-padding: 0;
  --input-margin: 0;
  --multi-select-padding: 4px 60px 4px 14px;
  --multi-select-input-padding: 0;
  --multi-select-input-margin: 4px 0;
  --multi-item-padding: 0;
  --multi-item-margin: 0 6px 6px 0;
  --multi-item-border-radius: 0;
  --multi-item-gap: 6px;
  --multi-item-outline: 0 solid transparent;
  --multi-item-height: auto;
  --multi-item-clear-icon-color: currentColor;
  --clear-select-width: 28px;
  --clear-select-height: 100%;
  --chevron-width: 32px;
  --chevron-border: 0;
  --chevron-background: transparent;
  --chevron-pointer-events: none;
  --selected-item-overflow: hidden;
  --list-border-radius: 12px;
  --list-max-height: 260px;
  --list-position: absolute;
  --list-z-index: 12;
  --item-padding: 0 18px;
  --item-height: 40px;
  --item-line-height: 40px;
  --group-item-padding-left: 40px;
  --select-focus-shadow: var(--focus-ring);
  background: transparent !important;
  border-radius: 0;
  outline: none !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  border: 1px solid transparent !important;
}
.svelte-select *::-webkit-scrollbar {
  width: 11px !important;
  height: 11px;
}
.svelte-select *::-webkit-scrollbar-thumb {
  background-color: white !important;
  border-radius: 4px;
}
.svelte-select span {
  opacity: 1 !important;
}
.svelte-select span.smallVersion {
  opacity: 1 !important;
  height: auto !important;
  padding: 6px 12px !important;
}
.svelte-select input {
  padding: 0 !important;
  font-size: 1rem;
}
.svelte-select .selected-item {
  padding-left: 4px;
}
.svelte-select .indicators {
  gap: 0;
}
.svelte-select:not(.multi) .selected-item {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}
.svelte-select .icon {
  margin-right: 0;
  margin-bottom: 0;
  height: 40px;
}
.svelte-select .icon > * {
  display: flex;
  align-items: center;
}
.svelte-select .clear-select {
  padding-right: 0;
  padding-left: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.svelte-select .clear-select:hover {
  cursor: pointer;
}
.svelte-select.focused {
  border: 1px solid transparent !important;
}
.svelte-select .value-container {
  gap: 8px;
  align-items: center;
  min-height: 34px;
  min-width: 0;
  overflow: hidden !important;
  margin-right: 12px;
}
.svelte-select.multi {
  align-items: stretch;
  --chevron-color: var(--neutral-white, #fff);
  min-height: 40px;
  height: 40px;
  max-height: 40px;
}
.svelte-select.multi .value-container {
  align-items: flex-start;
  align-content: flex-start;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  padding-right: 4px;
  min-height: 0;
}
.svelte-select .multi-item {
  background: transparent;
  padding: 0;
  margin: 0px !important;
  height: auto;
  line-height: normal;
  overflow: visible;
  transition: none;
}
.svelte-select .multi-item-clear {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.svelte-select .multi-item-clear svg {
  width: 12px;
  height: 12px;
}
.svelte-select.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.svelte-select-list {
  margin-top: 6px;
  border: none;
  padding: 6px 4px;
  background: var(--list-background, var(--kontext-panel));
  border-radius: 0px !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior-x: contain;
  scrollbar-gutter: stable both-edges;
}
.svelte-select-list .list-item {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.svelte-select-list .item {
  border-radius: 0px !important;
  cursor: pointer !important;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap;
}
.svelte-select-list .empty {
  font-size: 0.9rem;
  opacity: 0.72;
}
.svelte-select--dark {
  --background: var(--kontext-panel);
  --border: 0px solid black;
  --border-hover: 0px solid black;
  --border-focused: 0px solid black;
  --input-color: var(--kontext-text);
  --item-color: var(--kontext-text);
  --selected-item-color: var(--kontext-text);
  --placeholder-color: var(--kontext-text-muted);
  --placeholder-opacity: 0.72;
  --icons-color: var(--kontext-text-subtle);
  --chevron-color: var(--kontext-text-subtle);
  --clear-select-color: var(--kontext-text-subtle);
  --clear-select-focus-outline: 1px solid var(--kontext-outline);
  --list-background: var(--bg-100) !important;
  --list-border: 1px solid var(--surface-border);
  --list-shadow: 0 18px 38px rgba(13, 12, 12, 0.45);
  --item-hover-bg: var(--surface-muted);
  --item-hover-color: var(--kontext-text);
  --item-is-active-bg: var(--primary-100);
  --item-is-active-color: var(--text-100);
  --item-active-background: var(--primary-200);
  --item-first-border-radius: 8px;
  --multi-item-bg: var(--kontext-panel-muted);
  --multi-item-color: var(--kontext-text);
  --multi-item-outline: 1px solid var(--kontext-border-strong);
  --multi-item-disabled-hover-bg: var(--surface-muted);
  --multi-item-disabled-hover-color: var(--kontext-text-subtle);
  --spinner-color: var(--kontext-text-subtle);
  --select-focus-shadow: var(--focus-ring);
}
.svelte-select--bright {
  --background: var(--input-bg);
  --border: 0px solid black;
  --border-hover: 0px solid black;
  --border-focused: 0px solid black;
  --input-color: var(--text-050);
  --item-color: var(--text-050);
  --selected-item-color: var(--text-050);
  --placeholder-color: var(--input-placeholder);
  --placeholder-opacity: 1;
  --icons-color: var(--text-400);
  --chevron-color: var(--text-400);
  --clear-select-color: var(--text-400);
  --clear-select-focus-outline: 1px solid var(--input-border-focus);
  --list-background: var(--bg-100) !important;
  --list-border: 1px solid color-mix(in srgb, var(--grey-200) 75%, var(--neutral-white));
  --list-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
  --item-hover-bg: var(--surface-muted);
  --item-hover-color: var(--text-050);
  --item-is-active-bg: color-mix(in srgb, var(--primary-100) 86%, var(--neutral-white));
  --item-is-active-color: var(--neutral-white);
  --item-active-background: color-mix(in srgb, var(--primary-200) 82%, var(--neutral-white));
  --item-first-border-radius: 8px;
  --multi-item-bg: var(--grey-100);
  --multi-item-color: white;
  --multi-item-outline: 1px solid color-mix(in srgb, var(--grey-200) 82%, var(--neutral-white));
  --multi-item-disabled-hover-bg: var(--grey-200);
  --multi-item-disabled-hover-color: var(--grey-400);
  --spinner-color: var(--grey-400);
  --select-focus-shadow: var(--input-focus-ring);
}
.svelte-select .multi-item {
  overflow: visible;
}
.svelte-select .multi-item-text {
  overflow: visible;
}
.select-multi-tag {
  position: relative;
  top: -1px;
}
.svelte-select--bright.multi .select-multi-tag,
.svelte-select--bright.multi .select-multi-tag *,
.svelte-select--bright.multi .select-multi-tag em {
  color: var(--multi-item-color) !important;
}
.select-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1.2;
  padding: 0.25rem 0;
  white-space: nowrap;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.select-item__icon {
  color: var(--icons-color);
  flex-shrink: 0;
}
.select-item__label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select-selection {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.select-selection__icon {
  color: var(--icons-color);
  flex-shrink: 0;
}
.select-selection__label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.svelte-select .indicators {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  cursor: pointer !important;
}
.multi-item-clear {
  cursor: pointer !important;
}
.form label .svelte-select,
form:not(.exclude) label .svelte-select {
  width: 100% !important;
  padding: 0 18px 12px 18px !important;
  border: 0 solid black !important;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--text-invers-100) !important;
  text-align: start !important;
  color: var(--text-invers-100) !important;
  font-size: 1rem !important;
}
.form label .svelte-select:focus,
form:not(.exclude) label .svelte-select:focus {
  outline: none !important;
  border-bottom: 1px solid var(--primary-100) !important;
}
.form label .svelte-select.error,
form:not(.exclude) label .svelte-select.error {
  border-bottom: 3px solid var(--primary-100) !important;
}
.form label .svelte-select.no-input,
form:not(.exclude) label .svelte-select.no-input {
  border-bottom: none !important;
}
.form label div.svelte-select,
form:not(.exclude) label div.svelte-select {
  color: var(--text-invers-100) !important;
}
.form:not(.light) .list-item .select-item,
form:not(.exclude):not(.light) .list-item .select-item {
  color: white !important;
}
.form:not(.light) .list-item .item.hover .select-item,
form:not(.exclude):not(.light) .list-item .item.hover .select-item {
  color: white !important;
}
.form:not(.light) .selected-item,
form:not(.exclude):not(.light) .selected-item {
  color: var(--text-invers-100) !important;
}
.form:not(.light) .icon,
form:not(.exclude):not(.light) .icon {
  color: var(--text-invers-100) !important;
}
.form:not(.light) .svelte-select .list-item .item,
form:not(.exclude):not(.light) .svelte-select .list-item .item {
  display: flex;
  align-items: center;
}
.form:not(.light) .svelte-select .indicators,
form:not(.exclude):not(.light) .svelte-select .indicators {
  background-color: white;
}
form.light .svelte-select,
.form.light .svelte-select,
.content-block.dark .svelte-select {
  border-radius: 0 !important;
  border-bottom: 1px solid var(--text-100) !important;
}
form.light .svelte-select .indicators,
.form.light .svelte-select .indicators,
.content-block.dark .svelte-select .indicators {
  background-color: var(--bg-100);
}
form.light .selected-item,
.form.light .selected-item,
.content-block.dark .selected-item {
  color: white !important;
}
form.light .icon,
.form.light .icon,
.content-block.dark .icon {
  color: white !important;
}
form.light label > div.svelte-select,
.form.light label > div.svelte-select,
.content-block.dark label > div.svelte-select {
  border-bottom: 1px solid white !important;
  color: white !important;
}
form.light label > div.svelte-select:focus,
.form.light label > div.svelte-select:focus,
.content-block.dark label > div.svelte-select:focus {
  border-bottom: 1px solid var(--primary-200) !important;
}
form.light label > div.svelte-select.error,
.form.light label > div.svelte-select.error,
.content-block.dark label > div.svelte-select.error {
  border-bottom: 3px solid var(--primary-200) !important;
}
form.light label > div.svelte-select.no-input,
.form.light label > div.svelte-select.no-input,
.content-block.dark label > div.svelte-select.no-input {
  border-bottom: none !important;
}
form.light label div.svelte-select,
.form.light label div.svelte-select,
.content-block.dark label div.svelte-select {
  color: white !important;
}
form.light label .list-item .select-item,
.form.light label .list-item .select-item,
.content-block.dark label .list-item .select-item {
  color: white !important;
}
form.light .list-item .select-item,
.form.light .list-item .select-item,
.content-block.dark .list-item .select-item {
  color: white !important;
}
form.light .list-item .item.hover div.select-item,
.form.light .list-item .item.hover div.select-item,
.content-block.dark .list-item .item.hover div.select-item {
  color: white !important;
}
form.light .svelte-select *,
.form.light .svelte-select *,
.content-block.dark .svelte-select * {
  color: white !important;
}
form.light .svelte-select .list-item .item,
.form.light .svelte-select .list-item .item,
.content-block.dark .svelte-select .list-item .item {
  display: flex;
  align-items: center;
}
form.light .svelte-select .indicators,
.form.light .svelte-select .indicators,
.content-block.dark .svelte-select .indicators {
  background-color: var(--bg-100);
}
form.light .svelte-select.multi,
.form.light .svelte-select.multi,
.content-block.dark .svelte-select.multi {
  --multi-item-color: white;
}
form.light .svelte-select.multi .multi-item,
.form.light .svelte-select.multi .multi-item,
.content-block.dark .svelte-select.multi .multi-item,
form.light .svelte-select.multi .multi-item *,
.form.light .svelte-select.multi .multi-item *,
.content-block.dark .svelte-select.multi .multi-item *,
form.light .svelte-select.multi .select-multi-tag,
.form.light .svelte-select.multi .select-multi-tag,
.content-block.dark .svelte-select.multi .select-multi-tag,
form.light .svelte-select.multi .select-multi-tag *,
.form.light .svelte-select.multi .select-multi-tag *,
.content-block.dark .svelte-select.multi .select-multi-tag *,
form.light .svelte-select.multi .select-multi-tag em,
.form.light .svelte-select.multi .select-multi-tag em,
.content-block.dark .svelte-select.multi .select-multi-tag em {
  color: white !important;
}

/* node_modules/simplebar/dist/simplebar.css */
[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}
.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}
.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}
.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}
.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}
.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}
.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}
.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}
.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
}
.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}
.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}
.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}
.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}
.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}
.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}
.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/typography/SectionTitle.esbuild-svelte-fake-css */
.kw-header-with-button.svelte-o6bdyh {
  --kw-section-title-button-width: 0px;
  --kw-section-title-header-gap: 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.6rem;
  width: 100%;
}
.kw-header-with-button.svelte-o6bdyh:not(.no-wrap) {
  flex-wrap: wrap;
  row-gap: 0.8rem;
}
.kw-header-with-button.svelte-o6bdyh:not(.no-wrap) .button-actions:where(.svelte-o6bdyh) {
  flex: 0 10 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}
.kw-header-with-button.svelte-o6bdyh .kw-section-title:where(.svelte-o6bdyh) {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}
.kw-header-with-button.no-wrap.svelte-o6bdyh .kw-section-title:where(.svelte-o6bdyh) {
  max-width: max(0px, calc(100% - var(--kw-section-title-button-width) - var(--kw-section-title-header-gap)));
}
@media (max-width: 600px) {
  .kw-header-with-button.mobile-wrap.svelte-o6bdyh {
    flex-direction: column;
    align-items: stretch;
  }
  .kw-header-with-button.mobile-wrap.svelte-o6bdyh .kw-section-title:where(.svelte-o6bdyh) {
    width: 100%;
    max-width: 100%;
  }
  .kw-header-with-button.mobile-wrap.svelte-o6bdyh .button-actions:where(.svelte-o6bdyh) {
    width: 100%;
    align-self: stretch;
    justify-content: flex-end;
  }
}
.button-actions.svelte-o6bdyh {
  display: flex;
  gap: 1.2rem;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  justify-content: flex-start;
}
@media (max-width: 1000px) {
  .button-actions.svelte-o6bdyh {
    flex-wrap: wrap;
  }
}
.kw-section-title.svelte-o6bdyh {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  width: 100%;
}
.kw-section-title.svelte-o6bdyh .kw-section-title__top-row:where(.svelte-o6bdyh) {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
.kw-section-title.svelte-o6bdyh .kw-section-title__secondary-cta:where(.svelte-o6bdyh) {
  margin-left: auto;
}
.kw-section-title.svelte-o6bdyh small:where(.svelte-o6bdyh) {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.kw-section-title.svelte-o6bdyh .kw-section-title__heading:where(.svelte-o6bdyh) {
  color: var(--text-primary-100);
  display: flex;
  gap: 0.6rem;
  align-items: flex-end;
  width: 100%;
  min-width: 0;
}
.kw-section-title.svelte-o6bdyh .kw-section-title__heading:where(.svelte-o6bdyh) :where(.svelte-o6bdyh) {
  color: var(--text-primary-100);
}
.kw-section-title.svelte-o6bdyh .kw-section-title__heading:where(.svelte-o6bdyh) .kw-section-title__heading-title:where(.svelte-o6bdyh) {
  min-width: 0;
}
.kw-section-title.svelte-o6bdyh .kw-section-title__heading:where(.svelte-o6bdyh) .kw-section-title__heading-title.no-wrap:where(.svelte-o6bdyh) {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kw-section-title.svelte-o6bdyh .kw-section-title__heading:where(.svelte-o6bdyh) button:where(.svelte-o6bdyh) {
  display: flex;
  align-items: flex-end;
}
.kw-section-title.svelte-o6bdyh .kw-section-title__heading:where(.svelte-o6bdyh) button:where(.svelte-o6bdyh):hover {
  opacity: 0.5;
}
.kw-section-title.svelte-o6bdyh p:where(.svelte-o6bdyh) {
  margin: 0;
  line-height: 1.6;
}
.kw-section-title.darkMode.svelte-o6bdyh small:where(.svelte-o6bdyh) {
  color: var(--text-200) !important;
}
.kw-section-title.darkMode.svelte-o6bdyh .kw-section-title__heading:where(.svelte-o6bdyh) {
  color: var(--primary-100) !important;
}
.kw-section-title.darkMode.svelte-o6bdyh .kw-section-title__heading:where(.svelte-o6bdyh) :where(.svelte-o6bdyh) {
  color: var(--primary-100) !important;
}
.kw-section-title.darkMode.svelte-o6bdyh p:where(.svelte-o6bdyh) {
  color: var(--text-200) !important;
}
.kw-section-title.lightMode.svelte-o6bdyh small:where(.svelte-o6bdyh) {
  color: color-mix(in srgb, var(--text-invers-100) 80%, transparent) !important;
}
.kw-section-title.lightMode.svelte-o6bdyh .kw-section-title__heading:where(.svelte-o6bdyh) {
  color: var(--primary-100) !important;
}
.kw-section-title.lightMode.svelte-o6bdyh .kw-section-title__heading:where(.svelte-o6bdyh) :where(.svelte-o6bdyh) {
  color: var(--primary-100) !important;
}
.kw-section-title.lightMode.svelte-o6bdyh p:where(.svelte-o6bdyh) {
  color: color-mix(in srgb, var(--text-invers-100) 85%, transparent) !important;
}
.small.svelte-o6bdyh {
  gap: 0.2rem;
}
.small.svelte-o6bdyh small:where(.svelte-o6bdyh) {
  font-size: 0.5rem;
}
.small.svelte-o6bdyh .kw-section-title__heading:where(.svelte-o6bdyh) {
  font-size: 1.3rem;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/overlay/ModalDialog.esbuild-svelte-fake-css */
.modal {
  border: none;
  padding: 0;
  margin: auto;
  background: transparent;
  border-radius: 0;
  width: min(100%, 540px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal.modal--small {
  width: min(100%, 420px);
}
.modal.modal--large {
  width: min(100%, 720px);
}
.modal.modal--xl {
  width: min(100%, 1700px);
  height: min(80vh, 700px);
}
.modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal__footer {
  border-top: 1px solid rgba(243, 238, 217, 0.2);
  padding-top: 0.6rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.modal__header {
  display: flex;
  align-items: stretch;
  position: relative;
  height: 2.4rem;
  padding: 0;
}
.modal__bar {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0.45rem 1.2rem 0.4rem;
  padding-top: 1.2rem;
  padding-bottom: 0px;
  background: var(--bg-100);
  border-top: 1px solid rgba(243, 238, 217, 0.2);
  border-left: 1px solid rgba(243, 238, 217, 0.2);
}
.modal__title {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-100);
  line-height: 1.2;
  margin-top: 0.6rem;
}
.modal__corner {
  position: relative;
  width: 2.4rem;
  min-width: 2.4rem;
  height: 105%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.modal__crinkle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}
.modal__crinkle svg {
  height: 100%;
  width: auto;
  display: block;
}
.modal__crinkle path {
  fill: var(--bg-100);
  stroke: none;
}
.modal__crinkle line {
  stroke: rgba(243, 238, 217, 0.2);
  stroke-width: 1px;
}
.modal__close {
  position: relative;
  background: none;
  border: none;
  color: color-mix(in srgb, var(--text-100) 60%, transparent);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.3rem;
  line-height: 1;
  border-radius: 999px;
  transition: color 0.2s, background-color 0.2s;
  z-index: 1;
}
.modal__body {
  background: var(--bg-100);
  border: 1px solid rgba(243, 238, 217, 0.2);
  border-top: 0px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  flex: 1 1 auto;
  min-height: 0;
  max-height: calc(90vh - 2.4rem);
  overflow: auto;
  padding: 1.2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal__body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.modal__body .simplebar-track.simplebar-vertical {
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  width: 7px;
  overflow: visible;
  top: 1.2rem;
  bottom: 1.2rem;
  right: 2px;
}
.modal__body .simplebar-scrollbar {
  transition-duration: 0ms !important;
  cursor: pointer;
}
.modal__body .simplebar-scrollbar::before {
  background-color: var(--neutral-white);
  top: -2px;
  left: -2px;
  opacity: 1;
  border-radius: 0;
  width: 11px;
  height: calc(100% + 2px);
  transition-delay: 0s;
}
.modal ul li {
  color: var(--text-100) !important;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/TagPickerModal.esbuild-svelte-fake-css */
.tag-picker-simple {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 260px;
  justify-content: flex-start;
}
.tag-picker-simple .tag-picker-simple__actions {
  display: flex;
  justify-content: flex-end;
}
.tag-picker-simple .tag-picker-simple__actions * {
  color: white !important;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/TagBasedInputEditor.esbuild-svelte-fake-css */
.tag-editor.svelte-o34h8u {
  min-height: 52px;
  display: block;
  color: var(--neutral-white);
  white-space: pre-wrap;
  word-break: break-word;
  outline: none;
  line-height: 1.45;
  cursor: text;
  position: relative;
}
.tag-editor.svelte-o34h8u:focus {
  outline: none;
}
.tag-editor.svelte-o34h8u::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0 auto auto 0;
  color: var(--text-400);
  opacity: 0.8;
  pointer-events: none;
  white-space: pre-wrap;
  line-height: inherit;
  display: none;
}
.tag-editor[data-empty=true].svelte-o34h8u::before {
  display: block;
}
.tag-editor.brightBackground.svelte-o34h8u,
.form.light .tag-editor.svelte-o34h8u {
  color: var(--text-100);
}
.tag-editor.brightBackground.svelte-o34h8u::before,
.form.light .tag-editor.svelte-o34h8u::before {
  color: var(--input-placeholder);
}
.text-segment.svelte-o34h8u {
  white-space: pre-wrap;
  color: inherit;
  line-height: 1.4;
  display: inline;
}
.text-segment[data-empty-text=true].svelte-o34h8u {
  display: inline-block;
  min-width: 1px;
}
.token.svelte-o34h8u {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  border-radius: 10px;
  margin-right: 6px;
  margin-bottom: 4px;
}
.token__tag.svelte-o34h8u {
  display: inline-flex;
  transform: none;
  transform-origin: center left;
  scale: 0.98;
}
.tag-editor.svelte-o34h8u::-webkit-scrollbar {
  width: 8px;
}
.tag-editor.svelte-o34h8u::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--surface-border) 70%, transparent);
  border-radius: 8px;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/TagPickerTrigger.esbuild-svelte-fake-css */
.tag-trigger.svelte-mv0n2g {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--surface-border) 70%, transparent);
  border-radius: 10px;
  color: var(--text-invers-100);
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
}
.tag-trigger.svelte-mv0n2g:hover {
  background: color-mix(in srgb, var(--bg-150) 70%, transparent);
  border-color: color-mix(in srgb, var(--primary-100) 60%, var(--surface-border));
  transform: translateY(-1px);
}
.tag-trigger.svelte-mv0n2g:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.tag-trigger.brightBackground.svelte-mv0n2g,
.form.light .tag-trigger.svelte-mv0n2g {
  color: var(--text-100);
}
.tag-trigger.brightBackground.svelte-mv0n2g:hover,
.form.light .tag-trigger.svelte-mv0n2g:hover {
  background: color-mix(in srgb, var(--bg-150) 60%, transparent);
}
.tag-trigger__chevron.svelte-mv0n2g {
  display: inline-flex;
  opacity: 0.8;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/TagBasedInput.esbuild-svelte-fake-css */
.tag-input-shell.svelte-r5vj09 {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0.5rem;
  padding: 0 12px 12px 18px;
  border-bottom: 1px solid var(--text-invers-100);
  position: relative;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.tag-input-shell.brightBackground.svelte-r5vj09,
.form.light .tag-input-shell.svelte-r5vj09 {
  border-color: var(--text-100);
}
.tag-input-shell.disabled.svelte-r5vj09 {
  opacity: 0.6;
  pointer-events: none;
}
.tag-input-shell.svelte-r5vj09:focus-within {
  border-color: var(--primary-100);
  box-shadow: 0 1px 0 0 color-mix(in srgb, var(--primary-100) 80%, transparent);
}
label.tagBasedInput {
  height: auto;
  max-height: none;
}
label.tagBasedInput .tag-input-shell span {
  opacity: 1 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  text-align: left;
}
label.tagBasedInput .tag-input-shell .placeholder {
  opacity: 0.9 !important;
  color: var(--text-300) !important;
  font-size: 1rem;
  line-height: 1.35;
}
label.tagBasedInput .tag-input-shell .text-segment,
label.tagBasedInput .tag-input-shell .token__tag,
label.tagBasedInput .tag-input-shell .token {
  color: var(--neutral-white) !important;
  opacity: 1 !important;
}
.form.light label.tagBasedInput .tag-input-shell .text-segment,
.form.light label.tagBasedInput .tag-input-shell .token__tag,
.form.light label.tagBasedInput .tag-input-shell .token {
  color: var(--text-100) !important;
}
.tag-input__focus-proxy.svelte-r5vj09 {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  inset: 0;
  pointer-events: none;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/Input.esbuild-svelte-fake-css */
label.svelte-1gqwaea {
  position: relative;
}
.helperText.svelte-1gqwaea {
  position: absolute;
  right: 0px;
  color: var(--bg-100);
  top: 50%;
  transform: translateY(-50%);
}
label.hasTooltipIcon.svelte-1gqwaea > input:where(.svelte-1gqwaea),
label.hasTooltipIcon.svelte-1gqwaea > textarea:where(.svelte-1gqwaea),
label.hasTooltipIcon.svelte-1gqwaea > .no-input:where(.svelte-1gqwaea),
label.hasTooltipIcon.svelte-1gqwaea > .password-field:where(.svelte-1gqwaea) input:where(.svelte-1gqwaea) {
  padding-right: 2.8rem !important;
}
label.hasTooltipIcon.svelte-1gqwaea .svelte-select {
  padding-right: 2.8rem !important;
}
.password-field.svelte-1gqwaea {
  position: relative;
  display: flex;
  align-items: center;
}
input.svelte-1gqwaea {
  padding-right: 3.25rem !important;
}
.password-toggle.svelte-1gqwaea {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-invers-100);
  cursor: pointer;
}
.password-toggle.svelte-1gqwaea:hover,
.password-toggle.svelte-1gqwaea:focus-visible {
  color: var(--primary-100);
  outline: none;
}
.password-requirements.svelte-1gqwaea {
  list-style: none;
  padding: 0 18px 2px 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.password-requirements.svelte-1gqwaea li:where(.svelte-1gqwaea) {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--primary-100);
}
.password-requirements.svelte-1gqwaea li.met:where(.svelte-1gqwaea) {
  color: var(--confirm-100);
}
.form.light .password-toggle.svelte-1gqwaea {
  color: var(--text-100);
}
.form.light .password-requirements.svelte-1gqwaea li:where(.svelte-1gqwaea) {
  color: var(--text-100);
}
.toggle-row.svelte-1gqwaea {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}
.toggle-row.isDisabled.svelte-1gqwaea {
  opacity: 0.55;
}
.toggle-row.svelte-1gqwaea .checkbox-label:where(.svelte-1gqwaea) {
  font-weight: 600;
  color: var(--text-100);
  font-size: 1rem !important;
  flex: 1;
  margin-left: 0px;
  padding-left: 0px;
}
.input-tooltip-icon.svelte-1gqwaea {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 1px solid var(--text-invers-100);
  color: var(--text-invers-100);
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 1;
  padding: 0;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: help;
  z-index: 2;
}
.form.light .input-tooltip-icon.svelte-1gqwaea {
  border-color: var(--text-100);
  color: var(--text-100);
  background: color-mix(in srgb, var(--bg-150) 60%, transparent);
}
.input-tooltip-icon--inline.svelte-1gqwaea {
  position: static;
  top: auto;
  right: auto;
  z-index: auto;
}
.checkit-span.svelte-1gqwaea:disabled {
  cursor: not-allowed;
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Circle.esbuild-svelte-fake-css */
.circle.svelte-7w2xrx {
  height: var(--size);
  width: var(--size);
  border-color: var(--color) transparent var(--color) var(--color);
  border-width: calc(var(--size) / 15);
  border-style: solid;
  border-image: initial;
  border-radius: 50%;
  animation: var(--duration) linear 0s infinite normal none running svelte-7w2xrx-rotate;
}
.pause-animation.svelte-7w2xrx {
  animation-play-state: paused;
}
@keyframes svelte-7w2xrx-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Circle2.esbuild-svelte-fake-css */
.circle.svelte-18p56hv {
  width: var(--size);
  height: var(--size);
  box-sizing: border-box;
  position: relative;
  border: 3px solid transparent;
  border-top-color: var(--colorOuter);
  border-radius: 50%;
  animation: svelte-18p56hv-circleSpin var(--durationOuter) linear infinite;
}
.circle.svelte-18p56hv::before,
.circle.svelte-18p56hv::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: 3px solid transparent;
  border-radius: 50%;
}
.circle.svelte-18p56hv::after {
  border-top-color: var(--colorInner);
  top: 9px;
  left: 9px;
  right: 9px;
  bottom: 9px;
  animation: svelte-18p56hv-circleSpin var(--durationInner) linear infinite;
}
.circle.svelte-18p56hv::before {
  border-top-color: var(--colorCenter);
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  animation: svelte-18p56hv-circleSpin var(--durationCenter) linear infinite;
}
.pause-animation.svelte-18p56hv,
.pause-animation.svelte-18p56hv::after,
.pause-animation.svelte-18p56hv::before {
  animation-play-state: paused;
}
@keyframes svelte-18p56hv-circleSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Circle3.esbuild-svelte-fake-css */
.wrapper.svelte-1ld5hqc {
  width: var(--size);
  height: var(--size);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  box-sizing: border-box;
}
.inner.svelte-1ld5hqc {
  transform: scale(calc(var(--floatSize) / 52));
}
.ball-container.svelte-1ld5hqc {
  animation: svelte-1ld5hqc-ballTwo var(--duration) infinite;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  position: relative;
}
.single-ball.svelte-1ld5hqc {
  width: 44px;
  height: 44px;
  position: absolute;
}
.ball.svelte-1ld5hqc {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  animation: svelte-1ld5hqc-ballOne var(--duration) infinite ease;
}
.pause-animation.svelte-1ld5hqc {
  animation-play-state: paused;
}
.ball-top-left.svelte-1ld5hqc {
  background-color: var(--ballTopLeftColor);
  top: 0;
  left: 0;
}
.ball-top-right.svelte-1ld5hqc {
  background-color: var(--ballTopRightColor);
  top: 0;
  left: 24px;
}
.ball-bottom-left.svelte-1ld5hqc {
  background-color: var(--ballBottomLeftColor);
  top: 24px;
  left: 0;
}
.ball-bottom-right.svelte-1ld5hqc {
  background-color: var(--ballBottomRightColor);
  top: 24px;
  left: 24px;
}
@keyframes svelte-1ld5hqc-ballOne {
  0% {
    position: absolute;
  }
  50% {
    top: 12px;
    left: 12px;
    position: absolute;
    opacity: 0.5;
  }
  100% {
    position: absolute;
  }
}
@keyframes svelte-1ld5hqc-ballTwo {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.3);
  }
  100% {
    transform: rotate(720deg) scale(1);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/DoubleBounce.esbuild-svelte-fake-css */
.wrapper.svelte-114lbwa {
  position: relative;
  width: var(--size);
  height: var(--size);
}
.circle.svelte-114lbwa {
  position: absolute;
  width: var(--size);
  height: var(--size);
  background-color: var(--color);
  border-radius: 100%;
  opacity: 0.6;
  top: 0;
  left: 0;
  animation-fill-mode: both;
  animation-name: svelte-114lbwa-bounce !important;
}
.pause-animation.svelte-114lbwa {
  animation-play-state: paused;
}
@keyframes svelte-114lbwa-bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/GoogleSpin.esbuild-svelte-fake-css */
.svelte-1xynvbs {
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  display: inline-block;
  background: #f86;
  border-radius: 50%;
  transform: rotateZ(90deg);
  transform-origin: 50% 50%;
  animation: svelte-1xynvbs-plus-loader-background var(--duration) infinite ease-in-out;
}
.svelte-1xynvbs::after {
  background: #f86;
  border-radius: 50% 0 0 50%;
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  width: 50%;
  height: 100%;
  transform-origin: 100% 50%;
  animation: svelte-1xynvbs-plus-loader-top var(--duration) infinite linear;
}
.svelte-1xynvbs::before {
  background: #fc6;
  border-radius: 50% 0 0 50%;
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  width: 50%;
  height: 100%;
  transform-origin: 100% 50%;
  animation: svelte-1xynvbs-plus-loader-bottom var(--duration) infinite linear;
}
.pause-animation.svelte-1xynvbs,
.pause-animation.svelte-1xynvbs::before,
.pause-animation.svelte-1xynvbs::after {
  animation-play-state: paused;
}
@keyframes svelte-1xynvbs-plus-loader-top {
  2.5% {
    background: #f86;
    transform: rotateY(0deg);
    animation-timing-function: ease-in;
  }
  13.75% {
    background: #ff430d;
    transform: rotateY(90deg);
    animation-timing-function: step-start;
  }
  13.76% {
    background: #ffae0d;
    transform: rotateY(90deg);
    animation-timing-function: ease-out;
  }
  25% {
    background: #fc6;
    transform: rotateY(180deg);
  }
  27.5% {
    background: #fc6;
    transform: rotateY(180deg);
    animation-timing-function: ease-in;
  }
  41.25% {
    background: #ffae0d;
    transform: rotateY(90deg);
    animation-timing-function: step-start;
  }
  41.26% {
    background: #2cc642;
    transform: rotateY(90deg);
    animation-timing-function: ease-out;
  }
  50% {
    background: #6d7;
    transform: rotateY(0deg);
  }
  52.5% {
    background: #6d7;
    transform: rotateY(0deg);
    animation-timing-function: ease-in;
  }
  63.75% {
    background: #2cc642;
    transform: rotateY(90deg);
    animation-timing-function: step-start;
  }
  63.76% {
    background: #1386d2;
    transform: rotateY(90deg);
    animation-timing-function: ease-out;
  }
  75% {
    background: #4ae;
    transform: rotateY(180deg);
  }
  77.5% {
    background: #4ae;
    transform: rotateY(180deg);
    animation-timing-function: ease-in;
  }
  91.25% {
    background: #1386d2;
    transform: rotateY(90deg);
    animation-timing-function: step-start;
  }
  91.26% {
    background: #ff430d;
    transform: rotateY(90deg);
    animation-timing-function: ease-in;
  }
  100% {
    background: #f86;
    transform: rotateY(0deg);
    animation-timing-function: step-start;
  }
}
@keyframes svelte-1xynvbs-plus-loader-bottom {
  0% {
    background: #fc6;
    animation-timing-function: step-start;
  }
  50% {
    background: #fc6;
    animation-timing-function: step-start;
  }
  75% {
    background: #4ae;
    animation-timing-function: step-start;
  }
  100% {
    background: #4ae;
    animation-timing-function: step-start;
  }
}
@keyframes svelte-1xynvbs-plus-loader-background {
  0% {
    background: #f86;
    transform: rotateZ(180deg);
  }
  25% {
    background: #f86;
    transform: rotateZ(180deg);
    animation-timing-function: step-start;
  }
  27.5% {
    background: #6d7;
    transform: rotateZ(90deg);
  }
  50% {
    background: #6d7;
    transform: rotateZ(90deg);
    animation-timing-function: step-start;
  }
  52.5% {
    background: #6d7;
    transform: rotateZ(0deg);
  }
  75% {
    background: #6d7;
    transform: rotateZ(0deg);
    animation-timing-function: step-start;
  }
  77.5% {
    background: #f86;
    transform: rotateZ(270deg);
  }
  100% {
    background: #f86;
    transform: rotateZ(270deg);
    animation-timing-function: step-start;
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/ScaleOut.esbuild-svelte-fake-css */
.wrapper.svelte-1rlyajf {
  width: var(--size);
  height: var(--size);
}
.circle.svelte-1rlyajf {
  width: var(--size);
  height: var(--size);
  background-color: var(--color);
  animation-duration: var(--duration);
  border-radius: 100%;
  display: inline-block;
  animation: svelte-1rlyajf-scaleOut var(--duration) ease-in-out infinite;
}
.pause-animation.svelte-1rlyajf {
  animation-play-state: paused;
}
@keyframes svelte-1rlyajf-scaleOut {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/SpinLine.esbuild-svelte-fake-css */
.wrapper.svelte-11s1867 {
  width: var(--size);
  height: var(--stroke);
  transform: scale(calc(var(--floatSize) / 75));
  display: flex;
  justify-content: center;
  align-items: center;
}
.line.svelte-11s1867 {
  width: var(--size);
  height: var(--stroke);
  background: var(--color);
  border-radius: var(--stroke);
  transform-origin: center center;
  animation: svelte-11s1867-spineLine var(--duration) ease infinite;
}
.pause-animation.svelte-11s1867 {
  animation-play-state: paused;
}
@keyframes svelte-11s1867-spineLine {
  0% {
    transform: rotate(-20deg);
    height: 5px;
    width: 75px;
  }
  5% {
    height: 5px;
    width: 75px;
  }
  30% {
    transform: rotate(380deg);
    height: 5px;
    width: 75px;
  }
  40% {
    transform: rotate(360deg);
    height: 5px;
    width: 75px;
  }
  55% {
    transform: rotate(0deg);
    height: 5px;
    width: 5px;
  }
  65% {
    transform: rotate(0deg);
    height: 5px;
    width: 85px;
  }
  68% {
    transform: rotate(0deg);
    height: 5px;
  }
  75% {
    transform: rotate(0deg);
    height: 5px;
    width: 1px;
  }
  78% {
    height: 5px;
    width: 5px;
  }
  90% {
    height: 5px;
    width: 75px;
    transform: rotate(0deg);
  }
  99%, 100% {
    height: 5px;
    width: 75px;
    transform: rotate(-20deg);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Stretch.esbuild-svelte-fake-css */
.wrapper.svelte-1et11w8 {
  height: var(--size);
  width: var(--size);
  display: inline-block;
  text-align: center;
  font-size: 10px;
}
.rect.svelte-1et11w8 {
  height: 100%;
  width: 10%;
  display: inline-block;
  margin-right: 4px;
  transform: scaleY(0.4);
  background-color: var(--color);
  animation: svelte-1et11w8-stretch var(--duration) ease-in-out infinite;
}
.pause-animation.svelte-1et11w8 {
  animation-play-state: paused;
}
@keyframes svelte-1et11w8-stretch {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/BarLoader.esbuild-svelte-fake-css */
.wrapper.svelte-1u7a0eb {
  height: calc(var(--size) / 15);
  width: calc(var(--size) * 2);
  background-color: var(--rgba);
  position: relative;
  overflow: hidden;
  background-clip: padding-box;
}
.lines.svelte-1u7a0eb {
  height: calc(var(--size) / 15);
  background-color: var(--color);
}
.small-lines.svelte-1u7a0eb {
  position: absolute;
  overflow: hidden;
  background-clip: padding-box;
  display: block;
  border-radius: 2px;
  will-change: left, right;
  animation-fill-mode: forwards;
}
.small-lines.\31.svelte-1u7a0eb {
  animation: var(--duration) cubic-bezier(0.65, 0.815, 0.735, 0.395) 0s infinite normal none running svelte-1u7a0eb-long;
}
.small-lines.\32.svelte-1u7a0eb {
  animation: var(--duration) cubic-bezier(0.165, 0.84, 0.44, 1) calc((var(--duration) + 0.1) / 2) infinite normal none running svelte-1u7a0eb-short;
}
.pause-animation.svelte-1u7a0eb {
  animation-play-state: paused;
}
@keyframes svelte-1u7a0eb-long {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes svelte-1u7a0eb-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Jumper.esbuild-svelte-fake-css */
.wrapper.svelte-1ctay1k {
  width: var(--size);
  height: var(--size);
}
.circle.svelte-1ctay1k {
  border-radius: 100%;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: var(--size);
  height: var(--size);
  background-color: var(--color);
  animation: svelte-1ctay1k-bounce var(--duration) linear infinite;
}
.pause-animation.svelte-1ctay1k {
  animation-play-state: paused;
}
@keyframes svelte-1ctay1k-bounce {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/RingLoader.esbuild-svelte-fake-css */
.wrapper.svelte-c5p9k6 {
  position: relative;
  width: var(--size);
  height: var(--size);
}
.border.svelte-c5p9k6 {
  border-color: var(--color);
  position: absolute;
  top: 0px;
  left: 0px;
  width: var(--size);
  height: var(--size);
  opacity: 0.4;
  perspective: 800px;
  border-width: 6px;
  border-style: solid;
  border-image: initial;
  border-radius: 100%;
}
.border.\31.svelte-c5p9k6 {
  animation: var(--duration) linear 0s infinite normal none running svelte-c5p9k6-ringOne;
}
.border.\32.svelte-c5p9k6 {
  animation: var(--duration) linear 0s infinite normal none running svelte-c5p9k6-ringTwo;
}
.pause-animation.svelte-c5p9k6 {
  animation-play-state: paused;
}
@keyframes svelte-c5p9k6-ringOne {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(180deg) rotateZ(360deg);
  }
}
@keyframes svelte-c5p9k6-ringTwo {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(180deg) rotateY(360deg) rotateZ(360deg);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/SyncLoader.esbuild-svelte-fake-css */
.wrapper.svelte-mqydc1 {
  height: var(--size);
  width: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dot.svelte-mqydc1 {
  height: var(--dotSize);
  width: var(--dotSize);
  background-color: var(--color);
  margin: 2px;
  display: inline-block;
  border-radius: 100%;
  animation: svelte-mqydc1-sync var(--duration) ease-in-out infinite alternate both running;
}
.pause-animation.svelte-mqydc1 {
  animation-play-state: paused;
}
@-webkit-keyframes svelte-mqydc1-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes svelte-mqydc1-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Rainbow.esbuild-svelte-fake-css */
.wrapper.svelte-10ysxtf {
  width: var(--size);
  height: calc(var(--size) / 2);
  overflow: hidden;
}
.rainbow.svelte-10ysxtf {
  width: var(--size);
  height: var(--size);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-top-color: var(--color);
  border-right-color: var(--color);
  box-sizing: border-box;
  transform: rotate(-200deg);
  border-radius: 50%;
  border-style: solid;
  animation: var(--duration) ease-in-out 0s infinite normal none running svelte-10ysxtf-rotate;
}
.pause-animation.svelte-10ysxtf {
  animation-play-state: paused;
}
@keyframes svelte-10ysxtf-rotate {
  0% {
    border-width: 10px;
  }
  25% {
    border-width: 3px;
  }
  50% {
    transform: rotate(115deg);
    border-width: 10px;
  }
  75% {
    border-width: 3px;
  }
  100% {
    border-width: 10px;
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Firework.esbuild-svelte-fake-css */
.wrapper.svelte-1uk4jqe {
  width: calc(var(--size) * 1.3);
  height: calc(var(--size) * 1.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.firework.svelte-1uk4jqe {
  border: calc(var(--size) / 10) dotted var(--color);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  animation: svelte-1uk4jqe-fire var(--duration) cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}
.pause-animation.svelte-1uk4jqe {
  animation-play-state: paused;
}
@keyframes svelte-1uk4jqe-fire {
  0% {
    opacity: 1;
    transform: scale(0.1);
  }
  25% {
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Pulse.esbuild-svelte-fake-css */
.wrapper.svelte-1yesw5o {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: calc(var(--size) / 2.5);
}
.cube.svelte-1yesw5o {
  position: absolute;
  top: 0px;
  width: calc(var(--size) / 5);
  height: calc(var(--size) / 2.5);
  background-color: var(--color);
  animation: svelte-1yesw5o-motion var(--duration) cubic-bezier(0.895, 0.03, 0.685, 0.22) infinite;
}
.pause-animation.svelte-1yesw5o {
  animation-play-state: paused;
}
@keyframes svelte-1yesw5o-motion {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Jellyfish.esbuild-svelte-fake-css */
.wrapper.svelte-pnnsu3 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
}
.ring.svelte-pnnsu3 {
  position: absolute;
  border: 2px solid var(--color);
  border-radius: 50%;
  background-color: transparent;
  animation: svelte-pnnsu3-motion var(--duration) ease infinite;
}
.pause-animation.svelte-pnnsu3 {
  animation-play-state: paused;
}
@keyframes svelte-pnnsu3-motion {
  0% {
    transform: translateY(var(--motionOne));
  }
  50% {
    transform: translateY(var(--motionTwo));
  }
  100% {
    transform: translateY(var(--motionThree));
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Chasing.esbuild-svelte-fake-css */
.wrapper.svelte-1luu01o {
  height: var(--size);
  width: var(--size);
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner.svelte-1luu01o {
  height: var(--size);
  width: var(--size);
  animation: svelte-1luu01o-rotate var(--duration) infinite linear;
}
.dot.svelte-1luu01o {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: var(--color);
  border-radius: 100%;
  animation: svelte-1luu01o-bounce var(--duration) infinite ease-in-out;
}
.pause-animation.svelte-1luu01o {
  animation-play-state: paused;
}
@keyframes svelte-1luu01o-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes svelte-1luu01o-bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Square.esbuild-svelte-fake-css */
.square.svelte-11g0eio {
  height: var(--size);
  width: var(--size);
  background-color: var(--color);
  animation: svelte-11g0eio-squareDelay var(--duration) 0s infinite cubic-bezier(0.09, 0.57, 0.49, 0.9);
  animation-fill-mode: both;
  perspective: 100px;
  display: inline-block;
}
.pause-animation.svelte-11g0eio {
  animation-play-state: paused;
}
@keyframes svelte-11g0eio-squareDelay {
  25% {
    -webkit-transform: rotateX(180deg) rotateY(0);
    transform: rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: rotateX(180deg) rotateY(180deg);
    transform: rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: rotateX(0) rotateY(180deg);
    transform: rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateX(0) rotateY(0);
    transform: rotateX(0) rotateY(0);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Shadow.esbuild-svelte-fake-css */
.wrapper.svelte-og5eod {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
}
.shadow.svelte-og5eod {
  color: var(--color);
  font-size: var(--size);
  overflow: hidden;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  margin: 28px auto;
  position: relative;
  transform: translateZ(0);
  animation: svelte-og5eod-load var(--duration) infinite ease, svelte-og5eod-round var(--duration) infinite ease;
}
.pause-animation.svelte-og5eod {
  animation-play-state: paused;
}
@keyframes svelte-og5eod-load {
  0% {
    box-shadow:
      0 -0.83em 0 -0.4em,
      0 -0.83em 0 -0.42em,
      0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em,
      0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow:
      0 -0.83em 0 -0.4em,
      0 -0.83em 0 -0.42em,
      0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em,
      0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow:
      0 -0.83em 0 -0.4em,
      -0.087em -0.825em 0 -0.42em,
      -0.173em -0.812em 0 -0.44em,
      -0.256em -0.789em 0 -0.46em,
      -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow:
      0 -0.83em 0 -0.4em,
      -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em,
      -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow:
      0 -0.83em 0 -0.4em,
      -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em,
      -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow:
      0 -0.83em 0 -0.4em,
      0 -0.83em 0 -0.42em,
      0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em,
      0 -0.83em 0 -0.477em;
  }
}
@keyframes svelte-og5eod-round {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Moon.esbuild-svelte-fake-css */
.wrapper.svelte-15q7j0m {
  height: var(--size);
  width: var(--size);
  border-radius: 100%;
  animation: svelte-15q7j0m-moonStretchDelay var(--duration) 0s infinite linear;
  animation-fill-mode: forwards;
  position: relative;
}
.circle-one.svelte-15q7j0m {
  top: var(--moonSize);
  background-color: var(--color);
  width: calc(var(--size) / 7);
  height: calc(var(--size) / 7);
  border-radius: 100%;
  animation: svelte-15q7j0m-moonStretchDelay var(--duration) 0s infinite linear;
  animation-fill-mode: forwards;
  opacity: 0.8;
  position: absolute;
}
.circle-two.svelte-15q7j0m {
  opacity: 0.1;
  border: calc(var(--size) / 7) solid var(--color);
  height: var(--size);
  width: var(--size);
  border-radius: 100%;
  box-sizing: border-box;
}
.pause-animation.svelte-15q7j0m {
  animation-play-state: paused;
}
@keyframes svelte-15q7j0m-moonStretchDelay {
  100% {
    transform: rotate(360deg);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Plane.esbuild-svelte-fake-css */
.wrapper.svelte-1gr3osz {
  height: var(--size);
  width: var(--size);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper.svelte-1gr3osz :where(.svelte-1gr3osz) {
  line-height: 0;
  box-sizing: border-box;
}
.spinner-inner.svelte-1gr3osz {
  height: var(--size);
  width: var(--size);
  transform: scale(calc(var(--size) / 70));
}
.mask.svelte-1gr3osz {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
  perspective: 1000;
  backface-visibility: hidden;
}
.plane.svelte-1gr3osz {
  background: var(--color);
  width: 400%;
  height: 100%;
  position: absolute;
  z-index: 100;
  perspective: 1000;
  backface-visibility: hidden;
}
#top.svelte-1gr3osz .plane:where(.svelte-1gr3osz) {
  z-index: 2000;
  animation: svelte-1gr3osz-trans1 var(--duration) ease-in infinite 0s backwards;
}
#middle.svelte-1gr3osz .plane:where(.svelte-1gr3osz) {
  transform: translate3d(0px, 0, 0);
  background: var(--rgba);
  animation: svelte-1gr3osz-trans2 var(--duration) linear infinite calc(var(--duration) / 4) backwards;
}
#bottom.svelte-1gr3osz .plane:where(.svelte-1gr3osz) {
  z-index: 2000;
  animation: svelte-1gr3osz-trans3 var(--duration) ease-out infinite calc(var(--duration) / 2) backwards;
}
#top.svelte-1gr3osz {
  width: 53px;
  height: 20px;
  left: 20px;
  top: 5px;
  transform: skew(-15deg, 0);
  z-index: 100;
}
#middle.svelte-1gr3osz {
  width: 33px;
  height: 20px;
  left: 20px;
  top: 21px;
  transform: skew(-15deg, 40deg);
}
#bottom.svelte-1gr3osz {
  width: 53px;
  height: 20px;
  top: 35px;
  transform: skew(-15deg, 0);
}
.pause-animation.svelte-1gr3osz .plane:where(.svelte-1gr3osz) {
  animation-play-state: paused;
}
@keyframes svelte-1gr3osz-trans1 {
  from {
    transform: translate3d(53px, 0, 0);
  }
  to {
    transform: translate3d(-250px, 0, 0);
  }
}
@keyframes svelte-1gr3osz-trans2 {
  from {
    transform: translate3d(-160px, 0, 0);
  }
  to {
    transform: translate3d(53px, 0, 0);
  }
}
@keyframes svelte-1gr3osz-trans3 {
  from {
    transform: translate3d(53px, 0, 0);
  }
  to {
    transform: translate3d(-220px, 0, 0);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Diamonds.esbuild-svelte-fake-css */
span.svelte-1wtjgh6 {
  width: var(--size);
  height: calc(var(--size) / 4);
  position: relative;
  display: block;
}
div.svelte-1wtjgh6 {
  width: calc(var(--size) / 4);
  height: calc(var(--size) / 4);
  position: absolute;
  left: 0%;
  top: 0;
  border-radius: 2px;
  background: var(--color);
  transform: translateX(-50%) rotate(45deg) scale(0);
  animation: svelte-1wtjgh6-diamonds var(--duration) linear infinite;
}
div.svelte-1wtjgh6:nth-child(1) {
  animation-delay: calc(var(--duration) * 2 / 3 * -1);
}
div.svelte-1wtjgh6:nth-child(2) {
  animation-delay: calc(var(--duration) * 2 / 3 * -2);
}
div.svelte-1wtjgh6:nth-child(3) {
  animation-delay: calc(var(--duration) * 2 / 3 * -3);
}
.pause-animation.svelte-1wtjgh6 div:where(.svelte-1wtjgh6) {
  animation-play-state: paused;
}
@keyframes svelte-1wtjgh6-diamonds {
  50% {
    left: 50%;
    transform: translateX(-50%) rotate(45deg) scale(1);
  }
  100% {
    left: 100%;
    transform: translateX(-50%) rotate(45deg) scale(0);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Clock.esbuild-svelte-fake-css */
div.svelte-1s9xlzj {
  position: relative;
  width: var(--size);
  height: var(--size);
  background-color: transparent;
  box-shadow: inset 0px 0px 0px 2px var(--color);
  border-radius: 50%;
}
div.svelte-1s9xlzj::before,
div.svelte-1s9xlzj::after {
  position: absolute;
  content: "";
  background-color: var(--color);
}
div.svelte-1s9xlzj::after {
  width: calc(var(--size) / 2.4);
  height: 2px;
  top: calc(var(--size) / 2);
  left: calc(var(--size) / 2);
  transform-origin: 1px 1px;
  animation: svelte-1s9xlzj-rotate calc(var(--duration) / 4) linear infinite;
}
div.svelte-1s9xlzj::before {
  width: calc(var(--size) / 3);
  height: 2px;
  top: calc((var(--size) / 2));
  left: calc((var(--size) / 2));
  transform-origin: 1px 1px;
  animation: svelte-1s9xlzj-rotate var(--duration) linear infinite;
}
.pause-animation.svelte-1s9xlzj,
.pause-animation.svelte-1s9xlzj::before,
.pause-animation.svelte-1s9xlzj::after {
  animation-play-state: paused;
}
@keyframes svelte-1s9xlzj-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Wave.esbuild-svelte-fake-css */
.wrapper.svelte-1rumbqe {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(var(--size) * 2.5);
  height: var(--size);
  overflow: hidden;
}
.bar.svelte-1rumbqe {
  position: absolute;
  top: calc(var(--size) / 10);
  width: calc(var(--size) / 5);
  height: calc(var(--size) / 10);
  margin-top: calc(var(--size) - var(--size) / 10);
  transform: skewY(0deg);
  background-color: var(--color);
  animation: svelte-1rumbqe-motion var(--duration) ease-in-out infinite;
}
.pause-animation.svelte-1rumbqe {
  animation-play-state: paused;
}
@keyframes svelte-1rumbqe-motion {
  25% {
    transform: skewY(25deg);
  }
  50% {
    height: 100%;
    margin-top: 0;
  }
  75% {
    transform: skewY(-25deg);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/Puff.esbuild-svelte-fake-css */
.wrapper.svelte-14u7y84 {
  display: inherit;
  position: relative;
  width: var(--size);
  height: var(--size);
}
.circle.svelte-14u7y84 {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border: thick solid var(--rgba);
  border-radius: 50%;
  opacity: 1;
  top: 0px;
  left: 0px;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1), cubic-bezier(0.3, 0.61, 0.355, 1);
  animation-direction: normal, normal;
  animation-fill-mode: none, none;
  animation-play-state: running, running;
  animation-name: svelte-14u7y84-puff-1, svelte-14u7y84-puff-2;
  box-sizing: border-box;
}
.pause-animation.svelte-14u7y84 {
  animation-play-state: paused;
}
@keyframes svelte-14u7y84-puff-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes svelte-14u7y84-puff-2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/ArrowDown.esbuild-svelte-fake-css */
.wrapper.svelte-jnrlfo {
  width: var(--size);
  height: calc(var(--size) * 1.5);
  margin-left: var(--size);
  background: var(--color);
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: svelte-jnrlfo-bump var(--duration) ease-in infinite alternate;
}
.wrapper.svelte-jnrlfo::after {
  content: "";
  box-sizing: border-box;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  position: absolute;
  border: var(--size) solid transparent;
  border-top-color: var(--color);
}
.pause-animation.svelte-jnrlfo {
  animation-play-state: paused;
}
@keyframes svelte-jnrlfo-bump {
  0% {
    transform: translate(-50%, 5px);
  }
  100% {
    transform: translate(-50%, -5px);
  }
}

/* fakecss:/data/node_modules/svelte-loading-spinners/ArrowUp.esbuild-svelte-fake-css */
.wrapper.svelte-10o3xbl {
  width: var(--size);
  height: calc(var(--size) * 1.5);
  margin-left: var(--size);
  margin-top: var(--size);
  background: var(--color);
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: svelte-10o3xbl-bump var(--duration) ease-in infinite alternate;
}
.wrapper.svelte-10o3xbl::after {
  content: "";
  box-sizing: border-box;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 0);
  position: absolute;
  border: var(--size) solid transparent;
  border-bottom-color: var(--color);
}
.pause-animation.svelte-10o3xbl {
  animation-play-state: paused;
}
@keyframes svelte-10o3xbl-bump {
  0% {
    transform: translate(-50%, 5px);
  }
  100% {
    transform: translate(-50%, -5px);
  }
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/LoadingWrapper.esbuild-svelte-fake-css */
.loadingWrapper.svelte-v973ne {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;
  padding: 0;
  margin: 0;
}
.spinner.svelte-v973ne {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.spinner.svelte-v973ne span:where(.svelte-v973ne) {
  color: var(--text-invers-100);
  font-size: 1rem;
}
.status-block.svelte-v973ne {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg-300) 65%, #fff 35%);
  border: 1px solid color-mix(in srgb, var(--text-invers-100) 12%, transparent);
  color: var(--text-invers-100);
  text-align: center;
}
.status-block.svelte-v973ne p:where(.svelte-v973ne) {
  margin: 0;
}
.status-block.error.svelte-v973ne {
  border-color: color-mix(in srgb, var(--red-300) 55%, transparent);
  background: color-mix(in srgb, var(--red-300) 18%, #fff 82%);
}
.content.svelte-v973ne {
  width: 100%;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/FormWrapper.esbuild-svelte-fake-css */
.formActions.svelte-1rpbggu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.formActions.svelte-1rpbggu .formActions__primary:where(.svelte-1rpbggu) {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.formActions.svelte-1rpbggu .formActions__primary.showReset:where(.svelte-1rpbggu) {
  justify-content: space-between;
  width: 100%;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UnauthenticatedView/pages/Login/page.esbuild-svelte-fake-css */
.sso-reminder.svelte-1m4y0ym {
  border: 1px solid var(--bg-100);
  color: var(--text-invers-100);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}
.error.svelte-1m4y0ym {
  color: color-mix(in srgb, var(--primary-200) 80%, var(--text-100) 20%);
  margin: 0;
}
.info.svelte-1m4y0ym {
  color: color-mix(in srgb, var(--text-100) 85%, transparent);
  margin: 0;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/display/StatusPill.esbuild-svelte-fake-css */
.status-pill.svelte-1p8ztx4 {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid color-mix(in srgb, var(--text-100) 12%, transparent);
  background: color-mix(in srgb, var(--bg-200) 85%, var(--bg-100) 15%);
  width: fit-content;
  color: var(--text-100);
}
.status-pill.positive.svelte-1p8ztx4 {
  background: rgba(24, 169, 153, 0.16);
  color: var(--text-100);
  border-color: rgba(24, 169, 153, 0.35);
}
.status-pill.danger.svelte-1p8ztx4 {
  background: rgba(173, 81, 76, 0.16);
  border-color: rgba(173, 81, 76, 0.35);
  color: var(--text-invers-100);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/navigation/ProgressStepsTrack.esbuild-svelte-fake-css */
.track.svelte-ct7plw {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: center;
  gap: 2.4rem;
  position: relative;
}
.snake.svelte-ct7plw {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.snake-seg.svelte-ct7plw {
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: color-mix(in srgb, var(--text-invers-100) 22%, transparent);
}
.snake-seg--done.svelte-ct7plw {
  stroke: var(--confirm-100);
}
.snake-seg--active.svelte-ct7plw {
  stroke: color-mix(in srgb, var(--text-invers-100) 50%, transparent);
}
.snake-seg--pending.svelte-ct7plw {
  stroke: color-mix(in srgb, var(--text-invers-100) 50%, transparent);
}
.track-step.svelte-ct7plw {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  --marker-justify: center;
  --label-align: center;
}
.track-step.svelte-ct7plw .marker:where(.svelte-ct7plw) {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: var(--marker-justify);
  width: 100%;
  cursor: pointer;
  color: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
}
.track-step.svelte-ct7plw .marker:where(.svelte-ct7plw):focus-visible .diamond:where(.svelte-ct7plw) {
  box-shadow: var(--focus-ring);
}
.track-step.svelte-ct7plw .diamond:where(.svelte-ct7plw) {
  --diamond-size: 2.6rem;
  --diamond-border: 1.5px;
  --diamond-side: calc(var(--diamond-size) + (var(--diamond-border) * 2));
  --diamond-rot-fix: calc(var(--diamond-side) * 0.20710678);
  --diamond-edge-shift: 0px;
  width: var(--diamond-size);
  height: var(--diamond-size);
  border-radius: 0.25rem;
  display: grid;
  place-items: center;
  border: var(--diamond-border) solid color-mix(in srgb, var(--text-invers-100) 35%, transparent);
  background: color-mix(in srgb, var(--kontext-panel-muted, #221d1c) 85%, transparent);
  background-clip: padding-box;
  transform: translateX(var(--diamond-edge-shift)) rotate(45deg);
  position: relative;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}
.track-step.svelte-ct7plw .diamond:where(.svelte-ct7plw) svg {
  width: 1.35rem;
  height: 1.35rem;
  transform: rotate(-45deg);
}
.track-step.svelte-ct7plw .index-label:where(.svelte-ct7plw) {
  transform: rotate(-45deg);
  font-weight: 700;
  color: inherit;
  font-size: 0.95rem;
  color: var(--text-100);
}
.track-step.svelte-ct7plw .label:where(.svelte-ct7plw) {
  margin: 0;
  font-weight: 700;
  font-size: 0.7rem;
  text-align: var(--label-align);
  max-width: 100%;
  color: color-mix(in srgb, var(--text-invers-100) 82%, transparent);
  background-color: white;
}
.track-step--align-left.svelte-ct7plw {
  align-items: flex-start;
  --marker-justify: flex-start;
  --label-align: left;
}
.track-step--align-left.svelte-ct7plw .diamond:where(.svelte-ct7plw) {
  --diamond-edge-shift: var(--diamond-rot-fix);
}
.track-step--align-right.svelte-ct7plw {
  align-items: flex-end;
  --marker-justify: flex-end;
  --label-align: right;
}
.track-step--align-right.svelte-ct7plw .diamond:where(.svelte-ct7plw) {
  --diamond-edge-shift: calc(var(--diamond-rot-fix) * -1);
}
.track-step--active.svelte-ct7plw .diamond:where(.svelte-ct7plw) {
  border-color: color-mix(in srgb, var(--primary-200) 75%, transparent);
  background: color-mix(in srgb, var(--primary-200) 18%, transparent);
  background-clip: padding-box;
  color: var(--text-invers-100);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--primary-200) 26%, transparent);
}
.track-step--active.svelte-ct7plw .diamond:where(.svelte-ct7plw) .index-label:where(.svelte-ct7plw) {
  color: var(--text-invers-100);
}
.track-step--active.svelte-ct7plw .label:where(.svelte-ct7plw) {
  color: var(--text-invers-100);
}
.track-step--done.svelte-ct7plw .diamond:where(.svelte-ct7plw) {
  border-color: color-mix(in srgb, var(--primary-200) 65%, transparent);
  background: color-mix(in srgb, var(--primary-200) 14%, transparent);
  background-clip: padding-box;
}
.track-step--done.svelte-ct7plw .diamond:where(.svelte-ct7plw) .index-label:where(.svelte-ct7plw) {
  color: var(--text-invers-100);
}
.track-step--done.svelte-ct7plw .label:where(.svelte-ct7plw) {
  color: color-mix(in srgb, var(--text-invers-100) 78%, transparent);
}
.track-step--finish.svelte-ct7plw .diamond:where(.svelte-ct7plw) {
  --diamond-size: 2.9rem;
  border-radius: 0.35rem;
  background: color-mix(in srgb, var(--kontext-panel-muted, #221d1c) 92%, transparent);
  background-clip: padding-box;
  color: var(--text-100);
}
.track.darkMode.svelte-ct7plw .snake-seg:where(.svelte-ct7plw) {
  stroke: color-mix(in srgb, var(--text-100) 26%, transparent);
}
.track.darkMode.svelte-ct7plw .snake-seg--active:where(.svelte-ct7plw) {
  stroke: color-mix(in srgb, var(--primary-200) 70%, var(--text-100) 30%);
}
.track.darkMode.svelte-ct7plw .snake-seg--pending:where(.svelte-ct7plw) {
  stroke: color-mix(in srgb, var(--text-100) 38%, transparent);
}
.track.darkMode.svelte-ct7plw .track-step:where(.svelte-ct7plw) .marker:where(.svelte-ct7plw) {
  color: color-mix(in srgb, var(--text-100) 90%, transparent);
}
.track.darkMode.svelte-ct7plw .track-step:where(.svelte-ct7plw) .diamond:where(.svelte-ct7plw) {
  border-color: color-mix(in srgb, var(--text-100) 28%, transparent);
  background: color-mix(in srgb, var(--kontext-panel-overlay, #2a2322) 92%, transparent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.track.darkMode.svelte-ct7plw .track-step:where(.svelte-ct7plw) .label:where(.svelte-ct7plw) {
  color: var(--text-100);
  background-color: color-mix(in srgb, var(--kontext-panel, #191414) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--text-100) 10%, transparent);
  padding: 0.4rem 0.8rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}
.track.darkMode.svelte-ct7plw .track-step--active:where(.svelte-ct7plw) .diamond:where(.svelte-ct7plw) {
  border-color: color-mix(in srgb, var(--primary-200) 82%, transparent);
  background: color-mix(in srgb, var(--primary-200) 26%, transparent);
  color: var(--text-100);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--primary-200) 42%, transparent);
}
.track.darkMode.svelte-ct7plw .track-step--active:where(.svelte-ct7plw) .diamond:where(.svelte-ct7plw) .index-label:where(.svelte-ct7plw) {
  color: var(--text-100);
}
.track.darkMode.svelte-ct7plw .track-step--active:where(.svelte-ct7plw) .label:where(.svelte-ct7plw) {
  color: var(--text-100);
}
.track.darkMode.svelte-ct7plw .track-step--done:where(.svelte-ct7plw) .diamond:where(.svelte-ct7plw) {
  border-color: color-mix(in srgb, var(--primary-200) 55%, transparent);
  background: color-mix(in srgb, var(--primary-200) 18%, transparent);
}
.track.darkMode.svelte-ct7plw .track-step--done:where(.svelte-ct7plw) .label:where(.svelte-ct7plw) {
  color: color-mix(in srgb, var(--text-100) 86%, transparent);
}
.track.darkMode.svelte-ct7plw .track-step--finish:where(.svelte-ct7plw) .diamond:where(.svelte-ct7plw) {
  background: color-mix(in srgb, var(--kontext-panel-muted, #221d1c) 96%, transparent);
  color: var(--text-100);
}
@media only screen and (max-width: 967px) {
  .track.svelte-ct7plw {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/navigation/ProgressSteps.esbuild-svelte-fake-css */
.progress-steps.svelte-w46lxt {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.progress-steps.darkMode.svelte-w46lxt {
  color: var(--text-100);
}
.progress-steps.darkMode.svelte-w46lxt .description,
.progress-steps.darkMode.svelte-w46lxt .message:where(.svelte-w46lxt) {
  color: color-mix(in srgb, var(--text-100) 82%, transparent);
}
.progress-steps.darkMode.svelte-w46lxt .message.message--error:where(.svelte-w46lxt) {
  color: color-mix(in srgb, var(--primary-200) 78%, var(--text-100) 22%);
}
.body.svelte-w46lxt {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.description {
  margin: 0;
  color: color-mix(in srgb, var(--text-100) 74%, transparent);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.content.svelte-w46lxt {
  width: 100%;
}
.message.svelte-w46lxt {
  margin: 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--text-100) 70%, transparent);
}
.message.message--error.svelte-w46lxt {
  color: color-mix(in srgb, var(--primary-200) 82%, var(--text-100) 18%);
}
.controls.svelte-w46lxt {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UnauthenticatedView/pages/PasswordReset/page.esbuild-svelte-fake-css */
.form-actions.svelte-1ezyrzv {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: 1.2rem;
}
.form-actions.with-secondary.svelte-1ezyrzv {
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UnauthenticatedView/pages/SignupFlow/steps/SignupAccountStep.esbuild-svelte-fake-css */
.terms-row {
  display: grid;
  gap: 0.6rem;
}
.terms-row a {
  color: var(--kw-color-accent-light);
  text-decoration: underline;
}
.legal-load-error {
  margin: 0;
  color: #ffb3b3;
  font-size: 0.92rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/ui/LoadingPlaceholder.esbuild-svelte-fake-css */
section.svelte-1wvl206 {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/Card.esbuild-svelte-fake-css */
.card.svelte-8q0j15 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .card.svelte-8q0j15 {
    padding: 1.2rem;
  }
}
.card.interactive.svelte-8q0j15 {
  cursor: pointer;
}
.card.svelte-8q0j15 .top-bar:where(.svelte-8q0j15) {
  height: 24px;
  display: flex;
}
.card.svelte-8q0j15 .top-bar:where(.svelte-8q0j15) svg:where(.svelte-8q0j15) {
  height: 25px;
  width: 25px;
  margin-right: -1px;
}
.card.svelte-8q0j15 .top-bar:where(.svelte-8q0j15) > div:where(.svelte-8q0j15) {
  flex: 1;
  background: var(--bg-100);
}
.card.svelte-8q0j15 .card-content:where(.svelte-8q0j15) {
  position: relative;
  padding: 1.2rem;
  padding-top: 0px;
  flex: 1;
  background-color: var(--bg-100);
  background-image:
    linear-gradient(
      to top,
      color-mix(in srgb, var(--primary-200) 45%, transparent) 0%,
      color-mix(in srgb, var(--primary-100) 35%, transparent) 30%,
      color-mix(in srgb, var(--primary-100) 25%, transparent) 60%,
      color-mix(in srgb, var(--primary-100) 0%, transparent) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.card.svelte-8q0j15 .card-content:where(.svelte-8q0j15)::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      to top,
      color-mix(in srgb, var(--primary-300) 55%, transparent) 0%,
      color-mix(in srgb, var(--primary-200) 45%, transparent) 30%,
      color-mix(in srgb, var(--primary-100) 35%, transparent) 60%,
      color-mix(in srgb, var(--primary-100) 0%, transparent) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
  pointer-events: none;
  z-index: 0;
}
.card.svelte-8q0j15 .card-footer:where(.svelte-8q0j15) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background-color: var(--bg-100);
  background-image:
    linear-gradient(
      to bottom,
      color-mix(in srgb, var(--primary-200) 45%, transparent) 0%,
      color-mix(in srgb, var(--primary-200) 41%, transparent) 18%,
      color-mix(in srgb, var(--primary-100) 30%, transparent) 46%,
      color-mix(in srgb, var(--primary-100) 18%, transparent) 72%,
      color-mix(in srgb, var(--primary-100) 8%, transparent) 100%);
}
.card.svelte-8q0j15 .card-footer__item:where(.svelte-8q0j15) {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.2rem;
  padding: 0.42rem 0.4rem 0.44rem;
  background: transparent;
}
.card.svelte-8q0j15 .card-footer__item:where(.svelte-8q0j15):not(:first-child) {
  border-left: 1px solid color-mix(in srgb, var(--text-100) 8%, transparent);
}
.card.svelte-8q0j15 .card-footer__label:where(.svelte-8q0j15) {
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 0.76rem;
  line-height: 1.05;
  font-weight: 720;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--text-100) 78%, transparent);
}
.card.svelte-8q0j15 .card-footer__value:where(.svelte-8q0j15) {
  flex: 0 0 auto;
  padding-left: 0.1rem;
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 780;
  letter-spacing: 0.01em;
  color: var(--text-100);
  text-align: right;
}
.card.brightBackground.svelte-8q0j15 .top-bar:where(.svelte-8q0j15) > div:where(.svelte-8q0j15) {
  background: white;
}
.card.brightBackground.svelte-8q0j15 .card-content:where(.svelte-8q0j15) {
  background-color: white;
  background-image:
    linear-gradient(
      to top,
      color-mix(in srgb, var(--primary-200) 45%, transparent) 0%,
      color-mix(in srgb, var(--primary-100) 35%, transparent) 30%,
      color-mix(in srgb, var(--primary-100) 25%, transparent) 60%,
      color-mix(in srgb, var(--primary-100) 0%, transparent) 100%);
}
.card.brightBackground.svelte-8q0j15 .card-footer:where(.svelte-8q0j15) {
  background-color: white;
  background-image:
    linear-gradient(
      to bottom,
      color-mix(in srgb, var(--primary-200) 45%, white 55%) 0%,
      color-mix(in srgb, var(--primary-200) 34%, white 66%) 18%,
      color-mix(in srgb, var(--primary-100) 22%, white 78%) 46%,
      color-mix(in srgb, var(--primary-100) 12%, white 88%) 72%,
      color-mix(in srgb, var(--primary-100) 8%, white 92%) 100%);
}
.card.brightBackground.svelte-8q0j15 .card-footer__item:where(.svelte-8q0j15):not(:first-child) {
  border-left-color: color-mix(in srgb, var(--primary-100) 10%, transparent);
}
.card.brightBackground.svelte-8q0j15 .card-footer__label:where(.svelte-8q0j15) {
  color: color-mix(in srgb, var(--text-100) 72%, transparent);
}
.card.inactive.svelte-8q0j15 .card-content:where(.svelte-8q0j15) {
  background-color: var(--bg-100) !important;
  background-image: none !important;
}
.card.inactive.svelte-8q0j15 .card-footer:where(.svelte-8q0j15) {
  background-color: var(--bg-100) !important;
  background-image: none !important;
  border-top-color: transparent;
}
.card.inactive.svelte-8q0j15 .card-footer__item:where(.svelte-8q0j15) {
  background: color-mix(in srgb, var(--bg-200) 88%, var(--bg-100) 12%) !important;
  border-color: transparent !important;
}
.card.hoverEffect.svelte-8q0j15 .card-content:where(.svelte-8q0j15):hover::before {
  opacity: 1;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/billing/PlanCard.esbuild-svelte-fake-css */
.plan-card.svelte-1oedsvr {
  position: relative;
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-grow: 1;
  color: #ffffff;
  height: 100%;
}
.plan-card.svelte-1oedsvr .plan-header:where(.svelte-1oedsvr) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transform: translateY(-50%);
}
.plan-card.svelte-1oedsvr .plan-header:where(.svelte-1oedsvr) .slug:where(.svelte-1oedsvr) {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 16px;
  font-weight: 400;
  color: var(--grey-300, #d1d6d6);
}
.plan-card.svelte-1oedsvr .plan-header:where(.svelte-1oedsvr) .pill:where(.svelte-1oedsvr) {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 0px;
  background: var(--grey-100, #f2f4f4);
  border: 1px solid var(--grey-300, #d1d6d6);
  color: var(--bg-100);
  font-size: 16px;
  font-weight: 400;
}
.plan-card.svelte-1oedsvr .plan-header:where(.svelte-1oedsvr) .pill:where(.svelte-1oedsvr):disabled {
  cursor: default;
  opacity: 0.9;
}
.plan-card.svelte-1oedsvr .plan-header:where(.svelte-1oedsvr) .pill.selected:where(.svelte-1oedsvr) {
  background: var(--primary-100);
  border-color: var(--primary-100);
  color: #ffffff;
}
.plan-card.svelte-1oedsvr .plan-summary:where(.svelte-1oedsvr) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-card.svelte-1oedsvr .plan-summary:where(.svelte-1oedsvr) .name-price:where(.svelte-1oedsvr) {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.plan-card.svelte-1oedsvr .plan-summary:where(.svelte-1oedsvr) .name-price:where(.svelte-1oedsvr) h3:where(.svelte-1oedsvr) {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}
.plan-card.svelte-1oedsvr .plan-summary:where(.svelte-1oedsvr) .name-price:where(.svelte-1oedsvr) .price:where(.svelte-1oedsvr) {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.plan-card.svelte-1oedsvr .plan-summary:where(.svelte-1oedsvr) .name-price:where(.svelte-1oedsvr) .price:where(.svelte-1oedsvr) .amount:where(.svelte-1oedsvr) {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}
.plan-card.svelte-1oedsvr .plan-summary:where(.svelte-1oedsvr) .name-price:where(.svelte-1oedsvr) .price:where(.svelte-1oedsvr) .cycle:where(.svelte-1oedsvr) {
  font-size: 15px;
  color: var(--grey-300, #d1d6d6);
}
.plan-card.svelte-1oedsvr .plan-summary:where(.svelte-1oedsvr) .description:where(.svelte-1oedsvr) {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey-300, #d1d6d6);
}
.plan-card.svelte-1oedsvr .features:where(.svelte-1oedsvr) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-card.svelte-1oedsvr .features:where(.svelte-1oedsvr) .feature:where(.svelte-1oedsvr) {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 2px solid #4b5251;
  background: rgba(75, 82, 81, 0.3);
}
.plan-card.svelte-1oedsvr .features:where(.svelte-1oedsvr) .feature.selected:where(.svelte-1oedsvr) {
  border-color: var(--primary-100);
  background: color-mix(in srgb, var(--primary-100) 10%, transparent);
}
.plan-card.svelte-1oedsvr .features:where(.svelte-1oedsvr) .feature:where(.svelte-1oedsvr) .icon:where(.svelte-1oedsvr) {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-100);
  flex-shrink: 0;
}
.plan-card.svelte-1oedsvr .features:where(.svelte-1oedsvr) .feature:where(.svelte-1oedsvr) .feature-label:where(.svelte-1oedsvr) {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
.plan-card.svelte-1oedsvr .features:where(.svelte-1oedsvr) .feature:where(.svelte-1oedsvr) .feature-value:where(.svelte-1oedsvr) {
  margin: 2px 0 0;
  font-size: 15px;
  color: var(--grey-300, #d1d6d6);
}
.plan-card.svelte-1oedsvr .usage-note:where(.svelte-1oedsvr) {
  margin: 0;
  font-size: 15px;
  color: var(--grey-300, #d1d6d6);
}
.plan-card.svelte-1oedsvr .accordion-toggle:where(.svelte-1oedsvr) {
  margin: 0;
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.plan-card.svelte-1oedsvr .accordion-toggle:where(.svelte-1oedsvr) .chevron:where(.svelte-1oedsvr) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms ease;
}
.plan-card.svelte-1oedsvr .accordion-toggle:where(.svelte-1oedsvr) .chevron.open:where(.svelte-1oedsvr) {
  transform: rotate(180deg);
}
.plan-card.svelte-1oedsvr .price-details:where(.svelte-1oedsvr) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0 8px;
}
.plan-card.svelte-1oedsvr .price-details:where(.svelte-1oedsvr) .price-line:where(.svelte-1oedsvr) {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 16px;
  color: #ffffff;
}
.plan-card.svelte-1oedsvr .price-details:where(.svelte-1oedsvr) .price-line:where(.svelte-1oedsvr) .label:where(.svelte-1oedsvr) {
  font-weight: 600;
}
.plan-card.svelte-1oedsvr .price-details:where(.svelte-1oedsvr) .price-line:where(.svelte-1oedsvr) .value:where(.svelte-1oedsvr) {
  font-weight: 600;
  color: var(--grey-300, #d1d6d6);
}
.plan-card.svelte-1oedsvr .price-details:where(.svelte-1oedsvr) .price-empty:where(.svelte-1oedsvr) {
  margin: 0;
  font-size: 15px;
  color: var(--grey-300, #d1d6d6);
}
.cta.svelte-1oedsvr {
  margin-top: auto;
  width: 100%;
  border: none;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: #2b2b2b;
  cursor: pointer;
  border-radius: 0px;
}
.cta.svelte-1oedsvr:disabled {
  cursor: default;
  opacity: 0.9;
}
.cta.selected.svelte-1oedsvr {
  background: var(--primary-100);
}
@media (max-width: 768px) {
  .plan-card.svelte-1oedsvr {
    padding: 16px;
    gap: 16px;
  }
  .plan-card.svelte-1oedsvr .plan-header:where(.svelte-1oedsvr) .slug:where(.svelte-1oedsvr) {
    font-size: 14px;
  }
  .plan-card.svelte-1oedsvr .plan-summary:where(.svelte-1oedsvr) .name-price:where(.svelte-1oedsvr) h3:where(.svelte-1oedsvr),
  .plan-card.svelte-1oedsvr .plan-summary:where(.svelte-1oedsvr) .name-price:where(.svelte-1oedsvr) .price:where(.svelte-1oedsvr) .amount:where(.svelte-1oedsvr) {
    font-size: 20px;
  }
  .cta.svelte-1oedsvr {
    font-size: 16px;
  }
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UnauthenticatedView/pages/SignupFlow/steps/SignupPlanStep.esbuild-svelte-fake-css */
.plans-grid.svelte-1krzdi5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}
.state-block.svelte-1krzdi5 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cta-row.svelte-1krzdi5 {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/ActionBox.esbuild-svelte-fake-css */
.box.svelte-1cu0xoc {
  padding: 0.6rem;
  padding-top: 1.6rem;
  width: 100%;
  position: relative;
  border: 1px solid var(--bg-100);
  height: 100%;
}
.box.svelte-1cu0xoc .label:where(.svelte-1cu0xoc) {
  position: absolute;
  top: 0px;
  padding: 4px 0.6rem;
  left: 0px;
  background-color: var(--bg-100);
  color: white;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
}
.box.svelte-1cu0xoc .tag:where(.svelte-1cu0xoc) {
  position: absolute;
  top: 0px;
  right: 0px;
  display: inline-flex;
  align-items: stretch;
}
.box.svelte-1cu0xoc .tag:where(.svelte-1cu0xoc) .tag-info:where(.svelte-1cu0xoc) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  padding: 0 0.3rem;
  border: 1px solid var(--primary-100);
  border-left: 0;
  background: color-mix(in srgb, var(--primary-100) 18%, var(--bg-100));
  color: var(--primary-100);
  cursor: help;
}
.box.svelte-1cu0xoc .button-row:where(.svelte-1cu0xoc) {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 0.6rem;
}
.box.light.svelte-1cu0xoc {
  border-color: white;
}
.box.light.svelte-1cu0xoc .label:where(.svelte-1cu0xoc) {
  background-color: white;
  color: var(--bg-100);
}
.box.mode-red.svelte-1cu0xoc {
  border-color: #b42318;
  box-shadow: 0 0 0 1px color-mix(in srgb, #b42318 40%, transparent);
}
.box.mode-red.svelte-1cu0xoc .label:where(.svelte-1cu0xoc) {
  background-color: #b42318;
  color: #fff;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/display/StatusTag.esbuild-svelte-fake-css */
.status-tag.svelte-1edikg3 {
  --status-bg: color-mix(in srgb, var(--status-color) 14%, transparent);
  --status-ink: color-mix(in srgb, var(--status-color) 86%, #0e1115);
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid color-mix(in srgb, var(--status-color) 60%, transparent);
  background: var(--status-bg);
  color: var(--status-ink);
  position: relative;
  overflow: hidden;
  line-height: 1.1;
  white-space: nowrap;
}
.status-tag--tooltip.svelte-1edikg3 {
  cursor: help;
}
.status-tag__label.svelte-1edikg3 {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  font-weight: 600;
  font-size: 0.93rem;
}
.status-tag__icon.svelte-1edikg3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.35rem;
  background: var(--status-color);
  color: #fff;
  border-left: 1px solid color-mix(in srgb, var(--status-color) 75%, transparent);
}
.status-tag--sm.svelte-1edikg3 .status-tag__label:where(.svelte-1edikg3) {
  padding: 0.25rem 0.55rem;
  font-size: 0.86rem;
}
.status-tag--sm.svelte-1edikg3 .status-tag__icon:where(.svelte-1edikg3) {
  padding: 0.2rem 0.3rem;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/StatusFilter.esbuild-svelte-fake-css */
.status-filter {
  min-width: 220px;
}
.status-filter__item.svelte-p5rdim {
  padding: 0.1rem 0;
}
.status-filter .svelte-select .multi-item {
  padding: 0;
  gap: 4px;
}
.status-filter .svelte-select .multi-item-text {
  padding: 0;
}
.status-filter .svelte-select .multi-item-clear {
  height: unset !important;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/table/TableFilters.esbuild-svelte-fake-css */
.table-filters.svelte-eaqzp9 {
  display: flex;
  gap: 1.2rem;
  align-items: flex-end;
  margin-bottom: 1.2rem;
  height: fit-content !important;
  flex-wrap: wrap;
  row-gap: 0.6rem;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/table/ColumnScrollButtons.esbuild-svelte-fake-css */
.column-scroll-buttons.svelte-6g318 {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}
.column-scroll-button.svelte-6g318 {
  border: none;
  background: transparent;
  color: var(--dt-text-muted);
  padding: 0.25rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.05s ease,
    opacity 0.1s ease;
}
.column-scroll-button.svelte-6g318:hover:not(:disabled) {
  color: var(--dt-accent-soft);
  background-color: rgba(116, 30, 32, 0.12);
  transform: translateY(-1px);
}
.column-scroll-button.svelte-6g318:active:not(:disabled) {
  transform: translateY(0);
}
.column-scroll-button.svelte-6g318:disabled {
  opacity: 0.3;
  cursor: default;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/table/TableView.esbuild-svelte-fake-css */
.table-horizontal-controls.svelte-1y4atth {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--dt-bg-elevated-soft);
  border-left: 1px solid var(--dt-border-subtle);
  border-right: 1px solid var(--dt-border-subtle);
  padding: 0.25rem 0.4rem;
}
.table-horizontal-controls--top.svelte-1y4atth {
  border-top: 1px solid var(--dt-border-subtle);
}
.table-horizontal-controls--bottom.svelte-1y4atth {
  border-bottom: 1px solid var(--dt-border-subtle);
}
.selection-header-cell.svelte-1y4atth,
.selection-cell.svelte-1y4atth {
  width: 52px;
  min-width: 52px;
  max-width: 52px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: center;
}
.selection-cell-content.svelte-1y4atth {
  display: flex;
  align-items: center;
  justify-content: center;
}
.selection-input-host.svelte-1y4atth {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: auto;
  height: auto;
}
.selection-input-host.svelte-1y4atth label.checkbox {
  width: auto;
  max-width: none;
  height: 1.2rem;
  max-height: 1.2rem;
  justify-content: center;
  gap: 0;
}
.selection-input-host.svelte-1y4atth .checkit-span {
  border-color: var(--dt-border-subtle);
  background-color: var(--dt-bg-main);
}
.selection-input-host.svelte-1y4atth [type=checkbox]:checked + .checkit-span:before {
  color: var(--dt-text-main);
}
.selection-input-host.svelte-1y4atth .selection-checkbox-control {
  cursor: pointer;
}
.selection-input-host.svelte-1y4atth label.checkbox.disabled,
.selection-input-host.svelte-1y4atth label.checkbox.disabled .checkit-span {
  cursor: not-allowed;
  opacity: 0.6;
}
.table-horizontal-step-button.svelte-1y4atth {
  flex: 0 0 auto;
  border: none;
  background: transparent;
  color: var(--dt-text-muted);
  padding: 0.25rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background-color 0.1s ease,
    color 0.1s ease,
    transform 0.05s ease,
    opacity 0.1s ease;
}
.table-horizontal-step-button.svelte-1y4atth:hover:not(:disabled) {
  color: var(--dt-accent-soft);
  background-color: rgba(116, 30, 32, 0.12);
  transform: translateY(-1px);
}
.table-horizontal-step-button.svelte-1y4atth:active:not(:disabled) {
  transform: translateY(0);
}
.table-horizontal-step-button.svelte-1y4atth:disabled {
  opacity: 0.3;
  cursor: default;
}
.table-horizontal-scrollbar.svelte-1y4atth {
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  height: 19px;
  background-color: var(--dt-bg-elevated-soft);
}
.table-horizontal-scrollbar__content.svelte-1y4atth {
  height: 2px;
}
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-track.simplebar-vertical {
  display: none;
}
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-wrapper,
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-mask,
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-offset,
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-content-wrapper,
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-content {
  height: 100%;
}
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-track.simplebar-horizontal {
  height: 16px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: color-mix(in srgb, var(--dt-text-main) 20%, transparent);
  box-shadow: inset 0 2px 0 var(--dt-bg-elevated-soft), inset 0 -2px 0 var(--dt-bg-elevated-soft);
  pointer-events: auto;
  cursor: pointer;
}
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  min-width: 40px;
  pointer-events: auto;
  cursor: grab;
}
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-scrollbar::before {
  background-color: var(--dt-bg-main);
  opacity: 1;
  margin-top: -1px;
  border-radius: 0;
  height: 18px;
  margin-left: -2px;
  transition-duration: 0ms;
}
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-track.simplebar-horizontal .simplebar-scrollbar:active {
  cursor: grabbing;
}
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.table-horizontal-scrollbar.svelte-1y4atth .simplebar-content-wrapper {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: auto !important;
}
.table-scroll.svelte-1y4atth {
  border: 1px solid var(--dt-border-subtle);
  background-color: var(--dt-bg-elevated);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.table-scroll.svelte-1y4atth::-webkit-scrollbar {
  display: none;
}
.table-scroll[data-navigation-mode=scroll].svelte-1y4atth {
  overflow-x: auto;
  scroll-behavior: auto;
}
.table-scroll.with-horizontal-scrollbars.svelte-1y4atth {
  border-top: 0;
  border-bottom: 0;
}
table.svelte-1y4atth {
  border-collapse: separate;
  border-spacing: 0;
}
.main-table.svelte-1y4atth {
  width: 100%;
  table-layout: fixed;
}
thead.svelte-1y4atth th:where(.svelte-1y4atth) {
  position: sticky;
  top: 0;
  z-index: 3;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  background-color: var(--dt-bg-elevated-soft);
  color: var(--dt-text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--dt-border-subtle);
  white-space: nowrap;
}
thead.svelte-1y4atth th:where(.svelte-1y4atth) .header-button:where(.svelte-1y4atth) {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}
thead.svelte-1y4atth th:where(.svelte-1y4atth) .header-label:where(.svelte-1y4atth) {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}
thead.svelte-1y4atth th:where(.svelte-1y4atth) .header-text:where(.svelte-1y4atth) {
  text-overflow: ellipsis;
  min-width: 0;
}
thead.svelte-1y4atth th:where(.svelte-1y4atth) .header-icon:where(.svelte-1y4atth) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dt-text-muted);
  opacity: 0.8;
  flex: 0 0 auto;
}
thead.svelte-1y4atth th:where(.svelte-1y4atth) .sort-indicator:where(.svelte-1y4atth) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  min-width: 0.95rem;
  color: color-mix(in srgb, var(--dt-text-muted) 85%, var(--dt-text-main));
}
thead.svelte-1y4atth th:where(.svelte-1y4atth) .sort-indicator.is-active:where(.svelte-1y4atth) {
  color: var(--dt-accent);
}
tbody.svelte-1y4atth tr:where(.svelte-1y4atth) {
  background-color: var(--dt-bg-elevated);
}
tbody.svelte-1y4atth tr:where(.svelte-1y4atth):nth-child(even) {
  background-color: var(--dt-bg-elevated-soft);
}
tbody.svelte-1y4atth tr:where(.svelte-1y4atth):hover {
  background:
    linear-gradient(
      to right,
      rgba(173, 81, 76, 0.14),
      transparent);
}
tbody.svelte-1y4atth tr.has_action:where(.svelte-1y4atth) {
  cursor: pointer;
}
tbody.svelte-1y4atth tr:where(.svelte-1y4atth) td:where(.svelte-1y4atth) {
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--dt-border-subtle);
  white-space: nowrap;
}
tbody.svelte-1y4atth tr:where(.svelte-1y4atth) td:where(.svelte-1y4atth) .cell-content:where(.svelte-1y4atth) {
  min-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}
tbody.svelte-1y4atth tr.empty-row:where(.svelte-1y4atth) td:where(.svelte-1y4atth) {
  text-align: center;
  color: var(--dt-text-muted);
}
.align-left.svelte-1y4atth {
  text-align: left;
}
.align-center.svelte-1y4atth {
  text-align: center;
}
.align-right.svelte-1y4atth {
  text-align: right;
}
.cell-actions-header.svelte-1y4atth,
.cell-actions.svelte-1y4atth {
  position: sticky;
  right: 0;
  z-index: 4;
  background-color: var(--dt-bg-elevated-soft);
  white-space: nowrap;
  max-width: var(--actions-col-width, auto);
}
.cell-actions.svelte-1y4atth {
  border-left: 1px solid var(--dt-border-subtle);
  box-shadow: none;
}
.cell-actions-inner.svelte-1y4atth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
.actions.svelte-1y4atth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
}
.loading-row.svelte-1y4atth td:where(.svelte-1y4atth) {
  background-color: var(--dt-bg-elevated);
  border-bottom-color: color-mix(in srgb, var(--dt-border-subtle) 60%, transparent);
}
.skeleton-bar.svelte-1y4atth {
  display: block;
  width: 100%;
  height: 0.65rem;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--dt-bg-elevated-soft) 60%, transparent),
      color-mix(in srgb, var(--dt-border-subtle) 80%, transparent),
      color-mix(in srgb, var(--dt-bg-elevated-soft) 60%, transparent));
  background-size: 200% 100%;
  animation: svelte-1y4atth-skeleton-shimmer 1.2s ease-in-out infinite;
}
.skeleton-bar.small.svelte-1y4atth {
  width: 48%;
  margin: 0 auto;
}
.skeleton-bar.wide.svelte-1y4atth {
  width: 30%;
  margin: 0 auto;
}
.loading-more.svelte-1y4atth {
  display: flex;
  justify-content: center;
  padding: 0.4rem 0;
}
.sizer.svelte-1y4atth {
  position: fixed;
  left: -10000px;
  top: -10000px;
  visibility: hidden;
  pointer-events: none;
  contain: layout style;
}
.sizer-table.svelte-1y4atth {
  width: auto;
  table-layout: auto;
}
.sizer-table.svelte-1y4atth thead:where(.svelte-1y4atth) th:where(.svelte-1y4atth),
.sizer-table.svelte-1y4atth td:where(.svelte-1y4atth) {
  position: static;
  padding: 0.65rem 0.75rem;
  white-space: nowrap;
  overflow: visible;
  border: none;
  box-shadow: none;
}
.sizer-table.svelte-1y4atth .cell-content:where(.svelte-1y4atth) {
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}
@keyframes svelte-1y4atth-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@media print {
  thead.svelte-1y4atth th:where(.svelte-1y4atth) {
    position: static !important;
    top: auto !important;
  }
  .cell-actions-header.svelte-1y4atth,
  .cell-actions.svelte-1y4atth {
    position: static !important;
    right: auto !important;
  }
  tbody.svelte-1y4atth tr:where(.svelte-1y4atth) {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/table/CardView.esbuild-svelte-fake-css */
.card-grid.svelte-14b7xox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(560px, 100%), 1fr));
  gap: 1rem;
  width: 100%;
  min-width: 0;
}
.card-grid.svelte-14b7xox .empty-cards:where(.svelte-14b7xox) {
  grid-column: 1 / -1;
  padding: 1.5rem;
  border-radius: var(--dt-radius);
  border: 1px dashed var(--dt-border-subtle);
  text-align: center;
  color: var(--dt-text-muted);
  background-color: var(--dt-bg-elevated);
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) {
  border-radius: 2px;
  border: 1px solid var(--dt-border-subtle);
  background-color: var(--dt-bg-elevated);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  width: 100%;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-header:where(.svelte-14b7xox) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.9rem 0.6rem 0.9rem;
  border-bottom: 1px solid var(--dt-border-subtle);
  gap: 0.5rem;
  flex-wrap: wrap;
  min-width: 0;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-header:where(.svelte-14b7xox) .card-title:where(.svelte-14b7xox) {
  font-weight: 600;
  flex: 1 1 auto;
  font-size: 1.3rem;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-header:where(.svelte-14b7xox) .card-title:where(.svelte-14b7xox) .card-subtitle:where(.svelte-14b7xox) {
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: var(--dt-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-header:where(.svelte-14b7xox) .card-header-actions:where(.svelte-14b7xox) {
  display: flex;
  gap: 0.25rem;
  row-gap: 0.35rem;
  margin-left: 0.75rem;
  flex: 1 1 45%;
  min-width: 0;
  max-width: 100%;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-header:where(.svelte-14b7xox) .card-header-actions:where(.svelte-14b7xox) * {
  min-width: 0;
  max-width: 100%;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-header:where(.svelte-14b7xox) .card-header-actions:where(.svelte-14b7xox) button {
  border: none;
  background: transparent;
  color: var(--dt-text-muted);
  padding: 0.3rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-header:where(.svelte-14b7xox) .card-header-actions:where(.svelte-14b7xox) button:hover {
  color: var(--dt-accent-soft);
  background-color: rgba(116, 30, 32, 0.12);
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) {
  position: relative;
  padding: 0.6rem 0.9rem 0.4rem 0.9rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-scroll-controls:where(.svelte-14b7xox) {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-scroll-button:where(.svelte-14b7xox) {
  border: none;
  background: transparent;
  color: var(--dt-text-muted);
  padding: 0.15rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.05s ease,
    opacity 0.1s ease;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-scroll-button:where(.svelte-14b7xox):hover:not(:disabled) {
  color: var(--dt-accent-soft);
  background-color: rgba(116, 30, 32, 0.12);
  transform: translateY(-1px);
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-scroll-button:where(.svelte-14b7xox):active:not(:disabled) {
  transform: translateY(0);
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-scroll-button:where(.svelte-14b7xox):disabled {
  opacity: 0.3;
  cursor: default;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-body-content:where(.svelte-14b7xox) {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-right: 1.1rem;
  min-width: 0;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) {
  display: grid;
  grid-template-columns: minmax(0, 200px) 1fr;
  column-gap: 0.75rem;
  align-items: start;
  min-width: 0;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) .card-label:where(.svelte-14b7xox) {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dt-text-muted);
  margin: 0;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) .card-value:where(.svelte-14b7xox) {
  font-size: 0.86rem;
  color: var(--dt-text-main);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) .card-value:where(.svelte-14b7xox) * {
  max-width: 100%;
  min-width: 0;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) .card-value:where(.svelte-14b7xox) pre,
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) .card-value:where(.svelte-14b7xox) code,
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) .card-value:where(.svelte-14b7xox) kbd,
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) .card-value:where(.svelte-14b7xox) samp {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) .card-value:where(.svelte-14b7xox) table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) .card-value:where(.svelte-14b7xox) th,
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) .card-value:where(.svelte-14b7xox) td {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-footer:where(.svelte-14b7xox) {
  padding: 0.6rem 0.9rem 0.75rem 0.9rem;
  margin-top: auto;
  min-width: 0;
}
.card-grid.svelte-14b7xox .primary-btn:where(.svelte-14b7xox) {
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  cursor: pointer;
  background:
    linear-gradient(
      135deg,
      var(--dt-accent),
      var(--dt-accent-soft));
  color: var(--text-100, #f3eed9);
  box-shadow: 0 10px 25px rgba(116, 30, 32, 0.55);
  transition:
    transform 0.08s ease,
    box-shadow 0.08s ease,
    filter 0.08s ease;
}
.card-grid.svelte-14b7xox .primary-btn:where(.svelte-14b7xox):hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(116, 30, 32, 0.65);
}
.card-grid.svelte-14b7xox .primary-btn:where(.svelte-14b7xox):active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(116, 30, 32, 0.5);
}
@media (max-width: 700px) {
  .card-grid.svelte-14b7xox {
    gap: 0.75rem;
  }
  .card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) {
    grid-template-columns: 1fr;
    row-gap: 0.15rem;
  }
  .card-grid.svelte-14b7xox .card:where(.svelte-14b7xox) .card-body:where(.svelte-14b7xox) .card-row:where(.svelte-14b7xox) .card-label:where(.svelte-14b7xox) {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/Table.esbuild-svelte-fake-css */
.section-title-button.svelte-qe1vjj {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 600px) {
  .section-title-button.svelte-qe1vjj {
    width: 100%;
    justify-content: flex-start;
  }
}
.data-table.svelte-qe1vjj {
  --dt-radius: 6px;
  --dt-border-subtle-dark: rgba(255, 255, 255, 0.06);
  --dt-border-subtle-light: rgba(0, 0, 0, 0.06);
  --dt-accent: var(--primary-100, #741e20);
  --dt-accent-soft: var(--primary-200, #ad514c);
  color: var(--dt-text-main);
  font-size: 0.85rem;
  line-height: 1.4;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.data-table[data-theme=dark].svelte-qe1vjj {
  --dt-bg-main: var(--bg-100, #0d0c0c);
  --dt-bg-elevated: var(--bg-200, #332d2c);
  --dt-bg-elevated-soft: #26201f;
  --dt-border-subtle: var(--dt-border-subtle-dark);
  --dt-text-main: var(--text-100, #f3eed9);
  --dt-text-muted: var(--text-300, #625755);
  --dt-text-soft: var(--text-200, #d1e7e0);
}
.data-table[data-theme=light].svelte-qe1vjj {
  --dt-bg-main: var(--neutral-white, #ffffff);
  --dt-bg-elevated: var(--bg-300, #eceaea);
  --dt-bg-elevated-soft: #f8f6f6;
  --dt-border-subtle: var(--dt-border-subtle-light);
  --dt-text-main: var(--text-invers-100, #2f4858);
  --dt-text-muted: var(--text-invers-150, #6d97b0);
  --dt-text-soft: var(--text-invers-200, #741e20);
}
.data-table.svelte-qe1vjj .table-view:where(.svelte-qe1vjj),
.data-table.svelte-qe1vjj .card-view:where(.svelte-qe1vjj) {
  display: none;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.data-table[data-mode=table].svelte-qe1vjj .table-view:where(.svelte-qe1vjj) {
  display: block;
}
.data-table[data-mode=table-scroll].svelte-qe1vjj .table-view:where(.svelte-qe1vjj) {
  display: block;
}
.data-table[data-mode=cards].svelte-qe1vjj .card-view:where(.svelte-qe1vjj) {
  display: block;
}
.data-table[data-mode=auto].svelte-qe1vjj .card-view:where(.svelte-qe1vjj) {
  display: block;
}
@media (min-width: 900px) {
  .data-table[data-mode=auto].svelte-qe1vjj .card-view:where(.svelte-qe1vjj) {
    display: none;
  }
  .data-table[data-mode=auto].svelte-qe1vjj .table-view:where(.svelte-qe1vjj) {
    display: block;
  }
}
@media screen and (max-width: 899px) {
  .data-table.svelte-qe1vjj {
  }
  .data-table[data-mode].svelte-qe1vjj .table-view:where(.svelte-qe1vjj) {
    display: none;
  }
  .data-table[data-mode].svelte-qe1vjj .card-view:where(.svelte-qe1vjj) {
    display: block;
  }
}
.table-footer.svelte-qe1vjj {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
}
.table-selection-bar.svelte-qe1vjj {
  margin-bottom: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--dt-radius);
  border: 1px solid var(--dt-border-subtle);
  background: var(--dt-bg-elevated-soft);
}
.table-error.svelte-qe1vjj {
  margin-top: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--dt-radius);
  border: 1px solid rgba(255, 99, 99, 0.4);
  color: #ff9b9b;
  background: rgba(255, 99, 99, 0.05);
}
@page {
  size: landscape;
}
@media print {
  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
  }
  .data-table {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  body * {
    visibility: hidden !important;
  }
  .data-table,
  .data-table * {
    visibility: visible !important;
  }
  @supports selector(:has(*)) {
    body * {
      visibility: visible !important;
    }
    body *:not(:has(.data-table)):not(.data-table):not(.data-table *) {
      display: none !important;
    }
    .page-template__layout {
      grid-template-columns: 1fr !important;
      gap: 0 !important;
    }
    .kw-crinkled-section__wrapper {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
    .kw-crinkled-section__wrapper-content {
      width: 100% !important;
      max-width: none !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
  }
}

/* fakecss:/workspace/packages/control-web-frame/src/components/notifications/detail/NotificationNotesSection.esbuild-svelte-fake-css */
.note-history-stack.svelte-2ca7tq {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.activity-table-section.svelte-2ca7tq {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.note-form.svelte-2ca7tq {
  width: 100%;
}
.note-form.svelte-2ca7tq label {
  display: block;
  width: 100%;
}
.note-form.svelte-2ca7tq textarea {
  min-height: 7rem;
}
.note-actions.svelte-2ca7tq {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.muted.svelte-2ca7tq {
  margin: 0;
  color: white;
  opacity: 0.85;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/notifications/detail/NotificationPresentationSection.esbuild-svelte-fake-css */
.block-stack.svelte-bowvx3 {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.presentation-block.svelte-bowvx3 {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
h4.svelte-bowvx3,
p.svelte-bowvx3,
ul.svelte-bowvx3,
dl.svelte-bowvx3 {
  margin: 0;
  color: white;
}
.fact-list.svelte-bowvx3 {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 0.45rem 0.9rem;
}
.fact-list.svelte-bowvx3 dt:where(.svelte-bowvx3) {
  opacity: 0.7;
  font-weight: 700;
}
.fact-list.svelte-bowvx3 dt:where(.svelte-bowvx3),
.fact-list.svelte-bowvx3 dd:where(.svelte-bowvx3),
.primary-list.svelte-bowvx3 li:where(.svelte-bowvx3) {
  color: white;
}
.primary-list.svelte-bowvx3 {
  padding-left: 1.1rem;
}
a.svelte-bowvx3 {
  color: var(--color-primary-300, #8fd8ff);
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/notifications/detail/NotificationStatusToolbar.esbuild-svelte-fake-css */
.status-toolbar.svelte-12pj4ft {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  margin-bottom: 0.2rem;
}
.status-form.svelte-12pj4ft {
  width: 100%;
}
.status-form.svelte-12pj4ft label {
  display: block;
  width: 100%;
}
.muted.svelte-12pj4ft {
  margin: 0;
  opacity: 0.85;
  color: white;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/notifications/NotificationActivityOverlay.esbuild-svelte-fake-css */
.activity-overlay.svelte-6n52zl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-100);
}
.meta-grid.svelte-6n52zl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}
.meta-item.svelte-6n52zl {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.meta-label.svelte-6n52zl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.meta-value.svelte-6n52zl,
p.svelte-6n52zl,
pre.svelte-6n52zl,
.muted.svelte-6n52zl {
  color: var(--text-100);
  margin: 0;
}
pre.svelte-6n52zl {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.9rem;
  line-height: 1.5;
}
.muted.svelte-6n52zl {
  opacity: 0.85;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/notifications/NotificationDetailOverlay.esbuild-svelte-fake-css */
.notification-detail.svelte-nca2i1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
}
.overview-header.svelte-nca2i1 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.action-row.svelte-nca2i1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.summary.svelte-nca2i1,
.entity-item.svelte-nca2i1 span:where(.svelte-nca2i1),
.entity-item.svelte-nca2i1 a:where(.svelte-nca2i1),
.meta-value.svelte-nca2i1,
p.svelte-nca2i1 {
  color: white;
}
.summary.svelte-nca2i1 {
  margin: 0;
  opacity: 0.85;
}
.meta-grid.svelte-nca2i1,
.entity-grid.svelte-nca2i1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}
.meta-item.svelte-nca2i1,
.entity-item.svelte-nca2i1 {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.meta-label.svelte-nca2i1,
.entity-kind.svelte-nca2i1 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
a.svelte-nca2i1 {
  color: var(--color-primary-300, #8fd8ff);
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/notifications/table/NotificationsFilters.esbuild-svelte-fake-css */
.form.svelte-19b2qnd {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.row.svelte-19b2qnd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/notifications/table/NotificationsGrid.esbuild-svelte-fake-css */
.muted.svelte-11ozh38 {
  color: var(--text-60);
  margin: 0;
}
.timestamp.svelte-11ozh38 {
  color: var(--text-80);
  font-variant-numeric: tabular-nums;
}
.status-cell-tag.svelte-11ozh38 {
  display: inline-flex;
  align-items: center;
}
.cell-text.svelte-11ozh38 {
  display: block;
  max-width: 300px;
  white-space: normal;
  word-break: break-word;
}
.title-text.svelte-11ozh38 {
  color: var(--text-90);
}
.description-text.svelte-11ozh38 {
  color: var(--text-90);
}
.description-text.open.svelte-11ozh38 {
  font-weight: 700;
}
.row-action-stack.svelte-11ozh38 {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-wrap: wrap;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/notifications/table/NotificationsHeader.esbuild-svelte-fake-css */
.toolbar.svelte-13uv41h {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/notifications/todos/TodoOverlayContent.esbuild-svelte-fake-css */
.todo-overlay.svelte-142196q {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: fit-content;
}
.todo-overlay.svelte-142196q .error:where(.svelte-142196q) {
  margin: 0;
  color: var(--color-danger-500, #c62828);
}
.todo-overlay .formActions {
  display: none;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/notifications/NotificationsTable.esbuild-svelte-fake-css */
.notifications.svelte-1hc0mkb {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UnauthenticatedView/pages/SignupSuccess/components/SignupCompletionSuccess.esbuild-svelte-fake-css */
.hints-table.svelte-1xhae2j {
  margin-top: 1rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UnauthenticatedView/pages/SignupFlow/steps/SignupPaymentStep.esbuild-svelte-fake-css */
.hint.svelte-1cuomw4 {
  margin: 0;
  color: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
}
.subtle.svelte-1cuomw4 {
  color: color-mix(in srgb, var(--text-invers-100) 60%, transparent);
  font-size: 0.9rem;
  margin: 0.6rem 0 0;
}
.linkish.svelte-1cuomw4 {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--primary-300);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}
.linkish.svelte-1cuomw4:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.plan-preview.svelte-1cuomw4 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.state-block.svelte-1cuomw4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cta-row.svelte-1cuomw4 {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UnauthenticatedView/pages/SignupFlow/page.esbuild-svelte-fake-css */
.signup-panel__inner.svelte-cew4a7 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.2rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/ui/GhostButton.esbuild-svelte-fake-css */
.ghost-button.svelte-1dziwry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text-100) 12%, transparent);
  background: color-mix(in srgb, var(--bg-200) 85%, var(--bg-100) 15%);
  color: var(--text-100);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  padding: 0.65rem 1.3rem;
  font-size: 0.85rem;
}
.ghost-button.sm.svelte-1dziwry {
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  gap: 0.45rem;
}
.ghost-button.subtle.svelte-1dziwry {
  background: transparent;
  border-color: color-mix(in srgb, var(--text-100) 8%, transparent);
}
.ghost-button.danger.svelte-1dziwry {
  border-color: rgba(255, 106, 99, 0.45);
  color: #ff6a63;
  background: rgba(173, 81, 76, 0.14);
}
.ghost-button.svelte-1dziwry:hover:not(:disabled) {
  background: var(--bg-300);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(10, 8, 8, 0.28);
}
.ghost-button.svelte-1dziwry:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.ghost-button.svelte-1dziwry:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-200) 25%, transparent);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UnauthenticatedView/pages/NotFound/page.esbuild-svelte-fake-css */
.not-found.svelte-1rs554i {
  padding: clamp(2.4rem, 5vw, 3.2rem);
  text-align: center;
  color: color-mix(in srgb, var(--text-invers-100) 90%, transparent);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  border-radius: 32px;
  border: 1px solid rgba(71, 84, 103, 0.18);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

/* fakecss:/data/node_modules/@kontextwerk/presentation-web-frame/src/components/forms/WaitlistFormRow.esbuild-svelte-fake-css */
section.newsletter.svelte-er4okf {
  padding-bottom: 3rem;
  position: relative;
  width: 100%;
  background-color: var(--bg-100);
  display: flex;
  align-items: center;
  height: 700px;
}
section.newsletter.svelte-er4okf .background-image:where(.svelte-er4okf) {
  z-index: 1;
  top: 0px;
  left: 0px;
  position: absolute;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
section.newsletter.svelte-er4okf .background-image:where(.svelte-er4okf) img:where(.svelte-er4okf) {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  min-width: 100%;
  object-fit: cover;
}
section.newsletter.svelte-er4okf .background-image.mobile:where(.svelte-er4okf) {
  left: 0px;
  right: 0px;
}
section.newsletter.mobile.svelte-er4okf {
  height: 600px;
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  overflow: visible;
  color: var(--neutral-white);
}
@media (max-width: 768px) {
  section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) {
    grid-template-columns: 1fr;
  }
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  overflow: visible;
  gap: 1.2rem;
  max-width: 600px;
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) small:where(.svelte-er4okf) {
  font-family: Outfit, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) small:where(.svelte-er4okf),
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) p:where(.svelte-er4okf),
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) .h1:where(.svelte-er4okf) {
  color: var(--text-100);
  width: 100%;
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) form:where(.svelte-er4okf) {
  overflow: visible;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) .data-protection:where(.svelte-er4okf) {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) .data-protection:where(.svelte-er4okf) p:where(.svelte-er4okf) {
  margin: 0;
  flex-grow: 1;
  color: var(--text-100);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) .data-protection:where(.svelte-er4okf) p:where(.svelte-er4okf) a:where(.svelte-er4okf) {
  color: var(--primary-200);
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) .data-protection:where(.svelte-er4okf) .checkbox:where(.svelte-er4okf) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  min-width: 1.2rem;
  height: 1.2rem;
  border-radius: 2px;
  border-bottom: 2px solid var(--bg-200, #332d2c);
  background:
    linear-gradient(
      283deg,
      rgba(0, 0, 0, 0) 72.52%,
      #0d0c0c 83.26%),
    linear-gradient(
      99deg,
      rgba(0, 0, 0, 0) 50.02%,
      #0d0c0c 66.41%),
    linear-gradient(
      180deg,
      #332d2c 50.06%,
      rgba(51, 45, 44, 0) 100.06%),
    #332d2c;
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) .data-protection:where(.svelte-er4okf) .checkbox:where(.svelte-er4okf) input:where(.svelte-er4okf) {
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  position: relative;
  outline: none;
}
section.newsletter.svelte-er4okf .wrapper:where(.svelte-er4okf) .inner-container:where(.svelte-er4okf) .content:where(.svelte-er4okf) .data-protection:where(.svelte-er4okf) .checkbox:where(.svelte-er4okf) input:where(.svelte-er4okf):checked::after {
  content: "\2713";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-100);
  font-size: 0.85rem;
}
input.specialInputStyle.svelte-er4okf,
textarea.specialInputStyle.svelte-er4okf {
  border-radius: 2px !important;
  border-bottom: 2px solid var(--bg-200, #332d2c) !important;
  background:
    linear-gradient(
      283deg,
      rgba(0, 0, 0, 0) 72.52%,
      #0d0c0c 83.26%),
    linear-gradient(
      99deg,
      rgba(0, 0, 0, 0) 50.02%,
      #0d0c0c 66.41%),
    linear-gradient(
      180deg,
      #332d2c 50.06%,
      rgba(51, 45, 44, 0) 100.06%),
    #332d2c !important;
  padding: 12px 18px;
  width: 100%;
  outline: none;
  color: var(--text-100);
}
input.specialInputStyle.svelte-er4okf:hover,
textarea.specialInputStyle.svelte-er4okf:hover,
input.specialInputStyle.svelte-er4okf:focus,
textarea.specialInputStyle.svelte-er4okf:focus {
  box-shadow: 0px 0px 1px 0px #000 inset, 0px 0px 20px 0px #741e20 !important;
}
input.specialInputStyle.svelte-er4okf:disabled,
textarea.specialInputStyle.svelte-er4okf:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
textarea.specialTextarea.svelte-er4okf {
  resize: vertical;
  min-height: 120px;
}
p.error.svelte-er4okf {
  margin: 0;
  color: var(--error-100);
  font-weight: 600;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UnauthenticatedView/pages/Waitlist/page.esbuild-svelte-fake-css */
.waitlist-page.svelte-1iwxx5g {
  min-height: 400px;
  display: flex;
  align-items: flex-start;
  padding: 2rem 0 3rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UnauthenticatedView/UnauthenticatedViewFrame.esbuild-svelte-fake-css */

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/FullscreenToggle.esbuild-svelte-fake-css */
.fullscreen-toggle.svelte-1xcmuk4 {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 0.8rem;
  border: 1px solid color-mix(in srgb, var(--bg-400) 75%, transparent);
  background: color-mix(in srgb, var(--bg-400) 40%, transparent);
  color: var(--text-100);
  font: inherit;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}
.fullscreen-toggle.svelte-1xcmuk4:hover,
.fullscreen-toggle.svelte-1xcmuk4:focus-visible {
  outline: none;
  background: color-mix(in srgb, var(--bg-400) 60%, transparent);
  border-color: color-mix(in srgb, var(--bg-400) 85%, transparent);
}
.fullscreen-toggle.fullscreen-active.svelte-1xcmuk4 {
  background: color-mix(in srgb, var(--accent-color, #f7c35f) 20%, var(--bg-400) 60%);
  border-color: color-mix(in srgb, var(--accent-color, #f7c35f) 55%, transparent);
}
.fullscreen-toggle.svelte-1xcmuk4 span:where(.svelte-1xcmuk4) {
  font-size: 0.95rem;
  white-space: nowrap;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/PageTemplate.esbuild-svelte-fake-css */
.sticky-bar.svelte-9ltwes {
  position: sticky;
  top: calc(107px);
  height: 2.4rem;
  background-color: white;
  width: 100%;
  z-index: 9997;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sticky-bar.svelte-9ltwes {
    display: none;
  }
}
.page-template__actions {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.page-template__actions.fullscreen {
  position: fixed;
  top: 0.6rem;
  left: 0;
  right: 0;
  z-index: 9999;
}
.page-template__actions.fullscreen * {
  color: var(--text-invers-100) !important;
}
.page-template__actions--inner {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  justify-content: flex-end;
  max-width: var(--normal-max-width);
  align-items: center;
}
.page-template__actions.fullscreen .page-template__actions--inner {
  max-width: none;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}
.page-template__layout.svelte-9ltwes {
  --nav-expanded-width: minmax(280px, 300px);
  --nav-collapsed-width: 2.4rem;
  --nav-width: var(--nav-expanded-width);
  display: grid;
  grid-template-columns: var(--nav-width) 1fr;
  gap: 1.6rem;
  align-items: flex-start;
  width: 100%;
  transition: grid-template-columns 180ms ease, gap 180ms ease;
}
.page-template__layout.fullscreen.svelte-9ltwes {
  grid-template-columns: 1fr;
  min-height: 100%;
  padding-top: 1.2rem;
}
.page-template__layout.collapsed.svelte-9ltwes {
  --nav-width: var(--nav-collapsed-width);
  gap: 1.2rem;
}
.page-template__layout.noPrimaryNavigation.svelte-9ltwes {
  grid-template-columns: 1fr;
  gap: 0;
}
.page-template__primary.svelte-9ltwes {
  position: sticky;
  top: calc(107px + 2.4rem);
  align-self: start;
  transition:
    width 180ms ease,
    min-width 180ms ease,
    max-width 180ms ease;
}
.page-template__primary.collapsed.svelte-9ltwes {
  width: var(--nav-collapsed-width);
  min-width: var(--nav-collapsed-width);
  max-width: var(--nav-collapsed-width);
}
.page-template__primary.hasTabs.svelte-9ltwes {
  top: calc(107px + 2.4rem + 3.6rem);
}
.page-template__panel.svelte-9ltwes {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.page-template__panel.fullscreen.svelte-9ltwes {
  gap: 0.5rem;
  flex: 1;
}
.page-template__content.svelte-9ltwes {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.page-template__content.small.svelte-9ltwes {
  max-width: 1120px;
  margin: 0 auto;
}
.page-template__content.large.svelte-9ltwes {
  max-width: var(--normal-max-width);
  margin: 0 auto;
}
.page-template__content.fullscreen.svelte-9ltwes {
  flex: 1;
}
.nav.svelte-9ltwes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 280px;
  max-width: 300px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transition:
    width 180ms ease,
    min-width 180ms ease,
    max-width 180ms ease,
    gap 160ms ease;
}
.nav.collapsed.svelte-9ltwes {
  min-width: var(--nav-collapsed-width);
  max-width: var(--nav-collapsed-width);
  width: var(--nav-collapsed-width);
  gap: 0.5rem;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .nav.svelte-9ltwes {
    min-width: 100%;
    max-width: 100%;
  }
}
.nav.svelte-9ltwes li:where(.svelte-9ltwes) {
  border-radius: 2px;
  border: 1px solid var(--bg-100);
  display: flex;
  align-items: center;
  background-color: var(--neutral-white);
  overflow: hidden;
  transition: background-color 140ms ease, border-color 140ms ease;
}
.nav.svelte-9ltwes li:where(.svelte-9ltwes) a:where(.svelte-9ltwes),
.nav.svelte-9ltwes li:where(.svelte-9ltwes) button:where(.svelte-9ltwes) {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0.6rem 1.2rem;
  align-items: center;
  overflow: hidden;
  gap: 1.2rem;
  color: var(--bg-100);
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}
.nav.svelte-9ltwes li:where(.svelte-9ltwes) a:where(.svelte-9ltwes) .icon:where(.svelte-9ltwes),
.nav.svelte-9ltwes li:where(.svelte-9ltwes) button:where(.svelte-9ltwes) .icon:where(.svelte-9ltwes) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.2rem;
  min-width: 1.2rem;
  height: 1.2rem;
  width: 1.2rem;
}
.nav.svelte-9ltwes li:where(.svelte-9ltwes) a:where(.svelte-9ltwes) .icon:where(.svelte-9ltwes) svg,
.nav.svelte-9ltwes li:where(.svelte-9ltwes) button:where(.svelte-9ltwes) .icon:where(.svelte-9ltwes) svg {
  width: 100%;
  height: 100%;
}
.nav.svelte-9ltwes li:where(.svelte-9ltwes) a:where(.svelte-9ltwes) .label:where(.svelte-9ltwes),
.nav.svelte-9ltwes li:where(.svelte-9ltwes) button:where(.svelte-9ltwes) .label:where(.svelte-9ltwes) {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 0.6rem;
  transition:
    opacity 140ms ease,
    max-width 140ms ease,
    margin 140ms ease;
}
.nav.svelte-9ltwes li.active:where(.svelte-9ltwes) {
  background: var(--bg-100);
}
.nav.svelte-9ltwes li.active:where(.svelte-9ltwes) a:where(.svelte-9ltwes),
.nav.svelte-9ltwes li.active:where(.svelte-9ltwes) button:where(.svelte-9ltwes) {
  color: var(--neutral-white);
}
.nav.svelte-9ltwes li.nav__toggle:where(.svelte-9ltwes) button:where(.svelte-9ltwes) {
  font-weight: 600;
}
.nav.collapsed.svelte-9ltwes li:where(.svelte-9ltwes) {
  justify-content: center;
}
.nav.collapsed.svelte-9ltwes a:where(.svelte-9ltwes),
.nav.collapsed.svelte-9ltwes button:where(.svelte-9ltwes) {
  justify-content: center;
  padding: 0.6rem;
  gap: 0;
}
.nav.collapsed.svelte-9ltwes .label:where(.svelte-9ltwes) {
  opacity: 0;
  max-width: 0;
  margin: 0;
  overflow: hidden;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .page-template__layout.svelte-9ltwes {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .page-template__layout.collapsed.svelte-9ltwes {
    grid-template-columns: 1fr;
  }
  .page-template__layout.svelte-9ltwes .page-template__primary:where(.svelte-9ltwes) {
    display: none;
  }
  .nav.svelte-9ltwes {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .nav.collapsed.svelte-9ltwes {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    gap: 10px;
  }
  .nav.collapsed.svelte-9ltwes a:where(.svelte-9ltwes),
  .nav.collapsed.svelte-9ltwes button:where(.svelte-9ltwes) {
    justify-content: flex-start;
    padding: 0.6rem 1.2rem;
    gap: 1.2rem;
  }
  .nav.collapsed.svelte-9ltwes .label:where(.svelte-9ltwes) {
    opacity: 1;
    max-width: none;
  }
}
.page-template__section.fullscreen .kw-crinkled-section__wrapper {
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  display: flex;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.page-template__section.fullscreen .kw-crinkled-section__wrapper-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/CardWrapper.esbuild-svelte-fake-css */
div.card-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
div.card-wrapper .edit-btn {
  background-color: var(--bg-100);
  color: var(--neutral-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.6rem;
}
div.card-wrapper .edit-btn span {
  font-weight: 700;
}
div.card-wrapper .delete-btn {
  position: absolute;
  top: -0.4rem;
  left: -0.4rem;
  background: transparent;
  border: none;
  color: var(--text-invers-100);
  cursor: pointer;
  height: 1.2rem;
  width: 1.2rem;
  z-index: 9;
  border: 1px solid var(--bg-100);
  background-color: white;
}
div.card-wrapper .delete-btn:hover {
  background-color: var(--text-invers-100) !important;
  color: white !important;
}
div.card-wrapper .action-button-line,
div.card-wrapper .action-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
div.card-wrapper .action-line {
  background: var(--bg-100);
  padding: 0.6rem 3.3rem 0.6rem 3.3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 2.4rem;
  justify-content: space-between;
}
div.card-wrapper .action-line p,
div.card-wrapper .action-line span {
  color: var(--neutral-white);
}
div.card-wrapper > div[role=button] {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
div.card-wrapper .header-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin-top: 0;
  min-height: 1.8rem;
  padding: 0.6rem;
  box-sizing: border-box;
  z-index: 9;
  color: var(--text-invers-100);
}
div.card-wrapper .header {
  display: flex;
  height: 2.4rem;
  position: relative;
}
div.card-wrapper .header .rightCorner {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 999;
}
div.card-wrapper .header .bar {
  flex-grow: 1;
  height: 100%;
  border-top: 1px solid var(--bg-100);
  border-left: 1px solid var(--bg-100);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
div.card-wrapper .header .bar .title {
  background-color: var(--bg-100);
  padding: 4px 8px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  height: fit-content;
}
div.card-wrapper .header .crinkle {
  width: 2.4rem;
  height: 2.4rem;
  overflow: hidden;
  margin-left: -2px;
}
div.card-wrapper .body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 1.2rem;
  border: 1px solid var(--bg-100);
  border-top: 0px solid black;
}
div.card-wrapper .body .header-content-placeholder {
  flex-shrink: 0;
  height: max(0px, calc(var(--header-content-height, 1.8rem) - 1.8rem));
}
div.card-wrapper .body .footer {
  display: flex;
  width: 100% !important;
  gap: 1px;
}
div.card-wrapper .body .footer > * {
  flex: 1;
  width: 0px;
}
div.card-wrapper.red .bar {
  background-color: #eb5757;
  border-color: #eb5757;
}
div.card-wrapper.red .body {
  background-color: #eb5757;
  border-color: #eb5757;
}
div.card-wrapper.white .edit-btn {
  border-top: 1px solid white;
}
div.card-wrapper.white > .header > .bar {
  border-top-color: #ffffff;
  border-left-color: #ffffff;
}
div.card-wrapper.white > .body {
  border-color: #ffffff;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/FileInput.esbuild-svelte-fake-css */
.file-input.svelte-h9g2lg {
  width: 100%;
  --file-input-text: var(--text-100);
  --file-input-muted: color-mix(in srgb, var(--text-100) 68%, transparent);
  --file-input-border: var(--surface-border);
  --file-input-bg: color-mix(in srgb, var(--surface-raised) 78%, transparent);
  --file-input-bg-preview: color-mix(in srgb, var(--surface-raised) 72%, transparent);
  --file-input-bg-hover: color-mix(in srgb, var(--surface-overlay) 74%, transparent);
  --file-input-thumb-bg: color-mix(in srgb, var(--surface-muted) 82%, transparent);
  --file-input-highlight-bg: color-mix(in srgb, var(--kontext-accent) 10%, var(--surface-raised));
}
.file-input.disabled.svelte-h9g2lg {
  opacity: 0.6;
  pointer-events: none;
}
.file-input[data-theme=light].svelte-h9g2lg {
  --file-input-text: var(--text-invers-100);
  --file-input-muted: color-mix(in srgb, var(--text-invers-100) 65%, transparent);
  --file-input-border: color-mix(in srgb, var(--text-invers-100) 14%, transparent);
  --file-input-bg: var(--neutral-white, #ffffff);
  --file-input-bg-preview: color-mix(in srgb, var(--neutral-white, #ffffff) 96%, var(--text-invers-100) 4%);
  --file-input-bg-hover: color-mix(in srgb, var(--text-invers-100) 4%, var(--neutral-white, #ffffff));
  --file-input-thumb-bg: color-mix(in srgb, var(--text-invers-100) 6%, var(--neutral-white, #ffffff));
  --file-input-highlight-bg: color-mix(in srgb, var(--kontext-accent) 10%, var(--neutral-white, #ffffff));
}
.file-input[data-surface=transparent].svelte-h9g2lg {
  --file-input-bg: transparent;
  --file-input-bg-preview: transparent;
  --file-input-bg-hover: color-mix(in srgb, var(--file-input-text) 4%, transparent);
  --file-input-thumb-bg: color-mix(in srgb, var(--file-input-text) 8%, transparent);
  --file-input-highlight-bg: color-mix(in srgb, var(--kontext-accent) 10%, transparent);
}
input[type=file].svelte-h9g2lg {
  display: none;
}
.file-card__header.svelte-h9g2lg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.2rem 0.35rem 0.2rem;
  color: var(--file-input-text);
}
.file-card__title.svelte-h9g2lg {
  margin: 0;
  font-weight: 700;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-card__hint.svelte-h9g2lg {
  color: var(--file-input-muted);
  font-size: 0.9rem;
}
.file-input__container.svelte-h9g2lg {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--file-input-border);
  background: var(--file-input-bg);
  color: var(--file-input-text);
  cursor: pointer;
  appearance: none;
  text-align: left;
  outline: none;
  transition:
    border-color 0.2s,
    background-color 0.2s,
    transform 0.15s ease;
}
.file-input__container.preview.svelte-h9g2lg {
  cursor: default;
  background: var(--file-input-bg-preview);
}
.file-input__container.svelte-h9g2lg:hover {
  border-color: var(--kontext-outline);
  background: var(--file-input-bg-hover);
  transform: translateY(-1px);
}
.file-input__container.svelte-h9g2lg:focus-visible {
  border-color: var(--kontext-outline);
  box-shadow: var(--focus-ring);
}
.file-input__container.highlight.svelte-h9g2lg {
  border-color: var(--kontext-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--kontext-accent) 25%, transparent);
  background: var(--file-input-highlight-bg);
}
.file-input__thumb.svelte-h9g2lg {
  width: 56px;
  height: 56px;
  border: 1px solid var(--file-input-border);
  background: var(--file-input-thumb-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s;
}
.file-input__thumb.svelte-h9g2lg:hover {
  transform: rotate(45deg) scale(0.7);
}
.file-input__thumb.svelte-h9g2lg img:where(.svelte-h9g2lg) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.file-input__thumb.svelte-h9g2lg svg {
  color: var(--file-input-text);
  width: 28px;
  height: 28px;
}
.file-input__details.svelte-h9g2lg {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1.2rem;
  min-width: 0;
}
.file-input__meta.svelte-h9g2lg {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  min-height: 1.2rem;
}
.file-input__actions.svelte-h9g2lg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.file-input__note.svelte-h9g2lg {
  color: var(--file-input-muted);
  font-size: 0.85rem;
}
.preview-modal.svelte-h9g2lg {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}
.preview-modal.svelte-h9g2lg img:where(.svelte-h9g2lg) {
  max-width: min(100%, 640px);
  max-height: 70vh;
  box-shadow: var(--shadow-soft);
}
.preview-modal.fallback.svelte-h9g2lg {
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-100);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/FileInputArray.esbuild-svelte-fake-css */
.file-input-array {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.file-input-array.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.file-input-array .entries {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.file-input-array .entry {
  width: 100%;
}
.file-input-array .entry-content {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.65rem;
}
.file-input-array .file-wrapper {
  width: 100%;
}
.file-input-array .notes {
  width: 100%;
}
.file-input-array .empty {
  padding: 0.6rem;
  color: var(--text-subtle);
  border: 1px dashed var(--surface-border);
  border-radius: 10px;
  text-align: center;
}
@media (min-width: 720px) {
  .file-input-array .entry-content {
    flex-direction: row;
    align-items: flex-start;
  }
  .file-input-array .file-wrapper {
    flex: 1;
    min-width: 280px;
  }
  .file-input-array .notes {
    margin-top: 0;
    flex: 1;
  }
}
.form.light .file-input-array button.btn {
  color: var(--text-100);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/feedback/FeedbackForm.esbuild-svelte-fake-css */
.error-state.svelte-1rvwmrp {
  margin-top: 0.5rem;
  color: var(--danger-100);
}
.row.column.svelte-1rvwmrp {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/display/InfoRow.esbuild-svelte-fake-css */
.infos.svelte-mj4jv9 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 1rem;
  row-gap: 1rem;
  color: color-mix(in srgb, var(--text-100) 70%, transparent);
}
.infos.svelte-mj4jv9 .info-item:where(.svelte-mj4jv9) {
  flex: 0 1 250px;
  min-width: 250px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.infos.svelte-mj4jv9 .info-item:where(.svelte-mj4jv9) .label:where(.svelte-mj4jv9) {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: color-mix(in srgb, var(--text-100) 55%, transparent);
}
.infos.svelte-mj4jv9 .info-item:where(.svelte-mj4jv9) .value:where(.svelte-mj4jv9) {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.infos.bright-background.svelte-mj4jv9 .info-item:where(.svelte-mj4jv9) .label:where(.svelte-mj4jv9),
.infos.bright-background.svelte-mj4jv9 .info-item:where(.svelte-mj4jv9) .value:where(.svelte-mj4jv9) {
  color: var(--text-invers-100);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/feedback/FeedbackMessageOverlay.esbuild-svelte-fake-css */
.message-overlay.svelte-1r4b5li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.actions.svelte-1r4b5li {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.body-copy.svelte-1r4b5li,
.muted.svelte-1r4b5li {
  margin: 0;
}
.body-copy.svelte-1r4b5li {
  white-space: pre-wrap;
  line-height: 1.5;
}
.muted.svelte-1r4b5li {
  color: var(--text-subtle);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/feedback/FeedbackOverlay.esbuild-svelte-fake-css */
.feedback-overlay.svelte-bn47rj {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.overlay-grid.svelte-bn47rj {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.6rem;
}
.actions.svelte-bn47rj {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.status-cell-tag.svelte-bn47rj {
  display: inline-flex;
  align-items: center;
}
.body-copy.svelte-bn47rj,
.muted.svelte-bn47rj,
.error.svelte-bn47rj {
  margin: 0;
}
.body-copy.svelte-bn47rj {
  white-space: pre-wrap;
  line-height: 1.5;
  color: white;
}
.muted.svelte-bn47rj {
  color: var(--text-subtle);
}
.error.svelte-bn47rj {
  color: var(--danger-100);
}
@media (max-width: 900px) {
  .overlay-grid.svelte-bn47rj {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* fakecss:/workspace/packages/control-web-frame/src/components/audit/AuditLogFilters.esbuild-svelte-fake-css */
.filters.svelte-10vlaba {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/audit/AuditLogDetailModal.esbuild-svelte-fake-css */
.audit-log-detail-overlay.svelte-jan6nz {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.empty-state.svelte-jan6nz {
  padding: 1rem 0.5rem;
  color: #6a6f7c;
}
.op-tag.svelte-jan6nz {
  display: inline-flex;
  align-items: center;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/audit/AuditLogTable.esbuild-svelte-fake-css */
.status-cell-tag.svelte-mmip7l {
  display: inline-flex;
  align-items: center;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/components/billing/BillingPlanPreviewOverlay.esbuild-svelte-fake-css */
.plan-preview-overlay.svelte-cnmsky {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card-wrap.svelte-cnmsky {
  max-width: 680px;
  width: 100%;
}
.hint.svelte-cnmsky {
  margin: 0;
  color: var(--text-subtle);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/components/billing/BillingPlansSection.esbuild-svelte-fake-css */
.hint.svelte-pnu33e {
  margin: 0;
  color: var(--text-80);
}
.status-cell-tag.svelte-pnu33e {
  display: inline-flex;
  align-items: center;
}
.status-select {
  min-width: 180px;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/display/UserProfileBubble.esbuild-svelte-fake-css */
.kw-user-profile-bubble.svelte-1iovdh7 {
  --kw-user-profile-bubble-size: 46px;
  width: var(--kw-user-profile-bubble-size);
  min-width: var(--kw-user-profile-bubble-size);
  height: var(--kw-user-profile-bubble-size);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--text-100, #102033) 18%, transparent);
  background: color-mix(in srgb, var(--bg-300, #0b1a2b) 70%, transparent);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-invers-100, #2f4858);
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  flex-shrink: 0;
}
.kw-user-profile-bubble.has-image.svelte-1iovdh7 {
  background: color-mix(in srgb, var(--bg-300, #0b1a2b) 24%, transparent);
  border-color: color-mix(in srgb, var(--text-100, #102033) 12%, transparent);
}
.kw-user-profile-bubble.is-emphasized.svelte-1iovdh7:not(.has-image) {
  border-color: var(--text-invers-100, #2f4858);
}
.kw-user-profile-bubble.svelte-1iovdh7 img:where(.svelte-1iovdh7) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kw-user-profile-bubble.svelte-1iovdh7 span:where(.svelte-1iovdh7) {
  font-size: calc(var(--kw-user-profile-bubble-size) * 0.4);
  line-height: 1;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/users/PermissionsGrid.esbuild-svelte-fake-css */
.permissions-grid.svelte-y4oykz {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section.svelte-y4oykz {
  border: 1px solid var(--bg-100);
  padding: 0.75rem 0.9rem;
  background: var(--surface-50);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.section-body.svelte-y4oykz {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.6rem;
}
.perm-row.svelte-y4oykz {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.6rem;
  align-items: center;
}
.inverted.svelte-y4oykz .perm-row:where(.svelte-y4oykz) {
  color: var(--text-100, #d5d8df);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/users/UserCreateOverlay.esbuild-svelte-fake-css */
.user-create.svelte-bja9na {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.4rem;
}
.form-grid.svelte-bja9na {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.user-create.svelte-bja9na .row:where(.svelte-bja9na) {
  padding: 0;
}
.hint.muted.svelte-bja9na {
  color: var(--text-100);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/users/UsersRow.esbuild-svelte-fake-css */
.state-row.svelte-utltoz {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.status-cell-tag.svelte-utltoz {
  display: inline-flex;
  align-items: center;
}
.profile-cell.svelte-utltoz {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/components/admin/GraphsRow.esbuild-svelte-fake-css */
.graphs-row.svelte-1reui5r {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.graphs-table.svelte-1reui5r {
  margin-top: 0.6rem;
}
.file-input.svelte-1reui5r {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.muted.svelte-1reui5r {
  color: color-mix(in srgb, var(--text-invers-100) 60%, transparent);
}
.empty-state.svelte-1reui5r {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.6rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--grey-050, #f7f8fb) 75%, var(--neutral-white));
  border: 1px solid color-mix(in srgb, var(--primary-100) 35%, transparent);
}
.empty-state.svelte-1reui5r p:where(.svelte-1reui5r) {
  margin: 0;
  color: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
}
.hint.svelte-1reui5r {
  margin: 0.4rem 0 0;
  color: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
}
.hint.error.svelte-1reui5r {
  color: var(--danger-500);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/phone/AssignPhoneNumberModal.esbuild-svelte-fake-css */
.assign-modal.svelte-1f6fhzu {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.modal-actions.svelte-1f6fhzu {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/phone/InboundPhoneNumberWizard.esbuild-svelte-fake-css */
.wizard.svelte-15t8tck {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.step.svelte-15t8tck {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.step.svelte-15t8tck p:where(.svelte-15t8tck) {
  color: var(--text-100);
}
.step.svelte-15t8tck .status-line:where(.svelte-15t8tck) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.step.svelte-15t8tck .status-pill:where(.svelte-15t8tck) {
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-weight: 600;
  background: color-mix(in srgb, var(--text-100) 10%, transparent);
  color: var(--text-100);
}
.step.svelte-15t8tck .status-pill.verified:where(.svelte-15t8tck) {
  background: color-mix(in srgb, var(--green-500, #16a34a) 20%, transparent);
  color: var(--green-600, #15803d);
}
.step.svelte-15t8tck .checked-at:where(.svelte-15t8tck) {
  color: color-mix(in srgb, var(--text-100) 70%, transparent);
  font-size: 0.95rem;
}
.step.svelte-15t8tck .code-box:where(.svelte-15t8tck) {
  padding: 0.6rem;
  background: transparent;
  border: 1px solid var(--text-100);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--text-100);
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.step.svelte-15t8tck .actions:where(.svelte-15t8tck) {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.step.svelte-15t8tck .error-text:where(.svelte-15t8tck) {
  color: var(--red-300);
  margin: 0;
}
.step.svelte-15t8tck .selection-note:where(.svelte-15t8tck) {
  margin: 0;
  color: color-mix(in srgb, var(--text-100) 70%, transparent);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/phone/TwilioInboundWizard.esbuild-svelte-fake-css */
.wizard.svelte-155ydn9 {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.step.svelte-155ydn9 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.step.svelte-155ydn9 p:where(.svelte-155ydn9) {
  color: var(--text-100);
}
.step.svelte-155ydn9 .actions:where(.svelte-155ydn9) {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.step.svelte-155ydn9 .error-text:where(.svelte-155ydn9) {
  color: var(--red-300);
  margin: 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/phone/PhoneNumbersSection.esbuild-svelte-fake-css */
.phone-section.svelte-q977z2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hint.svelte-q977z2 {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg-300) 70%, #fff 30%);
  border: 1px dashed color-mix(in srgb, var(--text-invers-100) 16%, transparent);
}
.hint.error.svelte-q977z2 {
  color: var(--red-300);
}
.hint.muted.svelte-q977z2 {
  color: color-mix(in srgb, var(--text-100) 65%, transparent);
}
.status-cell-group.svelte-q977z2 {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.status-cell-tag.svelte-q977z2 {
  display: inline-flex;
  align-items: center;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/pages/Management/tabs/LegalDocumentCreateOverlay.esbuild-svelte-fake-css */
.legal-document-overlay.svelte-1miaqvz {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  min-width: min(640px, 92vw);
}
.row.column.svelte-1miaqvz {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hint.svelte-1miaqvz {
  margin: 0;
  color: #666;
  font-size: 0.85rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/pages/Management/tabs/LegalDocumentOrganizationsOverlay.esbuild-svelte-fake-css */
.overlay-loading.svelte-8h3847 {
  padding: 1rem;
}
.table-text-with-sr-meta.svelte-8h3847 {
  display: inline;
}
.sr-only.svelte-8h3847 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/pages/Management/tabs/LegalDocumentsTab.esbuild-svelte-fake-css */
.row-action-stack.svelte-5ebx1j {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-wrap: wrap;
}
.status-cell-tag.svelte-5ebx1j {
  display: inline-flex;
  align-items: center;
}
.table-text-with-sr-meta.svelte-5ebx1j {
  display: inline;
}
.sr-only.svelte-5ebx1j {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/pages/Management/tabs/HintTemplateOverlay.esbuild-svelte-fake-css */
.hint-template-overlay.svelte-1poizj2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  min-width: min(700px, 92vw);
}
.row.column.svelte-1poizj2 {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.modal-section.actions.svelte-1poizj2 {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/pages/Management/tabs/HintsTab.esbuild-svelte-fake-css */
.hints-tab.svelte-14nazes .empty-state {
  padding: 20px 16px;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/Homepage.esbuild-svelte-fake-css */
.homepage.svelte-12vzbvn {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}
.homepage__body.svelte-12vzbvn {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.homepage__feedback-row.svelte-12vzbvn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--bg-100);
  background: color-mix(in srgb, var(--bg-100) 3%, transparent);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.homepage__feedback-row.svelte-12vzbvn:hover {
  background: color-mix(in srgb, var(--bg-100) 7%, transparent);
}
.homepage__feedback-left.svelte-12vzbvn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-invers-100) !important;
}
.homepage__feedback-right.svelte-12vzbvn {
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-invers-100) !important;
}
@media (max-width: 768px) {
  .homepage__feedback-row.svelte-12vzbvn {
    padding: 0.9rem 1rem;
  }
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/pages/Stats/tabs/HomeTab.esbuild-svelte-fake-css */
.feedback-preview.svelte-194azir {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.muted.svelte-194azir {
  margin: 0;
  color: var(--text-60);
}
.timestamp.svelte-194azir {
  color: var(--text-80);
  font-variant-numeric: tabular-nums;
}
.description.svelte-194azir {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  color: var(--text-90);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/analytics/sessions/components/ProjectSessionsHeader.esbuild-svelte-fake-css */
.sessions-header__title-row.svelte-h567ff {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 0.6rem;
  width: 100%;
}
.sessions-header.svelte-h567ff {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sessions-header.svelte-h567ff .row--expert:where(.svelte-h567ff) {
  margin-top: 1.2rem;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/analytics/sessions/components/charts/DashboardNumberBlock.esbuild-svelte-fake-css */
.totals-grid.svelte-thxfm8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 0.6rem;
}
.totals-card.svelte-thxfm8 {
  padding: 4px 8px;
  background: var(--bg-100);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.totals-card__label.svelte-thxfm8 {
  font-weight: 600;
  color: white !important;
}
.totals-card__value.svelte-thxfm8 {
  font-size: 1.2rem;
  font-weight: 800;
  color: white !important;
}
.totals-card__value-group.svelte-thxfm8 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  min-width: 0;
}
.totals-card__info.svelte-thxfm8 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: help;
  flex: 0 0 auto;
}
.totals-card__info.svelte-thxfm8:hover,
.totals-card__info.svelte-thxfm8:focus-visible {
  color: white;
}
.totals-card__info.svelte-thxfm8:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/analytics/sessions/ProjectSessionsTable.esbuild-svelte-fake-css */
.sessions.svelte-1g5muyx {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sessions__state.svelte-1g5muyx {
  padding: 0.8rem;
  border-radius: 0.6rem;
  background: color-mix(in srgb, var(--bg-200) 70%, transparent);
}
.sessions__state.error.svelte-1g5muyx {
  border: 1px solid rgba(255, 106, 99, 0.6);
  color: #ff6a63;
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/AnalyticsStatisticsHeader.esbuild-svelte-fake-css */
.analytics-header.svelte-x83kai {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.row--basic.svelte-x83kai,
.row--expert.svelte-x83kai {
  align-items: stretch;
  row-gap: 1rem;
  column-gap: 0.85rem;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/charts/components/Gauge.esbuild-svelte-fake-css */
.gauge-shell.svelte-12pqn78 {
  --gauge-text: var(--text-100);
  --gauge-muted: color-mix(in srgb, var(--text-100) 85%, transparent);
  position: relative;
  display: grid;
  place-items: center;
  padding: 0.15rem 0;
}
.gauge-shell[data-theme=light].svelte-12pqn78 {
  --gauge-text: var(--text-invers-100);
  --gauge-muted: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
}
.gauge-shell[data-size=md].svelte-12pqn78 {
  --gauge-w: 140px;
  --gauge-h: 110px;
  --gauge-scale: 1.3;
  --gauge-value-size: 1rem;
  --gauge-percent-size: 0.9rem;
}
.gauge-shell[data-size=sm].svelte-12pqn78 {
  --gauge-w: 120px;
  --gauge-h: 94px;
  --gauge-scale: 1.15;
  --gauge-value-size: 1rem;
  --gauge-percent-size: 0.82rem;
}
.gauge.svelte-12pqn78 {
  width: var(--gauge-w);
  height: var(--gauge-h);
  transform: scale(var(--gauge-scale));
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.22));
}
.gauge__track.svelte-12pqn78 {
  stroke: color-mix(in srgb, var(--primary-100) 22%, transparent);
  opacity: 0.9;
}
.gauge__value.svelte-12pqn78 {
  stroke: var(--primary-100);
  opacity: 1;
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--primary-100) 45%, transparent));
}
.gauge-center.svelte-12pqn78 {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(3px);
  pointer-events: none;
  text-align: center;
  gap: 0.15rem;
}
.gauge-center__value.svelte-12pqn78 {
  font-size: var(--gauge-value-size);
  font-weight: 750;
  line-height: 1;
  margin-top: 0.15rem;
  color: var(--gauge-text);
}
.gauge-center__percent.svelte-12pqn78 {
  font-size: var(--gauge-percent-size);
  color: var(--gauge-muted);
  line-height: 1;
  transform: translateY(10px);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/charts/components/KpiGaugeCard.esbuild-svelte-fake-css */
.kpi-card.svelte-kv3wsm {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.25rem 0.1rem;
  min-height: 176px;
}
.kpi-card__head.svelte-kv3wsm {
  text-align: center;
}
.kpi-card__head.svelte-kv3wsm h4:where(.svelte-kv3wsm) {
  color: var(--text-100);
  font-size: 14px !important;
}
.kpi-card__desc.svelte-kv3wsm {
  display: block;
  margin-top: 0.15rem;
  font-size: 10px !important;
  color: color-mix(in srgb, var(--text-100) 70%, transparent);
  line-height: 1.2;
}
.kpi-card__gauge.svelte-kv3wsm {
  display: grid;
  place-items: center;
  padding: 0.15rem 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/ui/AnalyticsValueCard.esbuild-svelte-fake-css */
.value-card.svelte-1nexc6s {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 176px;
  padding: 0.35rem 0.1rem 0.15rem;
  text-align: center;
}
.value-card__head.svelte-1nexc6s {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  align-items: center;
  text-align: center;
}
.value-card__head.svelte-1nexc6s h4:where(.svelte-1nexc6s) {
  color: var(--text-100);
  font-size: 14px !important;
  text-align: center;
}
.value-card__head.svelte-1nexc6s small:where(.svelte-1nexc6s) {
  display: block;
  font-size: 10px !important;
  color: color-mix(in srgb, var(--text-100) 70%, transparent);
  line-height: 1.2;
}
.value-card__value.svelte-1nexc6s {
  flex: 1;
  display: grid;
  place-items: center;
  color: var(--text-100);
  font-size: clamp(2.4rem, 3.2vw, 3.6rem);
  line-height: 1;
  font-weight: 820;
  letter-spacing: -0.045em;
  text-align: center;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/charts/components/ChartCanvas.esbuild-svelte-fake-css */
.chart-shell.svelte-190ckvp {
  width: 100%;
  position: relative;
}
.chart-shell.svelte-190ckvp canvas:where(.svelte-190ckvp) {
  width: 100% !important;
  height: 100% !important;
}
.kw-usage-tooltip {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  opacity: 0;
  background: rgba(13, 12, 12, 0.92);
  border: 1px solid rgba(243, 238, 217, 0.28);
  border: 1px solid color-mix(in srgb, var(--text-100, #f3eed9) 28%, transparent);
  border-radius: 0;
  padding: 10px 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  color: var(--text-100, #f3eed9);
  font-family: Outfit, sans-serif;
  min-width: 160px;
  z-index: 10;
}
.kw-usage-tooltip__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--text-100, #f3eed9);
}
.kw-usage-tooltip__rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kw-usage-tooltip__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-200, #d1e7e0);
  white-space: nowrap;
}
.kw-usage-tooltip__label {
  opacity: 0.95;
}
.kw-usage-tooltip__value {
  opacity: 0.98;
  color: var(--text-100, #f3eed9);
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/ui/DashboardChartCard.esbuild-svelte-fake-css */
.header.svelte-cl2ul3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
}
.header.svelte-cl2ul3 h4:where(.svelte-cl2ul3) {
  font-size: 14px;
  color: white;
}
.header.svelte-cl2ul3 small:where(.svelte-cl2ul3) {
  font-size: 10px;
  color: white;
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/ui/AnalyticsSectionTitleRow.esbuild-svelte-fake-css */
.analytics-section-title.svelte-3mob7a {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}
.analytics-section-title__title.svelte-3mob7a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  min-width: 0;
}
.analytics-section-title__line.svelte-3mob7a {
  flex: 1;
  height: 1px;
}
.analytics-section-title__toggle.svelte-3mob7a {
  flex: 0 0 auto;
}
.analytics-section-title__link.svelte-3mob7a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  padding: 0.15rem 0;
  transition: color 0.15s ease, opacity 0.15s ease;
  flex: 0 0 auto;
}
.analytics-section-title__arrow.svelte-3mob7a {
  display: inline-flex;
  transition: transform 0.15s ease;
  transform: rotate(180deg);
}
.analytics-section-title__link.svelte-3mob7a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary-100) 55%, transparent);
  outline-offset: 0.25rem;
  border-radius: 0.35rem;
}
.analytics-section-title.dark.svelte-3mob7a .analytics-section-title__title:where(.svelte-3mob7a) {
  color: var(--text-200);
}
.analytics-section-title.dark.svelte-3mob7a .analytics-section-title__line:where(.svelte-3mob7a) {
  background: color-mix(in srgb, var(--text-200) 35%, transparent);
}
.analytics-section-title.dark.svelte-3mob7a .analytics-section-title__link:where(.svelte-3mob7a) {
  color: color-mix(in srgb, var(--text-200) 70%, transparent);
}
.analytics-section-title.light.svelte-3mob7a .analytics-section-title__title:where(.svelte-3mob7a) {
  color: color-mix(in srgb, var(--text-invers-100) 80%, transparent);
}
.analytics-section-title.light.svelte-3mob7a .analytics-section-title__line:where(.svelte-3mob7a) {
  background: color-mix(in srgb, var(--text-invers-100) 35%, transparent);
}
.analytics-section-title.light.svelte-3mob7a .analytics-section-title__link:where(.svelte-3mob7a) {
  color: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
}
.analytics-section-title.svelte-3mob7a .analytics-section-title__link:where(.svelte-3mob7a):hover {
  color: var(--primary-100);
}
@media (max-width: 600px) {
  .analytics-section-title.svelte-3mob7a {
    gap: 0.5rem;
  }
  .analytics-section-title__line.svelte-3mob7a {
    min-width: 0;
  }
  .analytics-section-title__title.svelte-3mob7a {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/sections/OverviewSection.esbuild-svelte-fake-css */
.dashboard-section.svelte-1axysh {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.overview-group.svelte-1axysh {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}
.overview-groups.svelte-1axysh {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
  gap: 0.9rem;
  align-items: stretch;
}
.headline-grid.svelte-1axysh {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
.headline-grid--overview.svelte-1axysh {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}
.headline-grid--facts.svelte-1axysh {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.headline-grid--cases.svelte-1axysh {
  grid-template-columns: minmax(0, 1fr);
}
.charts-grid.svelte-1axysh {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
.charts-grid--single.svelte-1axysh {
  grid-template-columns: minmax(0, 1fr);
}
.charts-grid--three.svelte-1axysh {
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}
@media (max-width: 1200px) {
  .overview-groups.svelte-1axysh {
    grid-template-columns: minmax(0, 1fr);
  }
  .headline-grid--facts.svelte-1axysh {
    grid-template-columns: minmax(0, 1fr);
  }
  .headline-grid--cases.svelte-1axysh {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/ui/AnalyticsHeadlineCard.esbuild-svelte-fake-css */
.headline-card.svelte-ke27hj {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 168px;
  padding: 0.25rem 0.15rem 0.1rem;
}
.headline-card__top.svelte-ke27hj {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  text-align: center;
}
.headline-card__top.svelte-ke27hj h4:where(.svelte-ke27hj) {
  font-size: 0.95rem;
  line-height: 1.15;
  color: var(--text-100);
  text-align: center;
}
.headline-card__top.svelte-ke27hj small:where(.svelte-ke27hj) {
  font-size: 0.72rem;
  line-height: 1.35;
  color: color-mix(in srgb, var(--text-100) 70%, transparent);
  text-align: center;
}
.headline-card__value.svelte-ke27hj {
  flex: 1;
  display: grid;
  place-items: center;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 1;
  font-weight: 780;
  letter-spacing: -0.02em;
  color: var(--text-100);
  text-align: center;
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/sections/ConversationFactsSection.esbuild-svelte-fake-css */
.dashboard-section.svelte-96tyvo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.headline-grid.svelte-96tyvo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 0.75rem;
  min-width: 0;
}
.charts-grid.svelte-96tyvo {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
.charts-grid--single.svelte-96tyvo {
  grid-template-columns: minmax(0, 1fr);
}
.charts-grid--two.svelte-96tyvo {
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/ui/TextProblemsTables.esbuild-svelte-fake-css */
.text-problems.svelte-h8spwj {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}
.text-problems__grid.svelte-h8spwj {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 0.75rem;
  min-width: 0;
}
.text-problems__table.svelte-h8spwj {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/sections/ConversationAnalysisSection.esbuild-svelte-fake-css */
.dashboard-section.svelte-ovgmpf {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.charts-grid.svelte-ovgmpf {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
.charts-grid--single.svelte-ovgmpf {
  grid-template-columns: minmax(0, 1fr);
}
.charts-grid--three.svelte-ovgmpf {
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/ui/ServiceFeedbackNotesCard.esbuild-svelte-fake-css */
.notes-table-panel.svelte-fgjs18 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}
.note-cell.svelte-fgjs18 {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  min-width: 0;
}
.note-cell__text.svelte-fgjs18 {
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.4;
}
.note-cell__meta.svelte-fgjs18 {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--text-300);
  font-size: 0.72rem;
  line-height: 1.25;
}
.note-cell__meta.svelte-fgjs18 small:where(.svelte-fgjs18) {
  color: var(--text-300);
  font-size: inherit;
}
.stars-cell.svelte-fgjs18 {
  color: #f59e0b;
  letter-spacing: 0.08rem;
  white-space: nowrap;
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/sections/ExplicitFeedbackSection.esbuild-svelte-fake-css */
.dashboard-section.svelte-9mpfbt {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feedback-detail-grid.svelte-9mpfbt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 0.75rem;
  align-items: start;
  min-width: 0;
}
@media (max-width: 1200px) {
  .feedback-detail-grid.svelte-9mpfbt {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/sections/CaseVolumeSection.esbuild-svelte-fake-css */
.dashboard-section.svelte-i26wxq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.charts-grid.svelte-i26wxq {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
.charts-grid--single.svelte-i26wxq {
  grid-template-columns: minmax(0, 1fr);
}
.charts-grid--three.svelte-i26wxq {
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/sections/CaseSuccessSection.esbuild-svelte-fake-css */
.dashboard-section.svelte-1eyav7d {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.headline-grid.svelte-1eyav7d {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
.headline-grid--compact.svelte-1eyav7d {
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
}
.charts-grid.svelte-1eyav7d {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
.charts-grid--single.svelte-1eyav7d {
  grid-template-columns: minmax(0, 1fr);
}
.charts-grid--three.svelte-1eyav7d {
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}
.dashboard-hint.svelte-1eyav7d {
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--primary-100) 10%, var(--bg-100));
  border: 1px solid color-mix(in srgb, var(--primary-100) 18%, transparent);
  color: color-mix(in srgb, var(--text-100) 88%, transparent);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* fakecss:/workspace/packages/control-web-frame/src/logic/analytics/statistics/components/StatisticsRenderer.esbuild-svelte-fake-css */
.dashboard.svelte-1i47358 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/analytics/sections/AnalyticsStatisticsScreen.esbuild-svelte-fake-css */
.evaluation-section.svelte-14cx9az {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.state.svelte-14cx9az {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--bg-200) 65%, transparent);
  color: var(--text-100);
}
.state.error.svelte-14cx9az {
  border: 1px solid rgba(255, 106, 99, 0.45);
  background: rgba(255, 106, 99, 0.08);
  color: #ff6a63;
}
.loading-state.svelte-14cx9az {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 8rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/analytics/AnalyticsView.esbuild-svelte-fake-css */
.analytics-view.svelte-1enkc8e {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/components/admin/OrganizationOverlay.esbuild-svelte-fake-css */
.organization-overlay.svelte-1ns7svp {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  color: var(--text-invers-100);
}
.overlay-body.svelte-1ns7svp {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.overlay-section.svelte-1ns7svp {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.overlay-section.grid.svelte-1ns7svp {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/components/admin/OrganizationsRow.esbuild-svelte-fake-css */
.error-state.svelte-lqv7u {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.error-state.svelte-lqv7u span:where(.svelte-lqv7u) {
  color: color-mix(in srgb, var(--text-100) 70%, transparent);
}
.empty-state.svelte-lqv7u {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.6rem 0;
}
.empty-state.svelte-lqv7u p:where(.svelte-lqv7u) {
  margin: 0;
  color: color-mix(in srgb, var(--text-100) 70%, transparent);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/answerRulesSection/SessionAnswerRulesFilterBar.esbuild-svelte-fake-css */
.answer-rules-filters.svelte-nbc1j0 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/answerRulesSection/SessionAnswerRulesSectionTitle.esbuild-svelte-fake-css */
.toggle-wrapper.svelte-1rqn3iy {
  display: inline-flex;
  align-items: center;
}
.toggle-disabled.svelte-1rqn3iy {
  opacity: 0.55;
  pointer-events: none;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/answerRulesSection/SessionAnswerRulesTable.esbuild-svelte-fake-css */
.rule-title-cell.svelte-1cioa1x {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 180px;
  white-space: nowrap;
}
.rule-title-cell.svelte-1cioa1x span:where(.svelte-1cioa1x) {
  white-space: nowrap;
}
.category-cell.svelte-1cioa1x {
  max-width: 180px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.text-cell.svelte-1cioa1x {
  max-width: 380px;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: wrap;
  line-height: 1.35;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/answerRulesSection/SessionAnswerRuleModal.esbuild-svelte-fake-css */
.answer-rule-form.svelte-fpocqp {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: min(36rem, 80vw);
}
.row.svelte-fpocqp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
.actions.svelte-fpocqp {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/answerRulesSection/SessionAnswerRulesSection.esbuild-svelte-fake-css */
.section.svelte-p5q97s {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.file-input.svelte-p5q97s {
  display: none;
}
.answer-rules-content.svelte-p5q97s {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.disabled.svelte-p5q97s {
  opacity: 0.6;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/escalationSection/SessionEscalationSectionTitle.esbuild-svelte-fake-css */
.toggle-wrapper.svelte-uagnmw {
  display: inline-flex;
  align-items: center;
}
.toggle-disabled.svelte-uagnmw {
  opacity: 0.55;
  pointer-events: none;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/escalationSection/SessionEscalationDetailOverlay.esbuild-svelte-fake-css */
.detail-overlay.svelte-184s2i2 {
  min-width: min(560px, 90vw);
}
.detail-form.svelte-184s2i2 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.detail-overlay.dark.svelte-184s2i2 {
  color: var(--text-invers-100);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/escalationSection/SessionEscalationPresetOverlay.esbuild-svelte-fake-css */
.preset-overlay.svelte-2ohuzc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: min(520px, 90vw);
}
.intro.svelte-2ohuzc,
.muted.svelte-2ohuzc,
.error.svelte-2ohuzc,
.description.svelte-2ohuzc {
  margin: 0;
}
.preset-list.svelte-2ohuzc {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.preset-card.svelte-2ohuzc {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.6rem;
}
.description.svelte-2ohuzc {
  color: var(--kw-overlay-fg-soft, var(--text-invers-100));
}
.detail-list.svelte-2ohuzc {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  list-style: none;
}
.detail-list.svelte-2ohuzc li:where(.svelte-2ohuzc) {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.actions.svelte-2ohuzc {
  display: flex;
  justify-content: flex-end;
}
.error.svelte-2ohuzc {
  color: var(--color-danger-500, #c62828);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/availabilityPolicies/AvailabilityPolicyEditor.esbuild-svelte-fake-css */
.availability-policy-editor.svelte-lfunka {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: var(--text-invers-100);
}
.compact.svelte-lfunka {
  gap: 0.75rem;
}
.inactive-state.svelte-lfunka {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
}
.inactive-hint.svelte-lfunka {
  margin: 0;
  opacity: 0.7;
  text-align: center;
}
.days-grid.svelte-lfunka {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}
.day-body.svelte-lfunka {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.6rem;
}
.exceptions-body.svelte-lfunka {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.6rem;
}
.closed-date-section.svelte-lfunka {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.windows-list.svelte-lfunka {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.windows-list.svelte-lfunka .row:where(.svelte-lfunka) {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.closed-date-controls.svelte-lfunka {
  display: grid;
  gap: 0.6rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}
.closed-date-list.svelte-lfunka {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.closed-date-chip.svelte-lfunka {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--bg-100);
  background: transparent;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  color: inherit;
}
.closed-date-chip.svelte-lfunka:hover .chip-remove:where(.svelte-lfunka) {
  opacity: 1;
}
.chip-remove.svelte-lfunka {
  opacity: 0.5;
  font-size: 0.8em;
}
.empty-state.svelte-lfunka {
  margin: 0;
  opacity: 0.75;
}
.error-text.svelte-lfunka {
  margin: 0;
  color: var(--negative-100, #d9415d);
}
@media (max-width: 720px) {
  .closed-date-controls.svelte-lfunka {
    grid-template-columns: 1fr;
  }
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/escalationSection/SessionEscalationTargetOverlay.esbuild-svelte-fake-css */
.target-overlay.svelte-18jx9k6 {
  min-width: min(640px, 90vw);
}
.custom-hours.svelte-18jx9k6 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/escalationSection/SessionEscalationModal.esbuild-svelte-fake-css */
.session-escalation-form.svelte-y1cls {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.row.svelte-y1cls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
.footer.svelte-y1cls {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}
.detail-actions.svelte-y1cls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hint.svelte-y1cls {
  margin: 0;
  color: var(--colorFontGrey);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/escalationSection/SessionEscalationTable.esbuild-svelte-fake-css */
.escalation-content.svelte-pj3u6f {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.escalation-filters.svelte-pj3u6f {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}
.channel-cell.svelte-pj3u6f {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}
.rule-title-cell.svelte-pj3u6f {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100px;
  flex-wrap: wrap;
}
.rule-title-cell.svelte-pj3u6f span:where(.svelte-pj3u6f) {
  text-wrap: break-word;
  white-space: normal;
}
.action-cell.svelte-pj3u6f {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}
.contact-profile-cell.svelte-pj3u6f {
  max-width: 180px;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: help;
}
.details-cell.svelte-pj3u6f {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}
.ordered-action-row.svelte-pj3u6f {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.action-order.svelte-pj3u6f {
  min-width: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-invers-100);
}
.when-cell.svelte-pj3u6f {
  max-width: 300px;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: wrap;
  line-height: 1.35;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/escalationSection/SessionEscalationSection.esbuild-svelte-fake-css */
.section.svelte-r04i6e {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/secretsSection/SessionSecretModal.esbuild-svelte-fake-css */
.secret-overlay.svelte-1tp0cyx {
  min-width: min(720px, 95vw);
}
.secret-form.svelte-1tp0cyx {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.secret-grid.svelte-1tp0cyx {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.secret-input.svelte-1tp0cyx {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.helper.svelte-1tp0cyx {
  margin: 0;
  font-size: 0.9rem;
  color: var(--kw-text-50, #6b7280);
}
.muted.svelte-1tp0cyx {
  color: var(--kw-text-40, #9ca3af);
}
.secret-overlay.dark.svelte-1tp0cyx {
  color: var(--text-invers-100);
}
.secret-overlay.dark.svelte-1tp0cyx .helper:where(.svelte-1tp0cyx) {
  color: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
}
.secret-overlay.dark.svelte-1tp0cyx .muted:where(.svelte-1tp0cyx) {
  color: color-mix(in srgb, var(--text-invers-100) 55%, transparent);
}
.secret-overlay.dark.svelte-1tp0cyx code:where(.svelte-1tp0cyx) {
  color: var(--text-invers-100);
}
@media (max-width: 720px) {
  .secret-grid.svelte-1tp0cyx {
    grid-template-columns: 1fr;
  }
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/secretsSection/SessionSecretsSection.esbuild-svelte-fake-css */
.section.svelte-1of5bmw {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.toggle-wrapper.svelte-1of5bmw {
  display: inline-flex;
  align-items: center;
}
.toggle-disabled.svelte-1of5bmw {
  opacity: 0.55;
  pointer-events: none;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/sessionConfig/SessionConfigForm.esbuild-svelte-fake-css */
.session-config.svelte-1ltlnzx {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cta.icon-first {
  gap: 0.45rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/pages/Settings/tabs/SecretsTab.esbuild-svelte-fake-css */
.twilio-section.svelte-u8ufwp {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.twilio-section__block.svelte-u8ufwp {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/widgetConfig/LogoUploadField.esbuild-svelte-fake-css */
.logo-upload-field.svelte-12zhcpx {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.logo-upload-field.disabled.svelte-12zhcpx {
  opacity: 0.6;
  pointer-events: none;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) {
  border-radius: 4px;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--bg-900) 6%, transparent);
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .preview-stack:where(.svelte-12zhcpx) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .preview-button:where(.svelte-12zhcpx) {
  position: relative;
  width: 112px;
  height: 112px;
  min-width: 112px;
  border-radius: 50%;
  border: 1px solid var(--bg-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .preview-button:where(.svelte-12zhcpx):disabled {
  cursor: not-allowed;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .preview-button:where(.svelte-12zhcpx):not(:disabled):hover {
  transform: translateY(-1px);
  border-color: var(--primary-100);
  box-shadow: 0 14px 32px var(--primary-900);
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .preview-button:where(.svelte-12zhcpx):focus-visible {
  outline: 3px solid var(--primary-100);
  outline-offset: 2px;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .preview-button:where(.svelte-12zhcpx) .preview-image:where(.svelte-12zhcpx) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .preview-button:where(.svelte-12zhcpx) .placeholder:where(.svelte-12zhcpx) {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background-color: transparent !important;
  color: color-mix(in srgb, var(--text-invers-100) 65%, transparent);
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .preview-button:where(.svelte-12zhcpx) .edit-indicator:where(.svelte-12zhcpx) {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-200);
  color: #fff;
  display: grid;
  place-items: center;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .preview-button.rectangular:where(.svelte-12zhcpx) {
  width: 160px;
  height: 96px;
  min-width: 160px;
  border-radius: 4px;
  padding: 8px 10px;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .preview-button.rectangular:where(.svelte-12zhcpx) .preview-image:where(.svelte-12zhcpx) {
  object-fit: contain;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .logo-body:where(.svelte-12zhcpx) {
  display: grid;
  gap: 0.55rem;
  align-self: stretch;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .body-grid:where(.svelte-12zhcpx) {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr);
  gap: 0.9rem 1.25rem;
  align-items: stretch;
}
@media (max-width: 640px) {
  .logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .body-grid:where(.svelte-12zhcpx) {
    grid-template-columns: 1fr;
  }
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .box-cell:where(.svelte-12zhcpx) {
  width: 100%;
  height: 100%;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .box-main:where(.svelte-12zhcpx) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 640px) {
  .logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .box-main:where(.svelte-12zhcpx) {
    align-items: flex-start;
  }
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .box-copy:where(.svelte-12zhcpx) {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .logo-actions:where(.svelte-12zhcpx) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .helper-text:where(.svelte-12zhcpx) {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-invers-100);
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .alt-input:where(.svelte-12zhcpx) {
  width: min(520px, 100%);
}
.logo-upload-field.svelte-12zhcpx .logo-row:where(.svelte-12zhcpx) .error:where(.svelte-12zhcpx) {
  margin: 0.1rem 0 0;
  font-size: 0.82rem;
  color: var(--red-300, #dc2626);
}
.visually-hidden.svelte-12zhcpx {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/components/settings/SessionCorsModal.esbuild-svelte-fake-css */
.cors-overlay.svelte-1rua2ke {
  min-width: min(540px, 90vw);
}
.cors-form.svelte-1rua2ke {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.cors-overlay.dark.svelte-1rua2ke {
  color: var(--text-invers-100);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/components/settings/SessionCorsSection.esbuild-svelte-fake-css */
.hint.svelte-19u6dpc {
  color: var(--text-invers-100);
}
code.svelte-19u6dpc {
  word-break: break-all;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/components/settings/SaasSettingsSection.esbuild-svelte-fake-css */
.settings-block.svelte-12iejw4 {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.settings-block.svelte-12iejw4 .error:where(.svelte-12iejw4) {
  margin: 0;
  color: var(--error-100);
}
.cors-row.svelte-12iejw4 {
  display: block;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/components/settings/MailPreviewOverlay.esbuild-svelte-fake-css */
.mail-preview-overlay.svelte-11i8xch {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-100);
}
.mail-preview-overlay.svelte-11i8xch .error:where(.svelte-11i8xch) {
  margin: 0;
  color: var(--danger-500);
}
.preview-frame.svelte-11i8xch {
  width: 100%;
  min-height: 620px;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--text-invers-100) 18%, transparent);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
  background: #fff;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AdminView/components/settings/MailSettingsSection.esbuild-svelte-fake-css */
.settings-block.svelte-kacbvd {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.settings-block.svelte-kacbvd .error:where(.svelte-kacbvd) {
  margin: 0;
  color: var(--error-100);
}
.dialog-actions.svelte-kacbvd {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/AnalyticsStatisticsView/AnalyticsStatisticsViewFrame.esbuild-svelte-fake-css */
.state-block.svelte-e6t2uu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.state-block.svelte-e6t2uu p:where(.svelte-e6t2uu) {
  margin: 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Billing/tabs/CheckoutTab.esbuild-svelte-fake-css */
.state-block.svelte-6px1tu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.checkout-callout.svelte-6px1tu {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--bg-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.checkout-title.svelte-6px1tu {
  margin: 0;
  font-weight: 700;
  color: var(--text-invers-100);
}
.checkout-desc.svelte-6px1tu {
  margin: 0.25rem 0 0;
  color: var(--text-invers-100);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Billing/components/BillingUsageDailyChart.esbuild-svelte-fake-css */
.chart-card.svelte-n0bc4y {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.usage-card__header.svelte-n0bc4y {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 0.2rem 0 0.85rem;
  text-align: center;
}
.usage-card__header.svelte-n0bc4y h4:where(.svelte-n0bc4y) {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-100);
}
.usage-card__header.svelte-n0bc4y small:where(.svelte-n0bc4y) {
  font-size: 10px;
  font-weight: 700;
  color: color-mix(in srgb, var(--text-100) 78%, transparent);
}
.usage-card__chart.svelte-n0bc4y {
  position: relative;
  height: 240px;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Billing/components/BillingStatsTab.esbuild-svelte-fake-css */
.state-block.svelte-1kgcfbk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Billing/tabs/StatsTab.esbuild-svelte-fake-css */
.header-actions.svelte-127gadb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.usage-filters.svelte-127gadb {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Billing/components/BillingPortalTab.esbuild-svelte-fake-css */
.state-block.svelte-5e3btt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.plans-grid.svelte-5e3btt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.plan-notice.svelte-5e3btt {
  margin: 0.8rem 0 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--grey-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.plan-notice.svelte-5e3btt .title:where(.svelte-5e3btt) {
  margin: 0;
  font-weight: 700;
  color: var(--text-invers-100);
}
.plan-notice.svelte-5e3btt .desc:where(.svelte-5e3btt) {
  margin: 0.2rem 0 0;
  color: var(--text-invers-100);
}
.plan-notice.scheduled.svelte-5e3btt {
  border-color: color-mix(in srgb, var(--primary-100) 35%, var(--grey-300));
  background: color-mix(in srgb, var(--primary-100) 8%, transparent);
}
.plan-slot.svelte-5e3btt {
  position: relative;
}
.plan-slot.pick.svelte-5e3btt {
  outline: 2px solid var(--primary-100);
  outline-offset: 3px;
}
.plan-badge.svelte-5e3btt {
  position: absolute;
  top: 0.6rem;
  left: 1.4rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-100, #ffffff);
  border: 1px solid var(--grey-300);
  color: var(--text-500);
  z-index: 2;
}
.plan-badge.active.svelte-5e3btt {
  background: var(--confirm-100);
  border-color: var(--confirm-100);
  color: #ffffff;
}
.plan-badge.assigned.svelte-5e3btt {
  background: color-mix(in srgb, var(--primary-100) 12%, var(--bg-100, #ffffff));
  border-color: color-mix(in srgb, var(--primary-100) 35%, var(--grey-300));
  color: var(--text-500);
}
.plan-badge.scheduled.svelte-5e3btt {
  background: color-mix(in srgb, var(--primary-100) 15%, var(--bg-100, #ffffff));
  border-color: var(--primary-100);
  color: var(--text-500);
}
.hint.svelte-5e3btt {
  margin: 0;
  margin-top: 1.2rem;
  color: var(--text-invers-100);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Billing/tabs/PortalTab.esbuild-svelte-fake-css */
.header-actions.svelte-19z0n58 {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/feedback/FeedbackTable.esbuild-svelte-fake-css */
.feedback-table.svelte-31khpn {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.empty-state.svelte-31khpn {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  color: color-mix(in srgb, var(--text-100) 80%, transparent);
}
.muted.svelte-31khpn {
  color: var(--text-subtle);
}
.status-cell-tag.svelte-31khpn {
  display: inline-flex;
  align-items: center;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/contactProfiles/ContactProfileServiceHoursOverlay.esbuild-svelte-fake-css */
.contact-profile-service-hours-overlay.svelte-aodlbo {
  min-width: min(640px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer.svelte-aodlbo {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/contactProfiles/ContactProfileOverlay.esbuild-svelte-fake-css */
.contact-profile-overlay.svelte-1lna3c6 {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.row.svelte-1lna3c6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.single-row.svelte-1lna3c6 {
  display: grid;
  grid-template-columns: 1fr;
}
.address-grid.svelte-1lna3c6 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
.footer.svelte-1lna3c6 {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.service-hours-summary.svelte-1lna3c6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.service-hours-preview.svelte-1lna3c6 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: min(420px, 100%);
}
.service-hours-preview.svelte-1lna3c6 span:where(.svelte-1lna3c6) {
  color: var(--colorFontGrey);
  line-height: 1.35;
}
@media (max-width: 900px) {
  .address-grid.svelte-1lna3c6 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* fakecss:/workspace/packages/control-web-frame/src/components/contactProfiles/ContactProfilesSection.esbuild-svelte-fake-css */
.contact-profiles.svelte-18ex0p2 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.state.svelte-18ex0p2 {
  margin: 0;
  padding: 1rem;
  color: var(--colorFontGrey);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Management/tabs/MicrosoftConnectionDeleteOverlay.esbuild-svelte-fake-css */
.overlay.svelte-7x9jyi {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hint.svelte-7x9jyi,
.muted.svelte-7x9jyi {
  margin: 0;
  color: var(--text-100);
}
.table-wrap.svelte-7x9jyi {
  margin-top: 0.8rem;
}
.info.svelte-7x9jyi {
  margin: 0;
  color: var(--success-600, #2e7d32);
}
.error.svelte-7x9jyi {
  margin: 0;
  color: var(--danger-600, #c62828);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Management/tabs/MicrosoftConnectionOverlay.esbuild-svelte-fake-css */
.overlay.svelte-5nzb17 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-invers-100);
}
.intro.svelte-5nzb17 {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.row.svelte-5nzb17 {
  width: 100%;
}
.row.two.svelte-5nzb17 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}
.hint.svelte-5nzb17 {
  margin: 0;
  color: var(--text-invers-100);
}
.error.svelte-5nzb17 {
  margin: 0;
  color: var(--danger-600, #c62828);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Management/tabs/MicrosoftSiteGrantWizardOverlay.esbuild-svelte-fake-css */
.wizard-overlay.svelte-1xzqf1r {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-100);
}
.form-grid.svelte-1xzqf1r {
  display: grid;
  gap: 0.85rem;
}
.hint.svelte-1xzqf1r {
  margin: 0;
  color: var(--text-100);
}
.code.svelte-1xzqf1r {
  margin: 0;
  padding: 0.85rem 1rem;
  background: color-mix(in srgb, var(--bg-100) 88%, black 12%);
  border: 1px solid color-mix(in srgb, var(--text-100) 16%, transparent);
  color: var(--text-100);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}
.info.svelte-1xzqf1r,
.error.svelte-1xzqf1r {
  margin: 0;
}
.info.svelte-1xzqf1r {
  color: var(--success-500, #2e7d32);
}
.error.svelte-1xzqf1r {
  color: var(--danger-600, #c62828);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Management/tabs/IntegrationsTab.esbuild-svelte-fake-css */
.integrations.svelte-4oxpp5 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.actionButtons.svelte-4oxpp5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}
.muted.svelte-4oxpp5 {
  margin: 0;
  color: var(--text-invers-100);
}
.site-mode-modal.svelte-4oxpp5 {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: var(--text-100);
}
.modal-copy.svelte-4oxpp5 {
  margin: 0;
  color: var(--text-100);
}
.modal-actions.svelte-4oxpp5 {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Management/tabs/LegalDocumentsTab.esbuild-svelte-fake-css */
.row-action-stack.svelte-1qy9qy7 {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-wrap: wrap;
}
.status-cell-tag.svelte-1qy9qy7 {
  display: inline-flex;
  align-items: center;
}
.table-text-with-sr-meta.svelte-1qy9qy7 {
  display: inline;
}
.sr-only.svelte-1qy9qy7 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.accept-dialog.svelte-1qy9qy7 {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.accept-dialog.svelte-1qy9qy7 p:where(.svelte-1qy9qy7) {
  margin: 0;
  color: var(--text-100);
}
.accept-actions.svelte-1qy9qy7 {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}
.accept-error.svelte-1qy9qy7 {
  color: var(--error-100, #b42318);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Overview/tabs/HomeTab.esbuild-svelte-fake-css */
.notifications-preview.svelte-143nqvt {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Projects/components/CreateProjectOverlay.esbuild-svelte-fake-css */
.project-overlay.svelte-df0m9l {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  color: var(--text-invers-100);
}
.form-section.svelte-df0m9l {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.form-section.full-width.svelte-df0m9l {
  grid-template-columns: 1fr;
}
.graph-warning.svelte-df0m9l {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--warning-100) 30%, var(--neutral-white));
  color: color-mix(in srgb, var(--warning-500, #a15c07) 80%, var(--text-invers-100) 30%);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Projects/components/EditProjectOverlay.esbuild-svelte-fake-css */
.project-overlay.svelte-179lb5x {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  color: var(--text-invers-100);
}
.rerouting-hint.svelte-179lb5x {
  margin: -0.6rem 0 0;
  color: var(--text-invers-70);
  font-size: 0.85rem;
}
.rerouting-hint.warning.svelte-179lb5x {
  color: var(--status-warning, #f59e0b);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Projects/components/ProjectAdminLinkCell.esbuild-svelte-fake-css */
.table-inline-actions.svelte-9k219e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.muted.svelte-9k219e {
  color: color-mix(in srgb, var(--text-invers-100) 65%, transparent);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Projects/components/ProjectsRow.esbuild-svelte-fake-css */
.projects-table.svelte-v596hc {
  margin-top: 0.6rem;
}
.empty-state.svelte-v596hc {
  color: var(--text-invers-100);
}
.name-cell.svelte-v596hc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.status-cell-tag.svelte-v596hc {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/ProjectsPage.esbuild-svelte-fake-css */
.state-block.svelte-1pybior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.state-block.svelte-1pybior p:where(.svelte-1pybior) {
  margin: 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Settings/tabs/GeneralTab.esbuild-svelte-fake-css */
.state-block.svelte-1i52rp2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.state-block.svelte-1i52rp2 p:where(.svelte-1i52rp2) {
  margin: 0;
}
.file-input.svelte-1i52rp2 {
  display: none;
}
.form.svelte-1i52rp2 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.row.svelte-1i52rp2 {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.row--triple.svelte-1i52rp2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .row--triple.svelte-1i52rp2 {
    grid-template-columns: 1fr;
  }
}
.section-fields.svelte-1i52rp2 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.section-hint.svelte-1i52rp2 {
  margin: 0;
  color: var(--text-invers-100);
}
.section-hint.warning.svelte-1i52rp2 {
  color: var(--warning-500, #b45309);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Settings/tabs/SendGridProviderOverlay.esbuild-svelte-fake-css */
.overlay.svelte-19uo4v6 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-invers-100);
  min-width: min(720px, 95vw);
}
.intro.svelte-19uo4v6 {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.row.svelte-19uo4v6 {
  width: 100%;
}
.row.two.svelte-19uo4v6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}
.hint.svelte-19uo4v6 {
  margin: 0;
  color: var(--text-invers-100);
}
.error.svelte-19uo4v6 {
  margin: 0;
  color: var(--danger-600, #c62828);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Settings/tabs/TwilioProviderOverlay.esbuild-svelte-fake-css */
.overlay.svelte-1b9vs3o {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-100);
}
.intro.svelte-1b9vs3o {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.row.svelte-1b9vs3o {
  width: 100%;
}
.row.two.svelte-1b9vs3o {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}
.hint.svelte-1b9vs3o {
  margin: 0;
  color: var(--text-100);
}
.error.svelte-1b9vs3o {
  margin: 0;
  color: var(--danger-600, #c62828);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/OrgaView/pages/Settings/tabs/ProvidersTab.esbuild-svelte-fake-css */
.provider-tab.svelte-zt5o9c {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.provider-message.svelte-zt5o9c {
  margin: 0;
  color: var(--text-500);
}
.provider-error.svelte-zt5o9c {
  color: var(--error, #b42318);
}
.details-cell.svelte-zt5o9c {
  display: inline-block;
  max-width: 42rem;
  color: var(--text-500);
}
.provider-modal.svelte-zt5o9c {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-copy.svelte-zt5o9c {
  margin: 0;
  color: var(--text-500);
}
.modal-actions.svelte-zt5o9c {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.impact-grid.svelte-zt5o9c {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.impact-grid.svelte-zt5o9c ul:where(.svelte-zt5o9c) {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/danger/DeleteImportantRessource.esbuild-svelte-fake-css */
.danger-zone.svelte-1s0erqy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.danger-inputs.svelte-1s0erqy {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.6rem;
}
.twofactor-info.svelte-1s0erqy {
  margin: 0;
  color: color-mix(in srgb, var(--text-100) 75%, transparent);
  font-size: 0.95rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/adminLinks/SystemAdminLinkButtons.esbuild-svelte-fake-css */
.system-admin-link-buttons.svelte-lzavqk {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UserView/components/UserTabState.esbuild-svelte-fake-css */
.state-block.svelte-1rm14f3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.state-block.svelte-1rm14f3 p:where(.svelte-1rm14f3) {
  margin: 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UserView/pages/General/tabs/ProfileTab.esbuild-svelte-fake-css */
.form.svelte-lgl77y {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.actions.svelte-lgl77y {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UserView/pages/General/tabs/PasswordTab.esbuild-svelte-fake-css */
.actions.svelte-18ld8gi {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UserView/components/UserTwoFactorOverlay.esbuild-svelte-fake-css */
.two-factor-overlay.svelte-1qv6pfq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info.svelte-1qv6pfq,
.error.svelte-1qv6pfq {
  margin: 0;
  font-size: 0.95rem;
}
.info.svelte-1qv6pfq {
  color: var(--text-100);
}
.error.svelte-1qv6pfq {
  color: var(--danger-400);
}
.hint.svelte-1qv6pfq {
  margin: 0;
  color: var(--text-100);
  line-height: 1.35;
}
.code-form.svelte-1qv6pfq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.code-row.svelte-1qv6pfq {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UserView/components/UserEmailChangeOverlay.esbuild-svelte-fake-css */
.email-overlay.svelte-922zn3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info.svelte-922zn3,
.error.svelte-922zn3 {
  margin: 0;
  font-size: 0.95rem;
}
.info.svelte-922zn3 {
  color: var(--text-100);
}
.error.svelte-922zn3 {
  color: var(--danger-400);
}
.action-box-form.svelte-922zn3 {
  margin: 0;
}
.muted.svelte-922zn3 {
  margin: 0;
  color: var(--text-100);
}
.hint.svelte-922zn3 {
  margin: 0.15rem 0 0;
  color: var(--text-100);
  line-height: 1.35;
}
.form-grid.svelte-922zn3 {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UserView/components/DisableTwoFactorDialog.esbuild-svelte-fake-css */
.dialog-actions.svelte-17zurxt {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UserView/pages/General/tabs/SecurityTab.esbuild-svelte-fake-css */
.hint.svelte-1uh6ln3 {
  margin: 0;
  color: var(--text-invers-100);
}
.muted.svelte-1uh6ln3 {
  margin: 0;
  color: var(--text-invers-100);
}
.security-block.svelte-1uh6ln3 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/UserView/pages/PermissionsPage.esbuild-svelte-fake-css */
.form.svelte-cgw6x1 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/ProjectView/components/project/ProjectRealizationsSection.esbuild-svelte-fake-css */
.muted.svelte-1hkmzgd {
  margin: 0;
  color: color-mix(in srgb, var(--text-invers-100) 60%, transparent);
}
.lock-hint.svelte-1hkmzgd {
  font-style: italic;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/ServiceImageCTA.esbuild-svelte-fake-css */
ul.service-image-cta-list {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  ul.service-image-cta-list {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 968px) and (max-width: 1223px) {
  ul.service-image-cta-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1600px) {
  ul.service-image-cta-list {
    display: flex;
    flex-direction: row;
  }
}
ul.service-image-cta-list li.service-image-cta {
  width: 100%;
  height: var(--service-image-cta-height, 588px);
  display: flex;
  flex-direction: column;
}
ul.service-image-cta-list li.service-image-cta.hasCtaTextAndLink {
  cursor: pointer;
}
ul.service-image-cta-list li.service-image-cta .upper-content {
  position: relative;
  flex-grow: 3;
  min-height: 250px;
}
ul.service-image-cta-list li.service-image-cta .upper-content .background-image {
  z-index: 1;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--bg-100);
  transition:
    flex 0.5s ease,
    object-position 0.5s ease,
    height 0.5s ease;
}
ul.service-image-cta-list li.service-image-cta .upper-content .background-image img,
ul.service-image-cta-list li.service-image-cta .upper-content .background-image svg {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 4px !important;
}
ul.service-image-cta-list li.service-image-cta .upper-content .content {
  z-index: 2;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.6rem;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.3) 100%);
  padding: 1.2rem;
  border-radius: 4px !important;
}
ul.service-image-cta-list li.service-image-cta .upper-content .content h3 {
  margin: 0px;
  color: var(--white-100);
}
ul.service-image-cta-list li.service-image-cta .upper-content .content h4 {
  border-radius: 2px;
  background: var(--bg-100);
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  color: var(--white-100);
}
ul.service-image-cta-list li.service-image-cta .upper-content .content button {
  transition: height 0.5s ease, padding 0.5s ease;
}
ul.service-image-cta-list li.service-image-cta .content-hover {
  height: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition:
    height 0.5s ease,
    padding 0.5s ease,
    flex-grow 0.5s ease;
}
ul.service-image-cta-list li.service-image-cta:hover .upper-content button {
  height: 0px;
  padding: 0px;
  border: 0px solid black;
  overflow: hidden;
}
ul.service-image-cta-list li.service-image-cta:hover .content-hover {
  height: 35%;
  padding: 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
ul.service-image-cta-list li.service-image-cta:hover .content-hover button {
  width: 100%;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  ul.service-image-cta-list li.service-image-cta {
    height: fit-content;
  }
  ul.service-image-cta-list li.service-image-cta .upper-content button {
    height: 0px;
    padding: 0px;
    border: 0px solid black;
    overflow: hidden;
  }
  ul.service-image-cta-list li.service-image-cta .content-hover {
    min-height: 35%;
    height: fit-content;
    padding: 1.2rem;
    gap: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: none;
  }
  ul.service-image-cta-list li.service-image-cta:hover .content-hover {
    height: fit-content;
    padding: 1.2rem;
    flex-grow: 1;
  }
}

/* fakecss:/workspace/packages/control-web-frame/src/components/home/SystemAdminQuickLinks.esbuild-svelte-fake-css */
.admin-quick-links.svelte-bvm6n4 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.muted.svelte-bvm6n4 {
  margin: 0;
  color: var(--text-60);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/ProjectView/pages/Overview/tabs/HomeTab.esbuild-svelte-fake-css */
.languages.svelte-ea3c9j {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/ProjectView/pages/Overview/tabs/StateTab.esbuild-svelte-fake-css */
.state-block.svelte-1xa75p9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.state-block.svelte-1xa75p9 p:where(.svelte-1xa75p9) {
  margin: 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/ProjectView/pages/Settings/tabs/SessionTab.esbuild-svelte-fake-css */
.state-block.svelte-16hqy6m {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.state-block.svelte-16hqy6m p:where(.svelte-16hqy6m) {
  margin: 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/ProjectView/pages/Settings/tabs/projectConfig/ProjectConfigRepeaterRowOverlay.esbuild-svelte-fake-css */
p.svelte-12ou50c {
  color: var(--text-100);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/ProjectView/pages/Settings/tabs/projectConfig/ProjectConfigTableFilter.esbuild-svelte-fake-css */
.repeater-filter.svelte-1aj675i {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.filter-mode.svelte-1aj675i {
  display: flex;
  justify-content: flex-end;
}
.row.svelte-1aj675i {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/ProjectView/pages/Settings/tabs/projectConfig/ProjectConfigTable.esbuild-svelte-fake-css */
.repeater-wrap.svelte-17fhixw {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.hint.svelte-17fhixw {
  margin: 0;
  color: var(--text-70);
}
.multiline-value.svelte-17fhixw {
  white-space: pre-line;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/ProjectView/pages/Settings/tabs/projectConfig/ProjectConfigSection.esbuild-svelte-fake-css */
.empty-state.svelte-1ng3rv1,
.config-form.svelte-1ng3rv1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.empty-state.svelte-1ng3rv1 p:where(.svelte-1ng3rv1) {
  margin: 0;
  color: var(--text-70);
}
.config-section.svelte-1ng3rv1 {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field-list.svelte-1ng3rv1 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.field-row.svelte-1ng3rv1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/ProjectView/pages/Settings/tabs/ProjectConfigTab.esbuild-svelte-fake-css */
.config-tab.svelte-pzscxl {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.file-input.svelte-pzscxl {
  display: none;
}
.state-block.svelte-pzscxl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.state-block.svelte-pzscxl p:where(.svelte-pzscxl) {
  margin: 0;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/widgetConfig/Configurator.esbuild-svelte-fake-css */
form.widget-config.svelte-1f0c8k2 {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 100%;
  color: var(--text-invers-100);
}
form.widget-config.svelte-1f0c8k2 .action-buttons:where(.svelte-1f0c8k2) {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
form.widget-config.svelte-1f0c8k2 button.cta {
  min-width: 0;
}
form.widget-config.svelte-1f0c8k2 .widget-section:where(.svelte-1f0c8k2) {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
form.widget-config.svelte-1f0c8k2 .panel-grid:where(.svelte-1f0c8k2) {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: end;
}
form.widget-config.svelte-1f0c8k2 .panel-grid:where(.svelte-1f0c8k2) .full-width {
  grid-column: 1 / -1;
}
form.widget-config.svelte-1f0c8k2 .quick-replies:where(.svelte-1f0c8k2) {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
form.widget-config.svelte-1f0c8k2 .quick-replies:where(.svelte-1f0c8k2) p:where(.svelte-1f0c8k2) {
  margin: 0;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--text-invers-100) 60%, transparent);
}
form.widget-config.svelte-1f0c8k2 .row:where(.svelte-1f0c8k2) {
  padding: 0;
}
.toggle-wrapper.svelte-1f0c8k2 {
  display: inline-flex;
  align-items: center;
}
.toggle-disabled.svelte-1f0c8k2 {
  opacity: 0.55;
  pointer-events: none;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/RealizationView/pages/Settings/tabs/SessionTab.esbuild-svelte-fake-css */
.settings-tab.svelte-1sylvrj {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/home/StartFeedbackRow.esbuild-svelte-fake-css */
.feedback-row.svelte-101bttp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--bg-100);
  background: color-mix(in srgb, var(--bg-100) 3%, transparent);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.feedback-row.svelte-101bttp:hover {
  background: color-mix(in srgb, var(--bg-100) 7%, transparent);
}
.feedback-row__left.svelte-101bttp {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-invers-100) !important;
}
.feedback-row__right.svelte-101bttp {
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-invers-100) !important;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/RealizationView/pages/Analytics/tabs/HomeTab.esbuild-svelte-fake-css */
.home.svelte-fbwuo3 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/pages/Settings/tabs/GeneralTab.esbuild-svelte-fake-css */

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/pages/Settings/tabs/GraphLanguageOverlay.esbuild-svelte-fake-css */
.language-overlay.svelte-12qnius {
  min-width: min(540px, 90vw);
}
.language-form.svelte-12qnius {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 0.25rem;
}
.overlay-actions.svelte-12qnius {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  padding-top: 0.6rem;
}
.hint.svelte-12qnius {
  margin: 0;
}
.hint.muted.svelte-12qnius {
  color: color-mix(in srgb, var(--text-100) 60%, transparent);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/pages/Settings/tabs/LanguagesTab.esbuild-svelte-fake-css */
.graph-settings.svelte-59wh9k {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.hint.svelte-59wh9k {
  margin: 0;
  color: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
}
.hint.error.svelte-59wh9k {
  color: var(--danger-600, #c62828);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/pages/Settings/tabs/DangerZoneTab.esbuild-svelte-fake-css */
.graph-settings.svelte-14hvgmq {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/realizations/RealizationConfig.esbuild-svelte-fake-css */
.realization-config.svelte-1u7lr1o {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.input-grid.svelte-1u7lr1o {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
  align-items: end;
}
.hint.svelte-1u7lr1o {
  margin: 0;
}
.hint.muted.svelte-1u7lr1o {
  color: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
}
.form.light .hint.muted.svelte-1u7lr1o {
  color: color-mix(in srgb, var(--text-100) 70%, transparent);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/components/provisioning/ProvisioningTemplateOverlay.esbuild-svelte-fake-css */
.overlay.svelte-1jhr0fm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.block.svelte-1jhr0fm {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/pages/Provisioning/tabs/ProvisioningTab.esbuild-svelte-fake-css */
.graph-settings.svelte-1wt0bju {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.provisioning-body.svelte-1wt0bju {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.template-shell.svelte-1wt0bju {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.template-shell[data-disabled=true].svelte-1wt0bju .template-body:where(.svelte-1wt0bju) {
  pointer-events: none;
  opacity: 0.5;
  filter: saturate(0.5);
}
.hint.svelte-1wt0bju {
  margin: 0;
  color: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
}
.hint.error.svelte-1wt0bju {
  color: var(--danger-600, #c62828);
}

/* fakecss:/data/node_modules/@zerodevx/svelte-json-view/dist/JsonView.esbuild-svelte-fake-css */
:where(._jsonList.svelte-19qoo0) {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: var(--jsonPaddingLeft, 1rem);
  border-left: var(--jsonBorderLeft, 1px dotted);
}
:where(._jsonBkt.svelte-19qoo0) {
  color: var(--jsonBracketColor, currentcolor);
}
.svelte-19qoo0:where(._jsonBkt:where(.svelte-19qoo0)):not(.empty):hover {
  cursor: pointer;
  background: var(--jsonBracketHoverBackground, #e5e7eb);
}
:where(._jsonSep.svelte-19qoo0) {
  color: var(--jsonSeparatorColor, currentcolor);
}
:where(._jsonKey.svelte-19qoo0) {
  color: var(--jsonKeyColor, currentcolor);
}
:where(._jsonVal.svelte-19qoo0) {
  color: var(--jsonValColor, #9ca3af);
}
:where(._jsonVal:where(.svelte-19qoo0)).string.svelte-19qoo0 {
  color: var(--jsonValStringColor, #059669);
}
:where(._jsonVal:where(.svelte-19qoo0)).number.svelte-19qoo0 {
  color: var(--jsonValNumberColor, #d97706);
}
:where(._jsonVal:where(.svelte-19qoo0)).boolean.svelte-19qoo0 {
  color: var(--jsonValBooleanColor, #2563eb);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/pages/Evaluation/tabs/EvaluationProfileDetailsOverlay.esbuild-svelte-fake-css */
.evaluation-profile-overlay {
  --jsonPaddingLeft: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.evaluation-profile-overlay .meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.evaluation-profile-overlay code {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 0.86rem;
  word-break: break-all;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/pages/Evaluation/tabs/EvaluationTab.esbuild-svelte-fake-css */
.graph-settings.svelte-1gomgq6 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/pages/ProjectConfig/tabs/ProjectConfigDetailsOverlay.esbuild-svelte-fake-css */
.project-config-overlay {
  --jsonPaddingLeft: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.project-config-overlay .meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.project-config-overlay code {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 0.86rem;
  word-break: break-all;
}
.project-config-overlay .empty-state {
  margin: 0;
  color: var(--text-70);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/pages/ProjectConfig/tabs/ProjectConfigTab.esbuild-svelte-fake-css */
.graph-settings.svelte-1y38eo {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.muted.svelte-1y38eo {
  margin: 0;
  color: var(--text-70);
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/pages/Organizations/tabs/GraphOrganizationOverlay.esbuild-svelte-fake-css */
.org-overlay.svelte-j4qdkw {
  min-width: min(540px, 90vw);
}
.org-form.svelte-j4qdkw {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 0.25rem;
}
.overlay-actions.svelte-j4qdkw {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  padding-top: 0.6rem;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/GraphView/pages/Organizations/tabs/OrganizationsTab.esbuild-svelte-fake-css */
.graph-settings.svelte-1q4srm6 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.hint.svelte-1q4srm6 {
  margin: 0;
  color: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
}
.hint.error.svelte-1q4srm6 {
  color: var(--danger-600, #c62828);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/ControlBanner.esbuild-svelte-fake-css */
.control-banner.svelte-18vuiag {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-100);
  color: var(--text-100);
  padding: 6px 0px;
  border-bottom: 1px solid #625755;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.control-banner.danger.svelte-18vuiag :where(.svelte-18vuiag) {
  color: var(--primary-100) !important;
}
.banner-content.svelte-18vuiag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--normal-max-width);
  width: 100%;
  margin: 0px var(--horizontal-default-margin);
}
.text-block.svelte-18vuiag {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  animation: svelte-18vuiag-fadeLoop 3s ease-in-out infinite;
}
.headline.svelte-18vuiag {
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-100);
  margin: 0;
  font-size: 0.95rem;
}
.actions.svelte-18vuiag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.action.svelte-18vuiag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-100);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border 160ms ease;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.close.svelte-18vuiag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-100);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}
@keyframes svelte-18vuiag-fadeLoop {
  0%, 100% {
    opacity: 0.8;
  }
  30%, 70% {
    opacity: 1;
  }
}
@keyframes svelte-18vuiag-shimmer {
  0% {
    background-position:
      0 0,
      100% 0,
      50% 100%;
  }
  100% {
    background-position:
      100% 0,
      0 0,
      50% 0;
  }
}
@media (max-width: 960px) {
  .banner-content.svelte-18vuiag {
    flex-direction: column;
    align-items: flex-start;
  }
  .actions.svelte-18vuiag {
    width: 100%;
    justify-content: flex-start;
  }
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/ControlAppHeader.esbuild-svelte-fake-css */
.kw-control-header.svelte-ektitk {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--bg-100);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  position: relative;
  z-index: 9998;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.kw-control-header--sticky.svelte-ektitk {
  position: sticky;
  top: 0;
}
.kw-control-header__inner.svelte-ektitk {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: nowrap;
  margin: 0 var(--horizontal-default-margin, 0);
}
.kw-control-header__brand.svelte-ektitk {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 1 1 auto;
}
.kw-control-header__brand-placeholder.svelte-ektitk {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-100);
}
.kw-control-header__actions.svelte-ektitk {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  justify-content: flex-end;
}
.kw-control-header__crinkle.svelte-ektitk {
  position: absolute;
  right: -3px;
  bottom: -60px;
  width: 61px;
  height: 61px;
}
.kw-control-header__crinkle.svelte-ektitk svg:where(.svelte-ektitk) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: rotate(180deg);
}
@media only screen and (max-width: 967px) {
  .kw-control-header.svelte-ektitk {
    padding: 0.85rem 1.1rem;
  }
  .kw-control-header__inner.svelte-ektitk {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .kw-control-header__actions.svelte-ektitk {
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
  .kw-control-header__actions.svelte-ektitk button.cta {
    width: auto;
    justify-content: flex-end;
  }
}
.kw-control-header__crinkle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: rotate(180deg);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/navigation/AdminActiveAppCard.esbuild-svelte-fake-css */
.kw-stack.svelte-14d9q5p {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.kw-stack__card.svelte-14d9q5p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  color: var(--text-100);
  text-decoration: none;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--text-100) 12%, transparent);
  box-shadow: none;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/navigation/AdminPrimaryNavigation.esbuild-svelte-fake-css */
.kw-primary-nav.svelte-1qbj8t0 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.kw-primary-nav.svelte-1qbj8t0 a:where(.svelte-1qbj8t0) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.4px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--text-100) 12%, transparent);
  color: var(--text-100);
  text-decoration: none;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.kw-primary-nav.svelte-1qbj8t0 a:where(.svelte-1qbj8t0):hover,
.kw-primary-nav.svelte-1qbj8t0 a:where(.svelte-1qbj8t0):focus-visible {
  background: color-mix(in srgb, var(--text-100) 4%, transparent);
  border-color: color-mix(in srgb, var(--text-100) 20%, transparent);
}
.kw-primary-nav.svelte-1qbj8t0 a.active:where(.svelte-1qbj8t0) {
  border-color: color-mix(in srgb, var(--text-100) 26%, transparent);
  background: color-mix(in srgb, var(--text-100) 6%, transparent);
  box-shadow: none;
}
.kw-primary-nav__text.svelte-1qbj8t0 {
  display: grid;
  gap: 0.08rem;
}
.kw-primary-nav__title.svelte-1qbj8t0 {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-100);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/navigation/AdminNavList.esbuild-svelte-fake-css */
.kw-user-menu__nav.svelte-1l7kf83 {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.kw-user-menu__nav.svelte-1l7kf83 a:where(.svelte-1l7kf83) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  background: color-mix(in srgb, var(--bg-200) 72%, transparent);
  color: var(--text-100);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.16s ease;
}
.kw-user-menu__nav.svelte-1l7kf83 a:where(.svelte-1l7kf83):hover,
.kw-user-menu__nav.svelte-1l7kf83 a:where(.svelte-1l7kf83):focus-visible {
  background: color-mix(in srgb, var(--bg-200) 82%, transparent);
}
.kw-user-menu__nav.svelte-1l7kf83 a.active:where(.svelte-1l7kf83) {
  border: 1px solid color-mix(in srgb, var(--primary-200) 26%, transparent);
  background: color-mix(in srgb, var(--bg-200) 84%, transparent);
}
.kw-user-menu__nav.svelte-1l7kf83 .nav-text:where(.svelte-1l7kf83) {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.kw-user-menu__nav.svelte-1l7kf83 .nav-label:where(.svelte-1l7kf83) {
  font-weight: 600;
}
.kw-user-menu__nav.svelte-1l7kf83 .nav-description:where(.svelte-1l7kf83) {
  display: block;
  font-size: 0.83rem;
  opacity: 0.68;
}
.kw-user-menu__nav--external.svelte-1l7kf83 {
  border-top: 1px solid color-mix(in srgb, var(--text-100) 12%, transparent);
  padding-top: 1rem;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/navigation/AdminBurgerMenuOverlayContent.esbuild-svelte-fake-css */
.kw-user-menu.svelte-1hlllyb {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.kw-user-menu.dark-theme .kw-user-menu__nav a {
  background: color-mix(in srgb, var(--bg-300, #111) 70%, transparent);
}
.kw-section-label.svelte-1hlllyb {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
  margin: 0 0 0.25rem;
  color: var(--text-100);
}
.kw-user-menu__section.svelte-1hlllyb {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.kw-user-menu__extras.svelte-1hlllyb {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kw-user-menu__footer.svelte-1hlllyb {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.kw-user-menu__profile.svelte-1hlllyb {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-100);
}
.kw-user-menu__profile.svelte-1hlllyb .kw-user-menu__profile-text:where(.svelte-1hlllyb) {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.kw-user-menu__profile.svelte-1hlllyb .kw-user-menu__profile-text:where(.svelte-1hlllyb) .caption:where(.svelte-1hlllyb) {
  font-size: 0.8rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.kw-user-menu__profile.svelte-1hlllyb .kw-user-menu__profile-text:where(.svelte-1hlllyb) .email:where(.svelte-1hlllyb) {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/navigation/AdminBurgerMenu.esbuild-svelte-fake-css */
.kw-admin-menu-button.svelte-1c8dbm2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--neutral-white, #fff);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/layout/LogoHeader.esbuild-svelte-fake-css */
a.svelte-16mjeld {
  height: 70px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (max-width: 967px) {
  a.svelte-16mjeld {
    height: 50px;
  }
}
a.svelte-16mjeld img:where(.svelte-16mjeld) {
  height: 100%;
  width: auto;
  cursor: pointer;
}

/* fakecss:/workspace/packages/control-web-frame/src/components/layout/Header.esbuild-svelte-fake-css */
.brand.svelte-yjzuh6 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.actions.svelte-yjzuh6 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 600px) {
  .actions.svelte-yjzuh6:not(.loggedIn) {
    display: none;
  }
}

/* fakecss:/workspace/packages/werk-web-sdk/theme/SetStyling.esbuild-svelte-fake-css */
@font-face {
  font-display: swap;
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  src: url("./assets/outfit-v11-latin-regular-G42YK65R.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Outfit-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("./assets/outfit-v11-latin-regular-G42YK65R.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Outfit-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("./assets/outfit-v11-latin-700-5UU5C3YE.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Neutra Text";
  font-style: normal;
  font-weight: 400;
  src: url("./assets/Neutra Text Light-KDLCYXBC.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Neutra Text";
  font-style: normal;
  font-weight: 700;
  src: url("./assets/Neutra Text Bold-UCH4XBZM.woff2") format("woff2");
}
a,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
* {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  appearance: none;
  background: none;
  line-height: 100%;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll,
body.no-overflow {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
html {
  background-color: var(--neutral-white);
}
body {
  color: var(--text-invers-100);
  min-height: 100vh;
  background-color: var(--bg-100) !important;
  overflow-x: hidden;
}
ul {
  list-style-type: none;
}
.primary-list {
  --primary-list-text: var(--text-100);
  --primary-list-muted: color-mix(in srgb, var(--text-100) 70%, transparent);
  --primary-list-accent: var(--list-accent, var(--primary-100));
  --primary-list-hover-strength: var(--list-hover-strength, 14%);
  --primary-list-hover-bg: color-mix(in srgb, var(--primary-list-accent) var(--primary-list-hover-strength), transparent);
  --primary-list-margin: 0;
  --primary-list-padding: 0;
  --primary-list-padding-top: 0;
  --primary-list-padding-right: 0;
  --primary-list-padding-left: 0;
  --primary-list-gap: 0.4rem;
  --primary-list-max-height: initial;
  --primary-list-overflow-y: visible;
  list-style: none;
  margin: var(--primary-list-margin);
  padding: var(--primary-list-padding);
  padding-top: var(--primary-list-padding-top);
  padding-right: var(--primary-list-padding-right);
  padding-left: var(--primary-list-padding-left);
  display: flex;
  flex-direction: column;
  gap: var(--primary-list-gap);
  position: relative;
  max-height: var(--primary-list-max-height);
  overflow-y: var(--primary-list-overflow-y);
  overflow-x: hidden;
}
.primary-list__item,
.primary-list__link,
.primary-list > li {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  text-decoration: none;
  background: transparent;
  color: var(--primary-list-text);
  border: none;
  cursor: pointer;
  text-align: left;
  transition:
    background 120ms ease,
    transform 120ms ease,
    color 120ms ease,
    box-shadow 120ms ease;
}
.primary-list__item,
.primary-list > li {
  cursor: default;
}
.primary-list__dot,
.primary-list > li::before {
  width: 9px;
  height: 9px;
  content: " ";
  border-radius: 999px;
  background: var(--primary-list-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-list-accent) 20%, transparent);
  flex-shrink: 0;
}
.primary-list__label {
  flex: 1;
  font-size: 0.97rem;
  font-weight: 600;
}
.primary-list__sub {
  color: var(--primary-list-muted);
  font-size: 0.9rem;
}
.primary-list--light {
  --primary-list-text: var(--text-invers-100);
  --primary-list-muted: color-mix(in srgb, var(--text-invers-100) 70%, transparent);
  --primary-list-accent: var(--primary-100);
  --primary-list-hover-bg: color-mix(in srgb, var(--primary-100) var(--primary-list-hover-strength, 8%), transparent);
}
.primary-list--dark {
  --primary-list-text: var(--text-100);
  --primary-list-muted: color-mix(in srgb, var(--text-100) 70%, transparent);
  --primary-list-accent: var(--primary-200);
  --primary-list-hover-bg: color-mix(in srgb, var(--primary-200) var(--primary-list-hover-strength, 14%), transparent);
}
* {
  transition:
    background-color 0.5s ease,
    max-height 0.5s,
    height 0.5s ease,
    width 0.5s ease,
    flex 0.5s ease,
    opacity 0.5s ease,
    top 0.5s ease,
    bottom 0.5s ease,
    left 0.5s ease,
    right 0.5s ease,
    transform 0.5s ease;
}
*::-webkit-scrollbar {
  width: 6px;
  height: 11px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--neutral-white);
}
*::-webkit-scrollbar-track {
  background: var(--bg-100);
  background-clip: padding-box;
}
.horizontalScrollbar::-webkit-scrollbar {
  height: 11px;
}
.horizontalScrollbar::-webkit-scrollbar-thumb {
  background: var(--bg-100);
}
.horizontalScrollbar::-webkit-scrollbar-track {
  background: rgba(13, 12, 12, 0.25);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  background-clip: padding-box;
}
@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--neutral-white) var(--bg-100);
  }
  .horizontalScrollbar {
    scrollbar-height: 11px;
  }
}
@supports (-webkit-touch-callout: none) {
  .horizontalScrollbar {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .horizontalScrollbar::-webkit-scrollbar {
    height: 11px;
  }
  .horizontalScrollbar::-webkit-scrollbar-thumb {
    background: var(--bg-100);
  }
  .horizontalScrollbar::-webkit-scrollbar-track {
    background: rgba(13, 12, 12, 0.25);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    background-clip: padding-box;
  }
}
h1,
.h1,
h1 em,
.h1 em {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: var(--font-family-heading, var(--font-family-bold, "Outfit", sans-serif));
  line-height: 100%;
  font-style: normal;
  color: var(--text-100);
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  h1,
  .h1,
  h1 em,
  .h1 em {
    font-size: 2.4rem;
  }
}
h2,
.h2,
h2 em {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-family-regular, var(--font-family-base, "Outfit", sans-serif));
  line-height: 100%;
  color: var(--text-100);
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  h2,
  .h2,
  h2 em {
    font-size: 1.6rem;
  }
}
.h2 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-family-regular, var(--font-family-base, "Outfit", sans-serif));
  line-height: 100%;
  color: var(--text-100);
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .h2 {
    font-size: 1.3rem;
  }
}
h3 {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-family-heading, var(--font-family-bold, "Outfit", sans-serif));
  line-height: 100%;
  color: var(--text-100);
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  h3 {
    font-size: 1.2rem;
  }
}
em {
  font-size: 1rem;
  font-family: var(--font-family-heading, var(--font-family-bold, "Outfit", sans-serif));
  font-style: normal;
  font-weight: 700;
}
button {
  color: var(--text-100);
  cursor: pointer;
}
.btn {
  color: var(--text-invers-100);
}
.btn.bright {
  color: var(--text-100);
}
.btn:hover {
  color: var(--primary-100);
}
p {
  font-size: 1rem;
  color: var(--text-invers-100);
}
p.headline-description {
  font-size: 1.2rem;
  color: var(--text-100);
  font-family: var(--font-family-regular, var(--font-family-base, "Outfit", sans-serif));
  font-weight: 400;
}
a {
  color: var(--text-invers-100);
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-family-bold, "Outfit", sans-serif);
}
small {
  color: var(--text-invers-100);
}
.red {
  color: var(--primary-200) !important;
}
html,
body {
  font-family: var(--font-family-base, "Outfit", sans-serif);
  background-color: var(--bg-100);
  min-height: 100vh;
}
html button,
body button {
  font-family: inherit;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  html,
  body {
    font-size: 16px;
  }
}
@media only screen and (min-width: 968px) {
  html,
  body {
    font-size: 18px;
  }
}
html .app-shell,
body .app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--bg-100);
}
html main,
body main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
ul.labeled-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
ul.labeled-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(243, 238, 217, 0.06);
  border: 1px solid rgba(243, 238, 217, 0.08);
}
ul.labeled-list li .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(243, 238, 217, 0.55);
}
ul.labeled-list li .value {
  font-size: 0.95rem;
  color: var(--text-100);
  word-break: break-word;
}
.form,
form:not(.exclude) {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
  justify-content: flex-start;
}
.form h2,
form:not(.exclude) h2,
.form h3,
form:not(.exclude) h3 {
  color: var(--text-invers-100);
  margin-bottom: 0.6rem;
}
.form .row,
form:not(.exclude) .row {
  display: grid;
  width: 100%;
  gap: 1.2rem;
  position: relative;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.form .row.some,
form:not(.exclude) .row.some {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.form .row.many,
form:not(.exclude) .row.many {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.form .row.single,
form:not(.exclude) .row.single {
  grid-template-columns: 1fr;
}
.form .row .row,
form:not(.exclude) .row .row {
  padding: 0px;
}
@media (max-width: 500px) {
  .form,
  form:not(.exclude) {
    gap: 0.6rem;
  }
  .form .row,
  form:not(.exclude) .row {
    gap: 0.6rem;
    grid-template-columns: 1fr;
  }
}
.form .action-button-line,
form:not(.exclude) .action-button-line,
.form .action-line,
form:not(.exclude) .action-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.form .action-line,
form:not(.exclude) .action-line {
  background: var(--bg-100);
  padding: 0.6rem 3.3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 2.4rem;
  justify-content: space-between;
}
.form .action-line p,
form:not(.exclude) .action-line p,
.form .action-line span,
form:not(.exclude) .action-line span {
  color: var(--neutral-white);
}
.form .data-protection,
form:not(.exclude) .data-protection {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}
.form .data-protection p,
form:not(.exclude) .data-protection p {
  flex-grow: 1;
}
.form .action-button-line,
form:not(.exclude) .action-button-line {
  min-height: 2.4rem;
  display: flex;
  width: 100%;
}
.form .action-button-line button,
form:not(.exclude) .action-button-line button {
  width: 0px;
  height: 100%;
  flex-grow: 1;
}
.form .error-message,
form:not(.exclude) .error-message {
  font-size: 0.7rem;
  line-height: 0.7rem;
  color: var(--primary-100);
  font-weight: 700;
  position: absolute;
  bottom: -15px;
}
.form .checkit-span,
form:not(.exclude) .checkit-span {
  height: 1.2rem;
  width: 1.2rem;
  min-height: 1.2rem;
  min-width: 1.2rem;
  border: 1px solid grey;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.form [type=checkbox]:checked + .checkit-span:before,
form:not(.exclude) [type=checkbox]:checked + .checkit-span:before {
  content: "\2714";
  position: absolute;
  color: var(--text-invers-100);
  transform-origin: bottom;
}
.form label.tagBasedInput .tag-input-shell span.text-segment,
form:not(.exclude) label.tagBasedInput .tag-input-shell span.text-segment,
.form label.tagBasedInput .tag-input-shell .token__tag,
form:not(.exclude) label.tagBasedInput .tag-input-shell .token__tag {
  color: var(--text-invers-100) !important;
}
.form label,
form:not(.exclude) label {
  width: 100%;
  max-width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  height: 60px;
  max-height: 60px;
}
.form label.checkbox,
form:not(.exclude) label.checkbox {
  height: 1.2rem;
  max-height: 1.2rem;
}
.form label > span,
form:not(.exclude) label > span {
  opacity: 0;
  transition: opacity 0s;
  padding: 0px 19px;
  width: 100%;
  height: 12px;
  text-align: left;
  color: var(--text-invers-100);
  font-size: 0.7rem;
  line-height: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}
.form label > span.hasValue,
form:not(.exclude) label > span.hasValue {
  opacity: 1;
  top: 0.3rem;
}
.form label > span.labelspan,
form:not(.exclude) label > span.labelspan {
  position: relative;
}
.form label p,
form:not(.exclude) label p {
  padding: 0px 19px;
  font-size: 0.7rem;
  color: var(--text-invers-100) !important;
}
.form label.textarea,
form:not(.exclude) label.textarea,
.form label.file,
form:not(.exclude) label.file,
.form label.tagBasedInput,
form:not(.exclude) label.tagBasedInput {
  height: auto;
  max-height: none;
}
.form label.passwordField,
form:not(.exclude) label.passwordField {
  height: auto;
  max-height: none;
}
.form label > input,
form:not(.exclude) label > input,
.form label > select,
form:not(.exclude) label > select,
.form label > div.wrapper,
form:not(.exclude) label > div.wrapper,
.form label > .no-input,
form:not(.exclude) label > .no-input,
.form label > textarea,
form:not(.exclude) label > textarea,
.form label > .password-field > input,
form:not(.exclude) label > .password-field > input {
  width: 100% !important;
  padding: 0px 18px 12px 18px !important;
  border: 0px solid black !important;
  border-radius: 0px !important;
  border-bottom: 1px solid var(--text-invers-100) !important;
  text-align: start !important;
  color: var(--text-invers-100) !important;
  font-size: 1rem !important;
}
.form label > input.fileContainer,
form:not(.exclude) label > input.fileContainer,
.form label > select.fileContainer,
form:not(.exclude) label > select.fileContainer,
.form label > div.wrapper.fileContainer,
form:not(.exclude) label > div.wrapper.fileContainer,
.form label > .no-input.fileContainer,
form:not(.exclude) label > .no-input.fileContainer,
.form label > textarea.fileContainer,
form:not(.exclude) label > textarea.fileContainer,
.form label > .password-field > input.fileContainer,
form:not(.exclude) label > .password-field > input.fileContainer {
  max-height: none !important;
  height: 100% !important;
}
.form label > input:focus,
form:not(.exclude) label > input:focus,
.form label > select:focus,
form:not(.exclude) label > select:focus,
.form label > div.wrapper:focus,
form:not(.exclude) label > div.wrapper:focus,
.form label > .no-input:focus,
form:not(.exclude) label > .no-input:focus,
.form label > textarea:focus,
form:not(.exclude) label > textarea:focus,
.form label > .password-field > input:focus,
form:not(.exclude) label > .password-field > input:focus {
  outline: none !important;
  border-bottom: 1px solid var(--primary-100) !important;
}
.form label > input.error,
form:not(.exclude) label > input.error,
.form label > select.error,
form:not(.exclude) label > select.error,
.form label > div.wrapper.error,
form:not(.exclude) label > div.wrapper.error,
.form label > .no-input.error,
form:not(.exclude) label > .no-input.error,
.form label > textarea.error,
form:not(.exclude) label > textarea.error,
.form label > .password-field > input.error,
form:not(.exclude) label > .password-field > input.error {
  border-bottom: 3px solid var(--primary-100) !important;
}
.form label > input.checkit,
form:not(.exclude) label > input.checkit,
.form label > select.checkit,
form:not(.exclude) label > select.checkit,
.form label > div.wrapper.checkit,
form:not(.exclude) label > div.wrapper.checkit,
.form label > .no-input.checkit,
form:not(.exclude) label > .no-input.checkit,
.form label > textarea.checkit,
form:not(.exclude) label > textarea.checkit,
.form label > .password-field > input.checkit,
form:not(.exclude) label > .password-field > input.checkit {
  display: none !important;
}
.form label > input.no-input,
form:not(.exclude) label > input.no-input,
.form label > select.no-input,
form:not(.exclude) label > select.no-input,
.form label > div.wrapper.no-input,
form:not(.exclude) label > div.wrapper.no-input,
.form label > .no-input.no-input,
form:not(.exclude) label > .no-input.no-input,
.form label > textarea.no-input,
form:not(.exclude) label > textarea.no-input,
.form label > .password-field > input.no-input,
form:not(.exclude) label > .password-field > input.no-input {
  border-bottom: none !important;
}
.form label > input:disabled,
form:not(.exclude) label > input:disabled,
.form label > select:disabled,
form:not(.exclude) label > select:disabled,
.form label > div.wrapper:disabled,
form:not(.exclude) label > div.wrapper:disabled,
.form label > .no-input:disabled,
form:not(.exclude) label > .no-input:disabled,
.form label > textarea:disabled,
form:not(.exclude) label > textarea:disabled,
.form label > .password-field > input:disabled,
form:not(.exclude) label > .password-field > input:disabled {
  opacity: 0.5;
}
.form label > input[type=checkbox],
form:not(.exclude) label > input[type=checkbox],
.form label > select[type=checkbox],
form:not(.exclude) label > select[type=checkbox],
.form label > div.wrapper[type=checkbox],
form:not(.exclude) label > div.wrapper[type=checkbox],
.form label > .no-input[type=checkbox],
form:not(.exclude) label > .no-input[type=checkbox],
.form label > textarea[type=checkbox],
form:not(.exclude) label > textarea[type=checkbox],
.form label > .password-field > input[type=checkbox],
form:not(.exclude) label > .password-field > input[type=checkbox] {
  border-bottom: 0px solid black !important;
}
.form label input,
form:not(.exclude) label input,
.form label div.wrapper,
form:not(.exclude) label div.wrapper,
.form label .no-input,
form:not(.exclude) label .no-input,
.form label textarea,
form:not(.exclude) label textarea,
.form label select,
form:not(.exclude) label select {
  color: var(--text-invers-100) !important;
}
.form label textarea,
form:not(.exclude) label textarea {
  min-height: 170px;
}
form.light,
.form.light,
.content-block.dark {
  color: white;
}
form.light label.tagBasedInput .tag-input-shell span.text-segment,
.form.light label.tagBasedInput .tag-input-shell span.text-segment,
.content-block.dark label.tagBasedInput .tag-input-shell span.text-segment,
form.light label.tagBasedInput .tag-input-shell .token__tag,
.form.light label.tagBasedInput .tag-input-shell .token__tag,
.content-block.dark label.tagBasedInput .tag-input-shell .token__tag {
  color: white !important;
}
form.light h2,
.form.light h2,
.content-block.dark h2,
form.light h3,
.form.light h3,
.content-block.dark h3 {
  color: white;
}
form.light .action-line,
.form.light .action-line,
.content-block.dark .action-line {
  background: var(--bg-150);
}
form.light .action-line p,
.form.light .action-line p,
.content-block.dark .action-line p,
form.light .action-line span,
.form.light .action-line span,
.content-block.dark .action-line span {
  color: white;
}
form.light .error-message,
.form.light .error-message,
.content-block.dark .error-message {
  color: var(--primary-200);
}
form.light .checkit-span,
.form.light .checkit-span,
.content-block.dark .checkit-span {
  border: 1px solid var(--neutral-white);
}
form.light [type=checkbox]:checked + .checkit-span:before,
.form.light [type=checkbox]:checked + .checkit-span:before,
.content-block.dark [type=checkbox]:checked + .checkit-span:before {
  color: white;
}
form.light label span.hasValue,
.form.light label span.hasValue,
.content-block.dark label span.hasValue {
  color: white !important;
}
form.light label > span,
.form.light label > span,
.content-block.dark label > span {
  color: white !important;
}
form.light label p,
.form.light label p,
.content-block.dark label p {
  color: white !important;
}
form.light label .toggle-row .checkbox-label,
.form.light label .toggle-row .checkbox-label,
.content-block.dark label .toggle-row .checkbox-label {
  color: white !important;
}
form.light label > input,
.form.light label > input,
.content-block.dark label > input,
form.light label > div.wrapper,
.form.light label > div.wrapper,
.content-block.dark label > div.wrapper,
form.light label > .no-input,
.form.light label > .no-input,
.content-block.dark label > .no-input,
form.light label > textarea,
.form.light label > textarea,
.content-block.dark label > textarea,
form.light label > select,
.form.light label > select,
.content-block.dark label > select {
  border-bottom: 1px solid white !important;
  color: white !important;
}
form.light label > input:focus,
.form.light label > input:focus,
.content-block.dark label > input:focus,
form.light label > div.wrapper:focus,
.form.light label > div.wrapper:focus,
.content-block.dark label > div.wrapper:focus,
form.light label > .no-input:focus,
.form.light label > .no-input:focus,
.content-block.dark label > .no-input:focus,
form.light label > textarea:focus,
.form.light label > textarea:focus,
.content-block.dark label > textarea:focus,
form.light label > select:focus,
.form.light label > select:focus,
.content-block.dark label > select:focus {
  border-bottom: 1px solid var(--primary-200) !important;
}
form.light label > input.error,
.form.light label > input.error,
.content-block.dark label > input.error,
form.light label > div.wrapper.error,
.form.light label > div.wrapper.error,
.content-block.dark label > div.wrapper.error,
form.light label > .no-input.error,
.form.light label > .no-input.error,
.content-block.dark label > .no-input.error,
form.light label > textarea.error,
.form.light label > textarea.error,
.content-block.dark label > textarea.error,
form.light label > select.error,
.form.light label > select.error,
.content-block.dark label > select.error {
  border-bottom: 3px solid var(--primary-200) !important;
}
form.light label > input.no-input,
.form.light label > input.no-input,
.content-block.dark label > input.no-input,
form.light label > div.wrapper.no-input,
.form.light label > div.wrapper.no-input,
.content-block.dark label > div.wrapper.no-input,
form.light label > .no-input.no-input,
.form.light label > .no-input.no-input,
.content-block.dark label > .no-input.no-input,
form.light label > textarea.no-input,
.form.light label > textarea.no-input,
.content-block.dark label > textarea.no-input,
form.light label > select.no-input,
.form.light label > select.no-input,
.content-block.dark label > select.no-input {
  border-bottom: none !important;
}
form.light label input,
.form.light label input,
.content-block.dark label input,
form.light label div.wrapper,
.form.light label div.wrapper,
.content-block.dark label div.wrapper,
form.light label .no-input,
.form.light label .no-input,
.content-block.dark label .no-input,
form.light label textarea,
.form.light label textarea,
.content-block.dark label textarea,
form.light label select,
.form.light label select,
.content-block.dark label select {
  color: white !important;
}
form.light label.checkbox,
.form.light label.checkbox,
.content-block.dark label.checkbox {
  color: white;
}
:root {
  --wire:
    linear-gradient(
      -77.29deg,
      rgba(0, 0, 0, 0) 0%,
      #0d0c0c 44.8641628%),
    linear-gradient(
      98.68deg,
      rgba(0, 0, 0, 0) 0%,
      #0d0c0c 44.8641628%),
    linear-gradient(
      180deg,
      #332d2c 0%,
      rgba(51, 45, 44, 0) 100%);
  --bg-grey-cultured:
    linear-gradient(
      to left,
      #0d0c0c,
      #0d0c0c);
  --quote-font-family: Poly-Italic, sans-serif;
  --quote-font-size: 20px;
  --quote-line-height: normal;
  --quote-font-weight: 400;
  --quote-font-style: italic;
  --font-family-base: "Outfit", sans-serif;
  --font-family-regular: "Outfit-Regular", sans-serif;
  --font-family-bold: "Outfit-Bold", sans-serif;
  --font-family-heading: var(--font-family-bold);
  --font-family: var(--font-family-base);
  --glow-box-shadow: 0px 0px 20px 0px #d1e7e0;
  --glow2-box-shadow: 0px 0px 20px 0px rgba(209, 231, 224, 0.2);
  --redglow-box-shadow: 0px 0px 24px 0px #741e20, 0px 0px 20px 0px #741e20;
  --blackglow-box-shadow: 0px 10px 20px 0px #000000;
  --buttunshadow-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.25);
  --redneonglow-box-shadow: 0px 0px 20px 0px #ff0d00;
  --blueneonglow-box-shadow: 0px 0px 20px 0px #00fff0;
  --innershadow-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  --redneonglow2-box-shadow: 0px 0px 20px 0px #741e20, inset 0px 0px 1px 0px #000000;
  --dropshadow-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  --text-100: #f3eed9;
  --text-200: #d1e7e0;
  --text-300: #625755;
  --text-invers-100: #2f4858;
  --text-invers-150: #6d97b0;
  --text-invers-200: #741e20;
  --primary-100: #741e20;
  --primary-200: #ad514c;
  --bg-100: #0d0c0c;
  --bg-200: #332d2c;
  --bg-300: #eceaea;
  --neutral-white: #ffffff;
  --vertical-default-margin: 3rem;
  --small-max-width: 1392px;
  --normal-max-width: 1776px;
  --horizontal-default-margin: 1.2rem;
  --primary-050: #f7e6e6;
  --primary-075: #f0caca;
  --primary-150: #8c2f2f;
  --primary-300: #d17670;
  --text-000: #0d0c0c;
  --text-050: #202020;
  --text-075: #2b2a2a;
  --text-40: rgba(243, 238, 217, 0.4);
  --text-60: rgba(243, 238, 217, 0.6);
  --text-muted: rgba(243, 238, 217, 0.72);
  --text-subtle: rgba(243, 238, 217, 0.55);
  --text-reverse-100: #202020;
  --text: var(--text-100);
  --white-100: #ffffff;
  --grey-100: #f8f9fa;
  --grey-200: #dee2e6;
  --grey-300: #adb5bd;
  --grey-400: #667085;
  --grey-500: #475467;
  --yellow-100: #ffcf00;
  --confirm-100: #18a999;
  --red-100: var(--primary-100);
  --red-200: var(--primary-200);
  --red-300: #ff6a63;
  --blue-100: #0f4c75;
  --green-200: #18a999;
  --bg-050: #181414;
  --bg-075: #241f1f;
  --bg-150: #1c1818;
  --bg-250: #3f3a39;
  --surface-base: #191414;
  --surface-raised: #221d1c;
  --surface-overlay: #292322;
  --surface-muted: #2f2726;
  --surface-border: rgba(243, 238, 217, 0.12);
  --surface-border-soft: rgba(243, 238, 217, 0.08);
  --surface-border-strong: rgba(173, 81, 76, 0.35);
  --shadow-soft: 0 24px 48px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 14px 32px rgba(15, 23, 42, 0.35);
  --card-padding: 1.2rem;
  --default-gap: 1.2rem;
  --max-width: var(--normal-max-width);
  --focus-ring: 0 0 0 3px rgba(173, 81, 76, 0.24);
  --input-border: rgba(71, 84, 103, 0.24);
  --input-border-focus: rgba(173, 81, 76, 0.45);
  --input-focus-ring: 0 0 0 3px rgba(173, 81, 76, 0.25);
  --input-bg: rgba(255, 255, 255, 0.96);
  --input-bg-focus: #ffffff;
  --input-color: var(--text-050);
  --input-placeholder: rgba(243, 238, 217, 0.64);
  --input-label-color: var(--text-invers-150);
  --input-helper-color: rgba(243, 238, 217, 0.55);
  --input-checkbox-accent: var(--primary-200);
  --input-active-box-shadow: 0 0 1.2rem #dee2e6;
  --hover-color: var(--text-invers-100);
  --panel-bg: rgba(19, 18, 18, 0.86);
  --panel-border: rgba(243, 238, 217, 0.12);
  --panel-shadow: 0 18px 36px rgba(15, 23, 42, 0.25);
  --monospace-font:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  --kontext-primary: #ad514c;
  --kontext-primary-hover: #741e20;
  --kontext-accent: #18a999;
  --kontext-surface: #0d0c0c;
  --kontext-panel: #191414;
  --kontext-panel-muted: #221d1c;
  --kontext-panel-overlay: #2a2322;
  --kontext-border: rgba(243, 238, 217, 0.12);
  --kontext-border-strong: rgba(173, 81, 76, 0.35);
  --kontext-text: #f3eed9;
  --kontext-text-muted: rgba(243, 238, 217, 0.72);
  --kontext-text-subtle: rgba(243, 238, 217, 0.55);
  --kontext-header-text: #f3eed9;
  --kontext-error: #ff6a63;
  --kontext-outline: rgba(173, 81, 76, 0.55);
  --kontext-bubble-assistant: rgba(41, 35, 34, 0.92);
  --kontext-bubble-assistant-border: rgba(243, 238, 217, 0.08);
  --kontext-bubble-assistant-shadow: 0 12px 36px rgba(10, 8, 8, 0.48);
  --kontext-bubble-user: #ad514c;
  --kontext-bubble-user-shadow: 0 16px 36px rgba(173, 81, 76, 0.32);
  --kontext-button-shadow: 0 22px 48px rgba(10, 8, 8, 0.58);
  --kontext-scrollbar: rgba(173, 81, 76, 0.45);
  --kontext-shadow: 0 26px 52px rgba(10, 8, 8, 0.55);
  --skeleton-from: rgba(15, 23, 42, 0.06);
  --skeleton-mid: rgba(15, 23, 42, 0.14);
  --skeleton-to: rgba(15, 23, 42, 0.06);
  --card-fade-strong: rgba(173, 81, 76, 0.45);
  --card-fade-secondary: rgba(47, 72, 88, 0.55);
  --card-shadow: var(--redneonglow2-box-shadow);
  --list-accent: var(--primary-100);
  --list-hover-strength: 14%;
}
:root[data-kw-theme=KehrBlatt] {
  --font-family-base: "Neutra Text", sans-serif;
  --font-family-regular: "Neutra Text", sans-serif;
  --font-family-bold: "Neutra Text", sans-serif;
  --font-family-heading: var(--font-family-bold);
  --font-family: var(--font-family-base);
  --primary-100: #0ed163;
  --primary-050: color-mix(in srgb, #0ed163 16%, white);
  --primary-075: color-mix(in srgb, #0ed163 24%, white);
  --primary-150: color-mix(in srgb, #0ed163 88%, #0a8b49);
  --primary-200: color-mix(in srgb, #0ed163 78%, white);
  --primary-300: color-mix(in srgb, #0ed163 60%, white);
  --text-invers-200: color-mix(in srgb, #0ed163 68%, #0d0c0c);
  --confirm-100: #0ed163;
  --kontext-primary: var(--primary-200);
  --kontext-primary-hover: var(--primary-100);
  --kontext-accent: #3f3e3e;
  --kontext-border-strong: color-mix(in srgb, var(--primary-100) 32%, transparent);
  --kontext-outline: color-mix(in srgb, var(--primary-100) 45%, transparent);
  --kontext-bubble-user: var(--primary-200);
  --kontext-bubble-user-shadow: 0 16px 36px color-mix(in srgb, var(--primary-100) 32%, transparent);
  --kontext-scrollbar: color-mix(in srgb, var(--primary-100) 45%, transparent);
  --focus-ring: 0 0 0 3px color-mix(in srgb, var(--primary-200) 32%, transparent);
  --input-border-focus: color-mix(in srgb, var(--primary-100) 55%, transparent);
  --input-focus-ring: 0 0 0 3px color-mix(in srgb, var(--primary-100) 26%, transparent);
  --card-fade-strong: color-mix(in srgb, var(--primary-100) 38%, transparent);
  --card-fade-secondary: color-mix(in srgb, var(--primary-150) 28%, transparent);
  --card-shadow: 0 18px 42px color-mix(in srgb, var(--primary-100) 24%, rgba(0, 0, 0, 0.6));
  --list-hover-strength: 10%;
}
@media only screen and (min-width: 968px) and (max-width: 1223px) {
  :root {
    --horizontal-default-margin: 2.4rem;
  }
}
@media only screen and (min-width: 1440px) {
  :root {
    --horizontal-default-margin: 3.6rem;
  }
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/help/HelpDialog.esbuild-svelte-fake-css */
.help-modal-gb .content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-100);
  line-height: 1.5;
}
.help-modal-gb .lead-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.help-modal-gb .lead {
  margin: 0;
  color: var(--text-100);
}
.help-modal-gb .info-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid var(--border-1, rgba(255, 255, 255, 0.08));
  color: var(--text-100);
}
.help-modal-gb .sections {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.help-modal-gb .sections section {
  border: 1px solid white;
  display: flex;
  flex-direction: column;
  flex: 1 1 var(--min-col, 220px);
  min-width: min(100%, var(--min-col, 220px));
}
.help-modal-gb .sections section .section-header {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--text-invers-100);
  background-color: white;
  width: fit-content;
  padding: 2px 4px;
}
.help-modal-gb .sections section .section-header h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-invers-100);
}
.help-modal-gb .sections section ul {
  margin: 0;
  padding: 0.6rem;
  color: var(--text-100);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.help-modal-gb .sections section ul li {
  border: 1px solid #ffffff;
  padding: 0.6rem;
  line-height: 1.45;
  white-space: normal;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.help-modal-gb .sections section ul li * {
  white-space: inherit;
  overflow-wrap: inherit;
  word-break: inherit;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/layout/SidebarPanel.esbuild-svelte-fake-css */
.sidebarOverlay {
  position: fixed;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  top: 0;
  overflow: hidden;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-end;
  bottom: -200%;
  top: 200%;
  transition: all 0.25s ease;
  pointer-events: none;
}
.sidebarOverlay.visible {
  bottom: 0;
  top: 0;
  left: 0;
  pointer-events: auto;
}
@media only screen and (min-width: 1224px) {
  .sidebarOverlay {
    top: 0;
    bottom: 0;
    right: -100vw;
    left: 100vw;
  }
  .sidebarOverlay.visible {
    right: 0;
  }
}
.sidebarOverlay .dark-side {
  flex-grow: 1;
  height: 100%;
}
.sidebarOverlay .content-side {
  width: 100vw;
  display: flex;
  align-items: flex-end;
  flex-direction: column-reverse;
  height: 100%;
}
@media only screen and (min-width: 1224px) {
  .sidebarOverlay .content-side {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side {
    height: 70%;
  }
}
.sidebarOverlay .content-side .content-block {
  height: 100%;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side .content-block {
    height: unset;
  }
}
.sidebarOverlay .content-side .content-block.hideTillDispatch.hideIt {
  display: none;
}
.sidebarOverlay .content-side .content-block header .upper-bar {
  width: 100%;
  display: flex;
  height: 88px;
  background-color: var(--bg-100);
}
.sidebarOverlay .content-side .content-block header .upper-bar.noBg {
  background-color: transparent;
}
.sidebarOverlay .content-side .content-block header .upper-bar .crinkle {
  height: 100%;
  width: auto;
  margin-right: -1px;
}
.sidebarOverlay .content-side .content-block header .upper-bar .crinkle .crinkle-divider {
  stroke: transparent;
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
  shape-rendering: crispEdges;
}
.sidebarOverlay .content-side .content-block header .upper-bar .mobile-crinkle {
  display: none;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side .content-block header .upper-bar {
    height: 70px;
  }
  .sidebarOverlay .content-side .content-block header .upper-bar .desktop-crinkle {
    display: none;
  }
  .sidebarOverlay .content-side .content-block header .upper-bar .mobile-crinkle {
    display: block;
  }
}
.sidebarOverlay .content-side .content-block header .upper-bar h2 {
  background-color: var(--neutral-white);
  flex-grow: 1;
  color: var(--text-invers-100);
  display: flex;
  align-items: flex-end;
  font-weight: 700;
}
.sidebarOverlay .content-side .content-block header .upper-bar .close {
  background-color: var(--neutral-white);
  padding-top: 0.6rem;
  padding-right: 27px;
  color: var(--text-invers-100);
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
}
.sidebarOverlay .content-side .content-block header .upper-bar .close button {
  color: var(--text-invers-100);
  border: none;
  background: transparent;
  cursor: pointer;
}
.sidebarOverlay .content-side .content-block header .upper-bar .close .close-btn {
  transform: none;
}
.sidebarOverlay .content-side .content-block header .lower-bar {
  height: 1.2rem;
  background-color: white;
  width: 100%;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side .content-block.active {
    height: unset;
    max-height: calc(100vh - 200px);
    flex-grow: 1;
  }
}
.sidebarOverlay .content-side .content-block .simplebar-content {
  height: 100%;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side .content-block .simplebar-content {
    padding-top: 12px !important;
  }
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side .content-block .simplebar-track {
    margin-top: 12px !important;
    margin-bottom: 12px;
  }
}
.sidebarOverlay .content-side .content-block:only-child {
  height: 100%;
}
@media only screen and (min-width: 1224px) {
  .sidebarOverlay .content-side .content-block {
    width: 50vw;
    border-left: 1px solid var(--bg-invers-100);
  }
}
.sidebarOverlay .content-side .content-block .interaction-shield {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: transparent;
}
@media only screen and (min-width: 1224px) {
  .sidebarOverlay .content-side .content-block.darkOnDark {
    border-left: 1px solid var(--neutral-white);
  }
}
.sidebarOverlay .content-side .content-block.darkOnDark header .upper-bar .crinkle {
  background-color: var(--bg-100);
  position: relative;
}
.sidebarOverlay .content-side .content-block.darkOnDark header .upper-bar .crinkle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 2px;
  background-color: var(--bg-100);
  pointer-events: none;
}
.sidebarOverlay .content-side .content-block.darkOnDark header .upper-bar .crinkle .crinkle-divider {
  stroke: var(--neutral-white);
}
@media only screen and (min-width: 1440px) {
  .sidebarOverlay .content-side .content-block {
    width: max(40vw, 828px);
  }
}
@media only screen and (min-width: 1224px) {
  .sidebarOverlay .content-side .content-block.fullscreen {
    width: 100vw;
    max-width: 100vw;
    border-left: none;
  }
}
@media only screen and (min-width: 1224px) {
  .sidebarOverlay .content-side .content-block.collapsed {
    width: 88px;
    min-width: 88px;
    max-width: 88px;
    flex: 0 0 88px;
    border-left: 1px solid var(--bg-invers-100);
    overflow: hidden;
    background-color: var(--neutral-white);
  }
  .sidebarOverlay .content-side .content-block.collapsed.darkOnDark {
    border-left: 1px solid var(--neutral-white);
  }
  .sidebarOverlay .content-side .content-block.collapsed header .upper-bar {
    justify-content: flex-start;
  }
  .sidebarOverlay .content-side .content-block.collapsed header h2,
  .sidebarOverlay .content-side .content-block.collapsed header .close {
    display: none;
  }
  .sidebarOverlay .content-side .content-block.collapsed header .lower-bar {
    display: none;
  }
  .sidebarOverlay .content-side .content-block.collapsed .scroll-container {
    display: none;
  }
  .sidebarOverlay .content-side .content-block.collapsed .overlay-action-footer {
    display: none;
  }
}
.sidebarOverlay .content-side .content-block .scroll-container {
  flex: 1 1 auto;
  min-height: 0;
  padding-right: 1.6rem;
  transition: height 0.3s;
  background-color: var(--neutral-white);
  padding-top: 2.4rem;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side .content-block .scroll-container:not(.active) {
    height: 0;
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
  }
}
.sidebarOverlay .content-side .content-block .scroll-container .simplebar-track {
  background-color: rgba(13, 12, 12, 0.25);
  width: 7px;
  overflow: visible;
  margin-left: 5px;
  margin-right: 1.6rem;
  margin-top: 2.4rem;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side .content-block .scroll-container .simplebar-track {
    margin-right: 1rem;
  }
}
.sidebarOverlay .content-side .content-block .scroll-container .simplebar-scrollbar {
  transition-duration: 0ms !important;
  cursor: pointer;
}
.sidebarOverlay .content-side .content-block .scroll-container .simplebar-scrollbar::before {
  background-color: var(--bg-100);
  top: -2px;
  left: -2px;
  opacity: 1;
  border-radius: 0;
  width: 11px;
  height: calc(100% + 2px);
  transition-delay: 0s;
}
.sidebarOverlay .content-side .content-block .content-listing {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--neutral-white);
  display: flex;
  padding-left: 88px;
  padding-right: 0.4rem;
  flex-direction: column;
  flex-grow: 1;
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side .content-block .content-listing {
    padding-left: 38px;
    padding-right: 0.4rem;
  }
}
.sidebarOverlay .content-side .content-block .overlay-action-footer {
  position: sticky;
  bottom: 0;
  z-index: 1;
  padding-top: 0.4rem;
  padding-left: 88px;
  padding-right: 1.6rem;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 1.2rem);
  background-color: var(--neutral-white);
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side .content-block .overlay-action-footer {
    padding-left: 38px;
    padding-right: 1rem;
  }
}
.sidebarOverlay .content-side .content-block .overlay-action-footer .dialog-actions {
  display: flex;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid color-mix(in srgb, var(--text-invers-100) 14%, transparent);
}
@media only screen and (min-width: 1224px) {
  .sidebarOverlay .content-side .content-block.dark.collapsed {
    background-color: var(--bg-100);
  }
}
.sidebarOverlay .content-side .content-block.dark header .upper-bar {
  background-color: var(--neutral-white);
}
.sidebarOverlay .content-side .content-block.dark header .upper-bar.noBg {
  background-color: transparent;
}
.sidebarOverlay .content-side .content-block.dark header .upper-bar h2 {
  background-color: var(--bg-100);
  color: var(--text-100);
}
.sidebarOverlay .content-side .content-block.dark header .upper-bar .close {
  background-color: var(--bg-100);
}
.sidebarOverlay .content-side .content-block.dark header .upper-bar .close button {
  color: var(--text-100) !important;
  transform: translate(0, 25%);
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side .content-block.dark header .upper-bar .close button {
    transform: translate(-50%, 25%);
  }
}
.sidebarOverlay .content-side .content-block.dark header .upper-bar .close button svg {
  fill: var(--text-100);
}
.sidebarOverlay .content-side .content-block.dark header .upper-bar .close .close-btn {
  transform: translate(25%, 25%);
}
@media only screen and (min-width: 100px) and (max-width: 967px) {
  .sidebarOverlay .content-side .content-block.dark header .upper-bar .close .close-btn {
    transform: translate(-50%, 25%);
  }
}
.sidebarOverlay .content-side .content-block.dark header .lower-bar {
  background-color: var(--bg-100);
}
.sidebarOverlay .content-side .content-block.dark .scroll-container {
  background-color: var(--bg-100);
}
.sidebarOverlay .content-side .content-block.dark .scroll-container .simplebar-track {
  background-color: rgba(255, 255, 255, 0.2);
}
.sidebarOverlay .content-side .content-block.dark .scroll-container .simplebar-scrollbar::before {
  background-color: white;
}
.sidebarOverlay .content-side .content-block.dark .content-listing {
  background-color: var(--bg-100);
  color: var(--text-100);
}
.sidebarOverlay .content-side .content-block.dark .overlay-action-footer {
  background-color: var(--bg-100);
}
.sidebarOverlay .content-side .content-block.dark .overlay-action-footer .dialog-actions {
  border-top: 1px solid color-mix(in srgb, var(--text-100) 18%, transparent);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/overlay/Approvals.esbuild-svelte-fake-css */
.approval-modal {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.approval-modal .approval__description {
  margin: 0;
  color: var(--text-100);
  line-height: 1.5;
}
.approval-modal .approval__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
.approval-modal .approval__actions > * {
  flex: 1;
  width: 0px;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/overlay/Notifications.esbuild-svelte-fake-css */
.container.svelte-gp2hjn {
  position: fixed;
  top: 80px;
  right: var(--horizontal-default-margin);
  width: 300px;
  min-width: 300px;
  opacity: 0.9;
  z-index: 9999;
}
.container.svelte-gp2hjn .notification:where(.svelte-gp2hjn):nth-child(1) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .container.svelte-gp2hjn {
    width: auto;
  }
}
.notification.svelte-gp2hjn {
  padding: 20px;
  top: 40px;
  border-radius: 5px;
  z-index: 9999;
  margin-top: 12px;
  position: relative;
  max-width: 300px;
  min-width: 200px;
  width: fit-content;
  word-break: break-all;
}
.notification.info.svelte-gp2hjn {
  background-color: #464646;
  color: white !important;
}
.notification.success.svelte-gp2hjn {
  background-color: #8fca8f;
  color: black !important;
}
.notification.warning.svelte-gp2hjn {
  background-color: var(--primary-200);
  color: white !important;
}
.notification.error.svelte-gp2hjn {
  background-color: var(--primary-100);
  color: white !important;
}
.notification.activate.svelte-gp2hjn {
  animation: svelte-gp2hjn-fadeinUp 0.5s;
}
@keyframes svelte-gp2hjn-fadeinUp {
  from {
    position: absolute;
    transform: translateY(100%);
    opacity: 0;
    width: fit-content;
  }
  to {
    position: absolute;
    opacity: 1;
    transform: translateY(0);
    width: fit-content;
  }
}
.notification.svelte-gp2hjn .close:where(.svelte-gp2hjn) {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  opacity: 0.5;
  color: var(--neutral-white);
}
.blocker.svelte-gp2hjn {
  position: absolute;
  background: #525151b8;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2000;
}
.inModal.svelte-gp2hjn {
  top: initial;
  top: calc(50% - 50vh + 100px) !important;
  right: calc(50% - 50vw) !important;
}

/* fakecss:/workspace/packages/control-web-frame/src/routes/Root/RootHost.esbuild-svelte-fake-css */
.app-shell {
  width: 100%;
  color: var(--text-100);
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/assist/AssistWidgetMount.esbuild-svelte-fake-css */
.assist-embed.svelte-ny6s1u {
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.assist-embed__warning.svelte-ny6s1u {
  padding: 1rem;
  border: 1px dashed var(--border-90);
  border-radius: 10px;
  color: var(--text-80);
  background: color-mix(in srgb, var(--bg-100) 70%, transparent);
}

/* fakecss:/workspace/packages/control-web-frame/src/components/assist/AiImportFlowOverlay.esbuild-svelte-fake-css */
h3.svelte-1xsimhj {
  margin-bottom: 1.2rem;
}
.adapter-section-title.svelte-1xsimhj {
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
}
.btn.svelte-1xsimhj {
  color: white !important;
}
.adapter-buttons.svelte-1xsimhj {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.hint.svelte-1xsimhj {
  color: var(--text-100);
}

/* fakecss:/data/frontend/src/components/layout/HeaderActions.esbuild-svelte-fake-css */
.actions.svelte-1ipn2y {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.actions.missing.svelte-1ipn2y {
  flex-direction: column;
  align-items: flex-start;
}

/* fakecss:/data/frontend/src/components/layout/LogoHeader.esbuild-svelte-fake-css */
a.svelte-1t6y5vs {
  height: 70px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (max-width: 967px) {
  a.svelte-1t6y5vs {
    height: 50px;
  }
}
a.svelte-1t6y5vs img:where(.svelte-1t6y5vs) {
  height: 100%;
  width: auto;
  cursor: pointer;
}

/* fakecss:/data/frontend/src/components/LoadingScreen.esbuild-svelte-fake-css */
.loader-card.svelte-13m55av {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem 2.4rem;
  text-align: center;
  color: var(--text-100);
}
.loader-card.svelte-13m55av h2:where(.svelte-13m55av) {
  margin: 0;
  font-size: 1.4rem;
}
.loader-card.svelte-13m55av p:where(.svelte-13m55av) {
  margin: 0;
  color: rgba(243, 238, 217, 0.72);
}
.spinner.svelte-13m55av {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 4px solid rgba(173, 81, 76, 0.18);
  border-top-color: var(--primary-200);
  animation: svelte-13m55av-spin 1s linear infinite;
}
@keyframes svelte-13m55av-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/forms/ContactFormRow.esbuild-svelte-fake-css */
.contact-form-row.svelte-grmmc4 {
  display: grid;
  padding: 0 var(--horizontal-default-margin);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem;
  width: 100%;
  overflow: visible;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/runtime/AccessDeniedPage.esbuild-svelte-fake-css */
.access-denied.svelte-9tpvv1 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 3rem 2.4rem;
  text-align: start;
}
.access-denied.svelte-9tpvv1 h1:where(.svelte-9tpvv1) {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--text-100);
}
.access-denied.svelte-9tpvv1 .message:where(.svelte-9tpvv1) {
  margin: 0;
  color: color-mix(in srgb, var(--text-100) 80%, transparent);
  line-height: 1.5;
}
.access-denied.svelte-9tpvv1 .hint:where(.svelte-9tpvv1) {
  margin: 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--text-100) 70%, transparent);
}
.access-denied.svelte-9tpvv1 .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.access-denied.svelte-9tpvv1 .redirect-hint:where(.svelte-9tpvv1) {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--text-100) 65%, transparent);
}
.access-denied.svelte-9tpvv1 .redirect-hint:where(.svelte-9tpvv1) a:where(.svelte-9tpvv1) {
  color: var(--primary-200);
  text-decoration: underline;
}

/* fakecss:/workspace/packages/werk-web-sdk/ui/charts/components/TrendChartCard.esbuild-svelte-fake-css */
.trend-card.svelte-j24qim {
  display: flex;
  flex-direction: column;
}
.trend-card__header.svelte-j24qim {
  margin-bottom: 0.4rem;
}
.trend-card__header.svelte-j24qim h3:where(.svelte-j24qim) {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-100, #f8fafc);
}
.trend-card__header.svelte-j24qim p:where(.svelte-j24qim) {
  margin: 0.2rem 0 0;
  color: color-mix(in srgb, var(--text-100, #f8fafc) 68%, transparent);
  font-size: 0.86rem;
}
.trend-card__chart.svelte-j24qim {
  min-height: 260px;
}
.trend-card__empty.svelte-j24qim {
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--bg-200, #0f172a) 64%, transparent);
  color: color-mix(in srgb, var(--text-100, #f8fafc) 78%, transparent);
  border: 1px dashed color-mix(in srgb, var(--bg-200, #0f172a) 78%, transparent);
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Home/HomePage.esbuild-svelte-fake-css */
.home-page__state.svelte-1uuqa0z {
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--bg-200, #0f172a) 82%, #0b1224);
  color: var(--text-100, #e5e7eb);
}
.home-page__state.error.svelte-1uuqa0z {
  border: 1px solid color-mix(in srgb, #f04438 55%, transparent);
  color: #fca5a5;
}
.home-page__charts.svelte-1uuqa0z {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1080px) {
  .home-page__charts.svelte-1uuqa0z {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Voice/VoicePage.esbuild-svelte-fake-css */
.history-wrapper.svelte-1uurhmf {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  min-height: 50vh;
  flex-direction: column;
  gap: 0.8rem;
}
.voice-session-modal.svelte-1uurhmf {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.voice-session-modal.svelte-1uurhmf p:where(.svelte-1uurhmf) {
  color: var(--text-100);
}
.voice-session-modal__actions.svelte-1uurhmf {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Calls/tabs/AICall/components/outbound/OutboundCallForm.esbuild-svelte-fake-css */
.setup.svelte-17rrot9 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--text-invers-100);
}
.outbound.svelte-17rrot9 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.hint-row.svelte-17rrot9 {
  display: flex;
  gap: 0.6rem;
  flex-direction: column;
  align-items: flex-start;
}
.hint-row.svelte-17rrot9 .hint:where(.svelte-17rrot9) {
  color: color-mix(in srgb, var(--primary-200) 82%, var(--text-050));
  font-size: 0.9rem;
}
.row-actions.svelte-17rrot9 {
  width: 100%;
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Calls/tabs/AICall/components/outbound/OutboundBatchJobsPanel.esbuild-svelte-fake-css */
.jobs-hint.svelte-1f8ogl {
  margin: 0 0 0.9rem;
  color: var(--text-80);
}
.jobs-hint--error.svelte-1f8ogl {
  color: var(--red-100);
}
.jobs-hint--warning.svelte-1f8ogl {
  color: var(--orange-100);
}
.meta.svelte-1f8ogl,
.hint.svelte-1f8ogl {
  color: var(--text-80);
}
.row-actions.svelte-1f8ogl {
  display: flex;
  justify-content: flex-end;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Calls/tabs/AICall/components/outbound/batch/BatchCallCsvMappingOverlay.esbuild-svelte-fake-css */
.mapping-overlay.svelte-esnkpm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: min(100%, 28rem);
  color: var(--text-invers-100);
}
.intro.svelte-esnkpm {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.intro.svelte-esnkpm p:where(.svelte-esnkpm) {
  margin: 0;
}
.meta.svelte-esnkpm {
  color: var(--text-invers-150);
  font-size: 0.92rem;
}
.error-message.svelte-esnkpm {
  margin: 0;
  color: color-mix(in srgb, var(--red-300) 78%, var(--text-100));
}
.actions.svelte-esnkpm {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Calls/tabs/AICall/components/outbound/batch/BatchCallStepPhoneNumbers.esbuild-svelte-fake-css */
.summary.svelte-2m2dac {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}
.meta.svelte-2m2dac {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
  color: var(--batch-call-muted, var(--text-200));
  font-size: 0.92rem;
}
.empty-state.svelte-2m2dac {
  padding: 1.1rem 0;
  color: var(--text-100);
}
.empty-state.svelte-2m2dac p:where(.svelte-2m2dac) {
  margin: 0;
  color: var(--text-100);
}
.phone-cell.svelte-2m2dac {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.phone-cell.invalid.svelte-2m2dac {
  color: color-mix(in srgb, var(--yellow-100) 72%, var(--text-100));
}
.phone-cell__meta.svelte-2m2dac {
  color: var(--batch-call-muted, var(--text-200));
  font-size: 0.82rem;
}
.note-cell.svelte-2m2dac {
  color: var(--batch-call-muted, var(--text-200));
  max-width: 22rem;
  white-space: normal;
}
.row-actions.svelte-2m2dac {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.actions.svelte-2m2dac {
  margin-top: 1.2rem;
  display: flex;
  justify-content: flex-end;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Calls/tabs/AICall/components/outbound/batch/BatchCallStepTrigger.esbuild-svelte-fake-css */
.trigger-step.svelte-u0qwhi {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: var(--batch-call-text, var(--text-100));
}
.trigger-step.svelte-u0qwhi p:where(.svelte-u0qwhi) {
  margin: 0;
  color: var(--text-100);
}
.meta.svelte-u0qwhi {
  color: var(--batch-call-muted, var(--text-200));
}
.hint-copy.svelte-u0qwhi {
  color: var(--batch-call-muted, var(--text-200));
  font-size: 0.94rem;
}
.warning.svelte-u0qwhi {
  color: color-mix(in srgb, var(--yellow-100) 78%, var(--text-100));
}
.actions.svelte-u0qwhi {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Calls/tabs/AICall/components/outbound/batch/BatchCallStepResults.esbuild-svelte-fake-css */
.intro.svelte-ya9v5o {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.intro.svelte-ya9v5o p:where(.svelte-ya9v5o) {
  margin: 0;
  color: var(--text-100);
}
.meta.svelte-ya9v5o {
  color: var(--batch-call-muted, var(--text-200));
}
.error.svelte-ya9v5o {
  color: color-mix(in srgb, var(--red-100) 80%, var(--text-100));
}
.actions.svelte-ya9v5o {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Calls/tabs/AICall/components/outbound/batch/BatchCallPhoneEditOverlay.esbuild-svelte-fake-css */
.edit-overlay.svelte-17fnuo0 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: min(100%, 28rem);
  color: var(--text-invers-100);
}
.intro.svelte-17fnuo0 {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.intro.svelte-17fnuo0 p:where(.svelte-17fnuo0) {
  margin: 0;
}
.meta.svelte-17fnuo0 {
  color: var(--text-invers-150);
  font-size: 0.92rem;
}
.error-message.svelte-17fnuo0 {
  margin: 0;
  color: color-mix(in srgb, var(--red-300) 78%, var(--text-100));
}
.actions.svelte-17fnuo0 {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Calls/tabs/AICall/components/outbound/batch/BatchOutboundCallOverlay.esbuild-svelte-fake-css */
.batch-outbound-overlay.svelte-1pz8ruc {
  --batch-call-text: var(--text-100);
  --batch-call-muted: var(--text-200);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: fit-content;
  padding-bottom: 1rem;
  color: var(--batch-call-text);
}
.hidden-file-input.svelte-1pz8ruc {
  display: none;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Calls/tabs/AICall/AICallTab.esbuild-svelte-fake-css */
.ai-call-landing.svelte-jkobv8 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Calls/tabs/Softphone/components/dialer/VoiceDialer.esbuild-svelte-fake-css */
.dialer.svelte-1ojzqfp {
  width: 100%;
}
.form.svelte-1ojzqfp {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.status-pills.svelte-1ojzqfp {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.35rem;
  width: 700px;
  margin-right: 1.8rem;
  justify-content: flex-end;
}
.dialer__controls.svelte-1ojzqfp {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Calls/tabs/Softphone/SoftphoneTab.esbuild-svelte-fake-css */
.dialer-page.svelte-quvr86 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* fakecss:/data/frontend/src/routes/OverviewView/pages/Chat/ChatPage.esbuild-svelte-fake-css */
.history-wrapper.svelte-1wsenbt {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  min-height: 50vh;
  flex-direction: column;
  gap: 0.8rem;
}

/* fakecss:/data/frontend/src/routes/OverviewView/OverviewViewFrame.esbuild-svelte-fake-css */
.empty-card.svelte-oltrtr {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.empty-card.svelte-oltrtr h2:where(.svelte-oltrtr) {
  margin: 0;
}
.empty-card.svelte-oltrtr p:where(.svelte-oltrtr) {
  margin: 0;
  color: rgba(243, 238, 217, 0.7);
}
.empty-card.svelte-oltrtr .control-link:where(.svelte-oltrtr) {
  color: var(--primary-100);
  text-decoration: underline;
}
.empty-card.svelte-oltrtr .control-link:where(.svelte-oltrtr):hover {
  color: color-mix(in srgb, var(--primary-100) 80%, white 20%);
}
.empty-card.svelte-oltrtr .cta-row:where(.svelte-oltrtr) {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
}
.empty-card.svelte-oltrtr .link-button:where(.svelte-oltrtr) {
  border: 1px solid transparent;
  background: var(--primary-100);
  color: var(--text-invers-100);
  padding: 0.65rem 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.2s ease;
}
.empty-card.svelte-oltrtr .link-button:where(.svelte-oltrtr):hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.empty-card.svelte-oltrtr .link-button:where(.svelte-oltrtr):active {
  transform: translateY(0);
  box-shadow: none;
}
.page-template-host.fullscreen.svelte-oltrtr .page-template__layout {
  grid-template-columns: 1fr;
}
.page-template-host.fullscreen.svelte-oltrtr .page-template__primary {
  display: none;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/transcript/ChatBubble.esbuild-svelte-fake-css */
.chat-bubble.svelte-h6aj46 {
  max-width: var(--chat-bubble-max-width);
  width: 100%;
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: 12px;
}
.chat-bubble__assist-crinkle.svelte-h6aj46 path:where(.svelte-h6aj46),
.chat-bubble__user-crinkle.svelte-h6aj46 path:where(.svelte-h6aj46) {
  fill: var(--chat-bubble-bg);
}
.chat-bubble__content.svelte-h6aj46 {
  flex: 1;
  background: var(--chat-bubble-bg);
  color: var(--chat-bubble-text);
  padding: var(--chat-bubble-padding);
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/transcript/ChatMessageMeta.esbuild-svelte-fake-css */
.messages__meta.svelte-39qqpi {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: color-mix(in srgb, var(--kw-color-text-muted, var(--text-invers-120, #6e7776)) 85%, transparent);
  font-size: 0.8rem;
  line-height: 1.2;
}
.messages__meta.messages__meta--user.svelte-39qqpi {
  justify-content: flex-end;
}
.messages__meta.messages__meta--user.svelte-39qqpi .messages__meta-info:where(.svelte-39qqpi) {
  align-items: flex-end;
}
.messages__meta.svelte-39qqpi .messages__meta-info:where(.svelte-39qqpi) {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  text-transform: none;
}
.messages__meta.svelte-39qqpi .messages__meta-name:where(.svelte-39qqpi) {
  color: var(--kw-color-text-strong, var(--text-invers-100));
  font-size: 16px;
}
.messages__meta.svelte-39qqpi .messages__meta-time:where(.svelte-39qqpi) {
  font-size: 16px;
  padding-left: 12px;
  border-left: 1px solid #6e7776;
  color: color-mix(in srgb, var(--kw-color-text-subtle, var(--text-invers-120, #6e7776)) 70%, transparent);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/transcript/TranscriptChatMessage.esbuild-svelte-fake-css */
.messages__item.svelte-a9xc4h {
  display: flex;
}
.messages__item.messages__item--user.svelte-a9xc4h {
  justify-content: flex-end;
}
.messages__item.messages__item--user.svelte-a9xc4h .messages__content:where(.svelte-a9xc4h) {
  align-items: flex-end;
}
.messages__item.messages__item--turn-clickable.svelte-a9xc4h {
  cursor: pointer;
}
.messages__item.messages__item--turn-clickable.svelte-a9xc4h:hover .chat-bubble__content {
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--primary-100) 35%, transparent);
}
.messages__turn-button.svelte-a9xc4h {
  appearance: none;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  width: min(100%, var(--kw-message-max-width, 440px));
  display: flex;
  text-align: inherit;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.messages__turn-button.svelte-a9xc4h .messages__content:where(.svelte-a9xc4h) {
  width: 100%;
}
.messages__turn-button.svelte-a9xc4h:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary-100) 62%, transparent);
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.messages__content.svelte-a9xc4h {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: min(100%, var(--kw-message-max-width, 440px));
}
.messages__text.svelte-a9xc4h {
  margin: 0;
}
.messages__bubble-tooltip-host.svelte-a9xc4h {
  width: 100%;
}
.transcription-confidence-label.svelte-a9xc4h {
  position: absolute;
  right: 12px;
  bottom: 7px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--chat-bubble-text) 64%, transparent);
  background: color-mix(in srgb, #ffffff 55%, transparent);
  padding: 0.08rem 0.3rem;
  border-radius: 999px;
  pointer-events: none;
  text-align: right;
}
.transcription-confidence-bar.svelte-a9xc4h {
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: color-mix(in srgb, var(--chat-bubble-text) 14%, transparent);
  opacity: 0.48;
  pointer-events: none;
}
.transcription-confidence-bar__fill.svelte-a9xc4h {
  display: block;
  height: 100%;
  background: rgba(34, 135, 87, 0.75);
}
.transcription-confidence-bar__fill--medium.svelte-a9xc4h {
  background: rgba(122, 110, 45, 0.75);
}
.transcription-confidence-bar__fill--low.svelte-a9xc4h {
  background: rgba(142, 75, 73, 0.75);
}
.messages__bubble-tooltip-host.svelte-a9xc4h:hover .transcription-confidence-bar:where(.svelte-a9xc4h) {
  opacity: 0.78;
}
.messages__bubble-tooltip-host.svelte-a9xc4h:hover .transcription-confidence-label:where(.svelte-a9xc4h) {
  color: color-mix(in srgb, var(--chat-bubble-text) 82%, transparent);
  background: color-mix(in srgb, #ffffff 72%, transparent);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventAudioTranscriptionCompleted.esbuild-svelte-fake-css */
.event-card-content.svelte-1xv3ufx {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.6rem;
}
.messages.svelte-1xv3ufx {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}
.event-empty.svelte-1xv3ufx {
  margin: 0;
  font-style: italic;
  opacity: 0.7;
  color: var(--text-invers-100);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventAudioTranscriptionFailed.esbuild-svelte-fake-css */
.event-card-content.svelte-1rc1ear {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text-invers-100);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/widgets/JsonActionBox.esbuild-svelte-fake-css */
.json-action-box.svelte-1p6smf5 {
  --jsonPaddingLeft: 1rem;
  min-width: 0;
  overflow-x: auto;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventResponseFunctionCallArgumentsDone.esbuild-svelte-fake-css */
.event-card-content.svelte-9jbw87 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.6rem;
  color: var(--text-invers-100);
}
.event-card-content.svelte-9jbw87 > div:where(.svelte-9jbw87) {
  width: 100%;
}
.event-empty.svelte-9jbw87 {
  margin: 0;
  font-style: italic;
  opacity: 0.7;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventResponseDone.esbuild-svelte-fake-css */
.event-card-content.svelte-1gwntpf {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.6rem;
}
.messages.svelte-1gwntpf {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}
.event-empty.svelte-1gwntpf {
  margin: 0;
  font-style: italic;
  opacity: 0.7;
  color: var(--text-invers-100);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventError.esbuild-svelte-fake-css */
.event-card-content.svelte-hy9z1i {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text-invers-100);
  overflow: hidden;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/widgets/ExpandableMarkdown.esbuild-svelte-fake-css */
.expandable-markdown.svelte-1k01vz {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.markdown-wrapper.svelte-1k01vz {
  min-width: 0;
  overflow: hidden;
}
.toggle-button.svelte-1k01vz {
  align-self: flex-start;
  appearance: none;
  border: none;
  background: transparent;
  color: var(--primary-100, #133827);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.toggle-button.svelte-1k01vz:hover {
  opacity: 0.85;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventSessionLifecycle.esbuild-svelte-fake-css */
.event-session-lifecycle.event-card-content {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  width: 100%;
  min-width: 0;
}
.event-session-lifecycle.event-card-content > div {
  width: 0px;
  flex: 1;
  min-width: 0;
  max-width: 100%;
}
.event-session-lifecycle.event-card-content .markdown-wrapper {
  padding: 0px;
  overflow: hidden;
}
.event-session-lifecycle.event-card-content .event-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.event-session-lifecycle.event-card-content .event-list__item {
  display: flex;
  min-width: 0;
  max-width: 100%;
}
.event-session-lifecycle.event-card-content .event-list--tools > .event-list__item > span {
  min-width: 0;
  max-width: 100%;
}
.event-session-lifecycle.event-card-content .event-list--tools > .event-list__item > span > em {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
}
@media (max-width: 700px) {
  .event-session-lifecycle.event-card-content {
    flex-direction: column;
  }
  .event-session-lifecycle.event-card-content > div {
    width: 100%;
  }
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/chat/EventGeneric.esbuild-svelte-fake-css */
.event-generic.event-card-content.svelte-1s93v77 {
  width: 100%;
  min-width: 0;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventTranscriptDone.esbuild-svelte-fake-css */
.event-card-content.svelte-10kpnee {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.6rem;
}
.messages.svelte-10kpnee {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}
.event-empty.svelte-10kpnee {
  margin: 0;
  font-style: italic;
  opacity: 0.7;
  color: var(--text-invers-100);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventToolResult.esbuild-svelte-fake-css */
.event-tool-result.event-card-content.svelte-1qf8vhv {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  color: var(--text-invers-100);
}
.event-tool-result.event-card-content.svelte-1qf8vhv > div:where(.svelte-1qf8vhv) {
  width: 0px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 700px) {
  .event-tool-result.event-card-content.svelte-1qf8vhv {
    flex-direction: column;
  }
  .event-tool-result.event-card-content.svelte-1qf8vhv > div:where(.svelte-1qf8vhv) {
    width: 100%;
  }
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventResponseCancel.esbuild-svelte-fake-css */

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventCallControl.esbuild-svelte-fake-css */
.event-call-control.event-card-content.svelte-1j2jg9f {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  min-width: 0;
}
.event-call-control__stack.svelte-1j2jg9f {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  min-width: 0;
}
.event-call-control__text.svelte-1j2jg9f {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventEscalationDispatch.esbuild-svelte-fake-css */
.event-escalation-dispatch.event-card-content.svelte-11z918v {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  min-width: 0;
}
.event-escalation-dispatch__badges.svelte-11z918v {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.event-escalation-dispatch__grid.svelte-11z918v {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem;
  width: 100%;
  min-width: 0;
}
.event-escalation-dispatch__text.svelte-11z918v {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/chat/EventConversationItem.esbuild-svelte-fake-css */
.event-card-content.svelte-11vi0gi {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}
.event-empty.svelte-11vi0gi {
  margin: 0;
  opacity: 0.82;
  color: var(--text-invers-100);
  font-size: 0.76rem;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventConversationItem.esbuild-svelte-fake-css */
.event-card-content.svelte-1i074rc {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}
.event-empty.svelte-1i074rc {
  margin: 0;
  opacity: 0.82;
  color: var(--text-invers-100);
  font-size: 0.76rem;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventConversationItemDelete.esbuild-svelte-fake-css */
.event-card-content.svelte-10g7iyn {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text-invers-100);
  padding: 0.6rem;
}
.event-meta.svelte-10g7iyn {
  display: flex;
  gap: 0.35rem;
  align-items: baseline;
  opacity: 0.9;
}
.event-meta.svelte-10g7iyn .label:where(.svelte-10g7iyn) {
  font-weight: 600;
}
.event-meta.svelte-10g7iyn .muted:where(.svelte-10g7iyn) {
  opacity: 0.75;
}
code.svelte-10g7iyn,
.event-pre.svelte-10g7iyn {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
}
.event-details.svelte-10g7iyn {
  border: 1px solid color-mix(in srgb, var(--text-invers-100) 14%, transparent);
  background: color-mix(in srgb, var(--bg-300) 65%, transparent);
  padding: 0.35rem 0.4rem;
}
.event-details.svelte-10g7iyn summary:where(.svelte-10g7iyn) {
  cursor: pointer;
  font-weight: 600;
  opacity: 0.9;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  -webkit-user-select: none;
  user-select: none;
}
.event-details.svelte-10g7iyn summary:where(.svelte-10g7iyn)::-webkit-details-marker {
  display: none;
}
.event-details.svelte-10g7iyn summary:where(.svelte-10g7iyn)::marker {
  content: "";
}
.event-details.svelte-10g7iyn summary:where(.svelte-10g7iyn)::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.75;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.event-details[open].svelte-10g7iyn summary:where(.svelte-10g7iyn)::after {
  transform: rotate(45deg);
  opacity: 0.9;
}
.event-details.svelte-10g7iyn .event-pre:where(.svelte-10g7iyn) {
  margin: 0.35rem 0 0 0;
  white-space: pre-wrap;
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--text-invers-100);
}
.event-empty.svelte-10g7iyn {
  margin: 0;
  font-style: italic;
  opacity: 0.7;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventHistorySummarized.esbuild-svelte-fake-css */
.items.svelte-kd7a75 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.summary-text.svelte-kd7a75,
.empty-text.svelte-kd7a75 {
  margin: 0;
  line-height: 1.35;
}
.empty-text.svelte-kd7a75 {
  font-style: italic;
  opacity: 0.72;
}
.turn-list.svelte-kd7a75 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.turn-role.svelte-kd7a75 {
  font-weight: 700;
  margin-right: 0.35rem;
  opacity: 0.92;
}
.turn-text.svelte-kd7a75 {
  opacity: 0.92;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/voice/EventDebugMessage.esbuild-svelte-fake-css */
.event-card-content.svelte-1b59r96 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text-invers-100);
  padding: 0.6rem;
}
.event-text.svelte-1b59r96 {
  margin: 0;
  white-space: pre-wrap;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  background: rgba(19, 56, 39, 0.05);
  border-radius: 0.3rem;
  padding: 0.45rem 0.55rem;
}
.event-details.svelte-1b59r96 {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.details-title.svelte-1b59r96 {
  font-weight: 600;
  opacity: 0.9;
}
.details-pre.svelte-1b59r96 {
  margin: 0;
  white-space: pre-wrap;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  background: rgba(19, 56, 39, 0.05);
  border-radius: 0.3rem;
  padding: 0.45rem 0.55rem;
}
.event-empty.svelte-1b59r96 {
  margin: 0;
  font-style: italic;
  opacity: 0.7;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/events/chat/WidgetEventCard.esbuild-svelte-fake-css */
.kw-widget-event {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.6rem;
  color: var(--text-invers-100);
}
.kw-widget-event .event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0.85;
}
.kw-widget-event .meta-label {
  font-weight: 600;
}
.kw-widget-event .label {
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.68rem;
}
.kw-widget-event code,
.kw-widget-event .mono {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 0.78rem;
  line-height: 1.35;
  white-space: pre-wrap;
  word-break: break-word;
}
.kw-widget-event .widget-summary {
  font-size: 0.9rem;
  line-height: 1.35;
}
.kw-widget-event .widget-kv {
  display: grid;
  grid-template-columns: 6.2rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: baseline;
  font-size: 0.86rem;
  line-height: 1.3;
}
.kw-widget-event .widget-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  list-style: none;
}
.kw-widget-event .widget-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.35rem 0.4rem;
  border: 1px solid color-mix(in srgb, var(--text-invers-100) 14%, transparent);
  background: color-mix(in srgb, var(--bg-300) 65%, transparent);
}
.kw-widget-event .widget-list__title {
  font-weight: 700;
}
.kw-widget-event .widget-list__detail {
  opacity: 0.8;
  font-size: 0.82rem;
  line-height: 1.25;
}
.kw-widget-event .widget-list__more {
  opacity: 0.75;
  font-style: italic;
  font-size: 0.82rem;
  list-style: none;
}
.kw-widget-event .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.kw-widget-event .chip {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.5rem;
  border: 1px solid color-mix(in srgb, var(--primary-100) 28%, transparent);
  background: color-mix(in srgb, var(--bg-300) 65%, transparent);
  font-size: 0.8rem;
  line-height: 1.2;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.kw-widget-event .chip--muted {
  border-color: color-mix(in srgb, var(--text-invers-100) 14%, transparent);
  opacity: 0.85;
}
.kw-widget-event .steps {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  list-style: none;
}
.kw-widget-event .steps__item {
  display: grid;
  grid-template-columns: 0.6rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
  padding: 0.35rem 0.4rem;
  border: 1px solid color-mix(in srgb, var(--text-invers-100) 14%, transparent);
  background: color-mix(in srgb, var(--bg-300) 65%, transparent);
}
.kw-widget-event .steps__dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid color-mix(in srgb, var(--text-invers-100) 25%, transparent);
  background: color-mix(in srgb, var(--text-invers-100) 12%, transparent);
  margin-top: 0.15rem;
}
.kw-widget-event .steps__label {
  font-weight: 700;
  line-height: 1.25;
}
.kw-widget-event .steps__detail {
  grid-column: 2;
  opacity: 0.82;
  font-size: 0.82rem;
  line-height: 1.25;
  margin-top: 0.05rem;
}
.kw-widget-event .steps__more {
  opacity: 0.75;
  font-style: italic;
  font-size: 0.82rem;
  list-style: none;
}
.kw-widget-event .steps__item[data-status=done] .steps__dot,
.kw-widget-event .steps__item[data-status=finished_successful] .steps__dot {
  background: var(--confirm-100);
  border-color: color-mix(in srgb, var(--confirm-100) 75%, var(--bg-100) 25%);
}
.kw-widget-event .steps__item[data-status=active] .steps__dot,
.kw-widget-event .steps__item[data-status=running] .steps__dot {
  background: var(--primary-100);
  border-color: color-mix(in srgb, var(--primary-100) 75%, var(--bg-100) 25%);
}
.kw-widget-event .steps__item[data-status=error] .steps__dot,
.kw-widget-event .steps__item[data-status=finished_with_error] .steps__dot {
  background: var(--red-100);
  border-color: color-mix(in srgb, var(--red-100) 75%, var(--bg-100) 25%);
}
.kw-widget-event .steps__item[data-status=finished_with_warnings] .steps__dot {
  background: var(--yellow-100);
  border-color: color-mix(in srgb, var(--yellow-100) 75%, var(--bg-100) 25%);
}
.kw-widget-event .widget-footnote {
  opacity: 0.8;
  font-size: 0.82rem;
  line-height: 1.25;
  font-style: italic;
}
.kw-widget-event .widget-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.kw-widget-event .widget-text p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
}
.kw-widget-event .widget-text__more {
  opacity: 0.75;
  font-style: italic;
  font-size: 0.82rem;
}
.kw-widget-event .raw {
  margin: 0;
  padding: 0.5rem 0.6rem;
  border: 1px solid color-mix(in srgb, var(--text-invers-100) 14%, transparent);
  background: color-mix(in srgb, var(--bg-300) 65%, transparent);
  font-size: 0.78rem;
  line-height: 1.3;
  overflow-x: auto;
  white-space: pre;
}
.kw-widget-event .widget-empty {
  opacity: 0.75;
  font-style: italic;
  font-size: 0.82rem;
}
@media (max-width: 700px) {
  .kw-widget-event .widget-kv {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.18rem;
  }
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/StreamingRow.esbuild-svelte-fake-css */
.section.streaming.svelte-1fdpqzj {
  border-left: 2px solid var(--primary-100);
  padding-left: 0.75rem;
  background: rgba(19, 56, 39, 0.03);
}
.section.streaming.svelte-1fdpqzj .response-header:where(.svelte-1fdpqzj) {
  align-items: center;
}
.section.streaming.svelte-1fdpqzj .response-header:where(.svelte-1fdpqzj) .streaming-status:where(.svelte-1fdpqzj) {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-100);
  background: rgba(19, 56, 39, 0.08);
  border-radius: 0.35rem;
  padding: 0.1rem 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section.streaming.svelte-1fdpqzj .streaming-message:where(.svelte-1fdpqzj) {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
}
.section.streaming.svelte-1fdpqzj .streaming-message:where(.svelte-1fdpqzj) .streaming-text:where(.svelte-1fdpqzj) {
  flex: 1;
}
.section.streaming.svelte-1fdpqzj .streaming-message:where(.svelte-1fdpqzj) .streaming-pre:where(.svelte-1fdpqzj) {
  margin: 0;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  background: rgba(19, 56, 39, 0.05);
  border-radius: 0.3rem;
  padding: 0.35rem 0.5rem;
  flex: 1;
  white-space: pre-wrap;
}
.section.streaming.svelte-1fdpqzj .streaming-message:where(.svelte-1fdpqzj) .streaming-cursor:where(.svelte-1fdpqzj) {
  display: inline-block;
  width: 0.45ch;
  height: 1.1em;
  background-color: currentColor;
  border-radius: 1px;
  margin-top: 0.1rem;
  animation: svelte-1fdpqzj-streamingCursorBlink 1s steps(1) infinite;
  align-self: flex-end;
}
@keyframes svelte-1fdpqzj-streamingCursorBlink {
  0%, 45% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/specialized/EventAnalyser.esbuild-svelte-fake-css */
.wrapper {
  --jsonPaddingLeft: 1rem;
}
.summary-section h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}
.summary-section p {
  margin: 0 0 0.8rem;
  line-height: 1.4;
  color: var(--text-100);
}
.summary-section ul {
  margin: 0;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.summary-section .muted {
  opacity: 0.72;
  font-style: italic;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/overlays/EventAnalyserOverlayContent.esbuild-svelte-fake-css */
.overlay-content.svelte-1p3gexq {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/overlays/CurrentStateOverlayContent.esbuild-svelte-fake-css */
.overlay-content.svelte-45ydb {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.state-note.svelte-45ydb,
.state-error.svelte-45ydb {
  margin: 0;
  line-height: 1.45;
  color: var(--text-100);
}
.state-error.svelte-45ydb {
  color: var(--error-100, #b42318);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/ResponseHeader.esbuild-svelte-fake-css */
.response-header.svelte-15pepvt {
  padding: 0.2rem 0.6rem;
  border-bottom: 1px solid var(--primary-100);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-100);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: space-between;
}
.response-header.svelte-15pepvt .header-title:where(.svelte-15pepvt) {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  min-width: 0;
  flex: 1 1 auto;
}
.response-header.svelte-15pepvt .header-title:where(.svelte-15pepvt) .header-title__text:where(.svelte-15pepvt) {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.response-header.svelte-15pepvt .event-ref:where(.svelte-15pepvt) {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--primary-100) 26%, transparent);
  padding: 0.04rem 0.34rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: color-mix(in srgb, var(--primary-100) 92%, transparent);
  background: color-mix(in srgb, var(--primary-100) 6%, transparent);
  white-space: nowrap;
  border-radius: 0;
}
.response-header.svelte-15pepvt .header-actions:where(.svelte-15pepvt) {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  flex: 0 0 auto;
}
@media (max-width: 700px) {
  .response-header.svelte-15pepvt {
    align-items: flex-start;
    gap: 0.35rem;
  }
  .response-header.svelte-15pepvt .header-actions:where(.svelte-15pepvt) {
    margin-left: auto;
  }
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/eventViewer/EventViewer.esbuild-svelte-fake-css */
.chat-page.svelte-1vztnb5 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
  min-height: 0;
  overflow-x: clip;
}
.chat-page.svelte-1vztnb5 .chat-column:where(.svelte-1vztnb5) {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding-right: 24px;
  box-sizing: border-box;
}
.chat-page.svelte-1vztnb5 .chat-column:where(.svelte-1vztnb5) .chat-scroll:where(.svelte-1vztnb5) {
  flex: 1;
  height: 100%;
  min-height: 0;
  min-width: 0;
}
.chat-page.svelte-1vztnb5 .chat-column:where(.svelte-1vztnb5) .chat-scroll:where(.svelte-1vztnb5) .simplebar-track.simplebar-vertical {
  right: -18px;
}
.chat-page.svelte-1vztnb5 .chat-column:where(.svelte-1vztnb5) .chat-scroll:where(.svelte-1vztnb5) .simplebar-content-wrapper {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.chat-page.svelte-1vztnb5 .chat-column:where(.svelte-1vztnb5) .chat-scroll:where(.svelte-1vztnb5) .simplebar-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-right: 0.4rem;
  min-height: 100%;
  box-sizing: border-box;
}
.chat-page.svelte-1vztnb5 .section:where(.svelte-1vztnb5) {
  width: 100%;
  font-size: 0.9rem;
  padding: 0 0.6rem;
}
.chat-page.svelte-1vztnb5 .event-row:where(.svelte-1vztnb5) {
  scroll-margin-top: 0.6rem;
}
.chat-page.svelte-1vztnb5 .event-row--jump-highlight {
  outline: 2px solid color-mix(in srgb, var(--primary-100) 48%, transparent);
  outline-offset: -1px;
  background: color-mix(in srgb, var(--primary-100) 8%, transparent);
  transition: background-color 220ms ease;
}
.chat-page.svelte-1vztnb5 .event-viewer__loading:where(.svelte-1vztnb5) {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-page.svelte-1vztnb5 .event-viewer__spinner:where(.svelte-1vztnb5) {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 4px solid rgba(173, 81, 76, 0.18);
  border-top-color: var(--primary-200);
  animation: svelte-1vztnb5-eventViewerSpin 0.9s linear infinite;
}
@media (max-width: 700px) {
  .chat-page.svelte-1vztnb5 .chat-column:where(.svelte-1vztnb5) {
    padding-right: 10px;
  }
  .chat-page.svelte-1vztnb5 .chat-column:where(.svelte-1vztnb5) .chat-scroll:where(.svelte-1vztnb5) .simplebar-track.simplebar-vertical {
    right: -6px;
  }
  .chat-page.svelte-1vztnb5 .chat-column:where(.svelte-1vztnb5) .chat-scroll:where(.svelte-1vztnb5) .simplebar-content {
    padding-right: 0.15rem;
  }
  .chat-page.svelte-1vztnb5 .section:where(.svelte-1vztnb5) {
    padding: 0 0.35rem;
  }
}
@keyframes svelte-1vztnb5-eventViewerSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.kw-simplebar .simplebar-track {
  background: #d1d6d6;
  border-radius: 0;
  opacity: 1;
  overflow: visible;
}
.kw-simplebar .simplebar-track.simplebar-vertical {
  width: 8px;
  top: 0;
  bottom: 0;
  background: #d1d6d6;
  box-shadow: inset 2px 0 0 var(--neutral-white, #ffffff), inset -2px 0 0 var(--neutral-white, #ffffff);
}
.kw-simplebar .simplebar-track.simplebar-vertical .simplebar-scrollbar {
  pointer-events: all;
  cursor: grab;
}
.kw-simplebar .simplebar-track.simplebar-vertical .simplebar-scrollbar:active {
  cursor: grabbing;
}
.kw-simplebar .simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
  background: #0f1111;
  opacity: 1;
  width: 12px;
  left: -2px;
  right: auto;
  border-radius: inherit;
}
.kw-simplebar .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
@media (max-width: 700px) {
  .kw-simplebar .simplebar-track.simplebar-vertical {
    width: 6px;
  }
  .kw-simplebar .simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
    width: 8px;
    left: -1px;
  }
}

/* fakecss:/data/node_modules/@xyflow/svelte/dist/lib/components/EdgeLabel/EdgeLabel.esbuild-svelte-fake-css */
.transparent.svelte-1wg91mu {
  background: transparent;
}

/* fakecss:/data/node_modules/@xyflow/svelte/dist/lib/components/A11yDescriptions/A11yDescriptions.esbuild-svelte-fake-css */
.a11y-hidden.svelte-13pq11u {
  display: none;
}
.a11y-live-msg.svelte-13pq11u {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  clip-path: inset(100%);
}

/* fakecss:/data/node_modules/@xyflow/svelte/dist/lib/components/Selection/Selection.esbuild-svelte-fake-css */
.svelte-flow__selection.svelte-1vr3gfi {
  position: absolute;
  top: 0;
  left: 0;
}

/* fakecss:/data/node_modules/@xyflow/svelte/dist/lib/components/NodeSelection/NodeSelection.esbuild-svelte-fake-css */
.svelte-flow__selection-wrapper.svelte-sf2y5e {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  pointer-events: all;
}
.svelte-flow__selection-wrapper.svelte-sf2y5e:focus,
.svelte-flow__selection-wrapper.svelte-sf2y5e:focus-visible {
  outline: none;
}

/* fakecss:/data/node_modules/@xyflow/svelte/dist/lib/container/SvelteFlow/Wrapper.esbuild-svelte-fake-css */
.svelte-flow.svelte-mkap6j {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background-color: var(--background-color, var(--background-color-default));
}
:root {
  --background-color-default: #fff;
  --background-pattern-color-default: #ddd;
  --minimap-mask-color-default: rgb(240, 240, 240, 0.6);
  --minimap-mask-stroke-color-default: none;
  --minimap-mask-stroke-width-default: 1;
  --controls-button-background-color-default: #fefefe;
  --controls-button-background-color-hover-default: #f4f4f4;
  --controls-button-color-default: inherit;
  --controls-button-color-hover-default: inherit;
  --controls-button-border-color-default: #eee;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/graph/nodes/AgentNode.esbuild-svelte-fake-css */
.node.agent.svelte-1xklvz0 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: white;
}
.node.agent.svelte-1xklvz0 .title:where(.svelte-1xklvz0) {
  padding-right: 1.2rem;
}
.node.agent.svelte-1xklvz0 .content:where(.svelte-1xklvz0) {
  padding: 0.6rem;
  padding-top: 1.2rem;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/graph/nodes/DefaultNode.esbuild-svelte-fake-css */
.node.default.svelte-nxyje4 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: white;
}
.node.default.svelte-nxyje4 .title:where(.svelte-nxyje4) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.6rem;
  padding-right: 1.2rem;
}
.node.default.svelte-nxyje4 .content:where(.svelte-nxyje4) {
  padding: 0.6rem;
  padding-top: 1rem;
  color: var(--text-neutral-100);
  font-size: 0.94rem;
  line-height: 1.45;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/graph/edges/ConditionalEdge.esbuild-svelte-fake-css */
.conditional-edge {
  font-family: var(--font-family-base, "Outfit", sans-serif);
  pointer-events: auto;
}
.conditional-edge__path {
  stroke: color-mix(in srgb, var(--primary-100) 60%, rgba(255, 255, 255, 0.86));
  stroke-width: 2.4px;
  fill: none;
  filter: drop-shadow(0 8px 18px rgba(63, 98, 215, 0.15));
  opacity: 0.92;
  stroke-dasharray: 8 4;
  transition: stroke 0.2s ease;
}
.conditional-edge.selected .conditional-edge__path {
  stroke: color-mix(in srgb, var(--primary-100) 85%, rgba(255, 255, 255, 0.92));
}
.conditional-edge__label {
  font-size: 0.75rem;
  color: var(--text-invers-100);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.edge-label {
  font-family: var(--font-family-regular, var(--font-family-base, "Outfit", sans-serif));
  color: var(--text-invers-100) !important;
}
.label-bg {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.94);
  padding: 4px 10px;
  border-radius: 0;
  box-shadow: 0 6px 14px rgba(63, 98, 215, 0.12);
  border: 1px solid color-mix(in srgb, var(--primary-100) 24%, transparent);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/graph/edges/OrthogonalEdge.esbuild-svelte-fake-css */
.orthogonal-edge.svelte-17s6bjs {
  font-family: var(--font-family-base, "Outfit", sans-serif);
  pointer-events: auto;
}
.orthogonal-edge__path {
  stroke: color-mix(in srgb, var(--text-invers-100) 48%, rgba(0, 0, 0, 0.42));
  stroke-width: 2.2px;
  fill: none;
  opacity: 0.9;
  transition: stroke 0.2s ease;
}
.orthogonal-edge.selected .orthogonal-edge__path {
  stroke: color-mix(in srgb, var(--primary-100) 60%, rgba(0, 0, 0, 0.42));
}
.orthogonal-edge__label {
  font-size: 0.72rem;
  color: color-mix(in srgb, var(--primary-100) 72%, var(--text-invers-100));
  letter-spacing: 0.04em;
}
.orthogonal-edge.svelte-17s6bjs .edge-label:where(.svelte-17s6bjs) {
  font-family: var(--font-family-regular, var(--font-family-base, "Outfit", sans-serif));
}
.label-bg.svelte-17s6bjs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.94);
  padding: 4px 10px;
  border-radius: 0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--primary-100) 18%, transparent);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/graph/FilterBlock.esbuild-svelte-fake-css */
button.svelte-1wzva2c {
  display: flex;
  flex: 0 0 auto;
  max-width: 100%;
  border-radius: 4px;
  background: var(--bg-300);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
button.active.svelte-1wzva2c {
  background-color: white;
}
button.svelte-1wzva2c .title:where(.svelte-1wzva2c) {
  padding: 9.5px 12px;
  margin-right: 45px;
  line-height: 0.7rem;
  height: 100%;
  font-size: 1rem;
  color: var(--text-invers-100);
  display: flex;
  justify-content: space-between;
  background-color: var(--bg-300);
  position: relative;
}
button.svelte-1wzva2c .title:where(.svelte-1wzva2c) span:where(.svelte-1wzva2c) {
  white-space: nowrap;
  max-width: 16rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
button.svelte-1wzva2c .title:where(.svelte-1wzva2c) svg:where(.svelte-1wzva2c) {
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  display: none;
  transform: translateX(calc(100% - 2px));
  width: auto;
  object-fit: contain;
}
button.svelte-1wzva2c .right:where(.svelte-1wzva2c) {
  display: flex;
  background-color: var(--bg-100);
  height: 100%;
  padding: 9.5px 12px;
  align-items: center;
  position: relative;
}
button.svelte-1wzva2c .right:where(.svelte-1wzva2c) svg:where(.svelte-1wzva2c) {
  height: 100%;
  top: 0;
  position: absolute;
  transform: translateX(calc(-100% - 11.5px));
  width: auto;
  object-fit: contain;
}
button.active.svelte-1wzva2c .title:where(.svelte-1wzva2c) {
  background-color: var(--bg-100);
  color: var(--neutral-white);
  margin-right: 16px;
}
button.active.svelte-1wzva2c .title:where(.svelte-1wzva2c) svg:where(.svelte-1wzva2c) {
  display: block;
}
button.active.deletable.svelte-1wzva2c .title:where(.svelte-1wzva2c) {
  margin-right: 45px;
}
@media (max-width: 700px) {
  button.svelte-1wzva2c .title:where(.svelte-1wzva2c) {
    padding: 8px 10px;
    margin-right: 34px;
    font-size: 0.92rem;
  }
  button.svelte-1wzva2c .title:where(.svelte-1wzva2c) span:where(.svelte-1wzva2c) {
    max-width: 8.6rem;
  }
  button.svelte-1wzva2c .right:where(.svelte-1wzva2c) {
    padding: 8px 10px;
  }
  button.active.svelte-1wzva2c .title:where(.svelte-1wzva2c) {
    margin-right: 12px;
  }
  button.active.deletable.svelte-1wzva2c .title:where(.svelte-1wzva2c) {
    margin-right: 34px;
  }
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/graph/GraphToolbar.esbuild-svelte-fake-css */
.toolbar.svelte-4bo8ca {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 52px;
  min-width: 0;
  overflow: hidden;
}
.toolbar.svelte-4bo8ca .filter-wrapper:where(.svelte-4bo8ca) {
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 12px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex: 1;
}
.toolbar.svelte-4bo8ca .filter-wrapper:where(.svelte-4bo8ca) button {
  flex: 0 0 auto;
}
.toolbar.svelte-4bo8ca .filter-wrapper:where(.svelte-4bo8ca)::-webkit-scrollbar {
  display: none;
}
.error.svelte-4bo8ca {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  color: #cb4444;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.35rem;
}
.error.svelte-4bo8ca .dot:where(.svelte-4bo8ca) {
  font-size: 0.8rem;
}
@media (max-width: 700px) {
  .toolbar.svelte-4bo8ca {
    min-height: auto;
  }
  .toolbar.svelte-4bo8ca .filter-wrapper:where(.svelte-4bo8ca) {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 0.45rem;
  }
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/graph/AgentGraph.esbuild-svelte-fake-css */
.agent-graph__toolbar-shell {
  min-width: 0;
  width: 100%;
}
.agent-graph__toolbar-shell--with-corner {
  box-sizing: border-box;
  padding-right: 3rem;
}
@media (max-width: 700px) {
  .agent-graph__toolbar-shell--with-corner {
    padding-right: 4.2rem;
  }
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/GraphColumn.esbuild-svelte-fake-css */

/* fakecss:/workspace/packages/werk-web-sdk/ui/assist/EmbeddedChatFrame.esbuild-svelte-fake-css */
.embedded-chat-frame.svelte-1va3c4b {
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.chat-wrapper.svelte-1va3c4b {
  width: 100%;
  height: var(--chat-frame-height, 100%);
  min-height: 0;
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/specialized/chat/ChatWidgetPreviewPanel.esbuild-svelte-fake-css */
.chat-widget-row__preview.svelte-l2gd9j {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.chat-widget-row__status.svelte-l2gd9j {
  color: var(--text-invers-100);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/specialized/chat/ChatbotRow.esbuild-svelte-fake-css */
.chat-widget-row.svelte-z6ie0 {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  height: 100%;
  min-height: 0;
  padding: 0;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/components/specialized/VoiceConnector.esbuild-svelte-fake-css */
.voice-connector {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 0.6rem;
  position: sticky;
  bottom: 0;
  width: 100%;
  left: 0;
  background-color: white;
  z-index: 9999;
}
.voice-connector .input-area {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  flex-grow: 1;
}
.voice-connector .input-area textarea {
  min-height: 60px !important;
}
.voice-connector .action-row {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  justify-content: space-between;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/components/VoiceSessionChatHistory.esbuild-svelte-fake-css */
.analysis-stream {
  --kw-message-max-width: min(100%, 540px);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.1rem 1.35rem;
  border-radius: 18px;
  min-height: 100%;
  box-sizing: border-box;
}
.messages__list {
  margin: 0;
  padding: 12px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.analysis-stream__loading {
  flex: 1;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.analysis-stream__spinner {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 4px solid rgba(173, 81, 76, 0.18);
  border-top-color: var(--primary-200);
  animation: analysisSpinnerSpin 0.9s linear infinite;
}
@keyframes analysisSpinnerSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/EventViewer/EventViewerTab.esbuild-svelte-fake-css */
.session-view__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(360px, 2fr);
  gap: 1.2rem;
  width: 100%;
  min-height: 0;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  min-width: 0;
}
.session-view__events,
.session-view__side,
.session-view__graph,
.session-view__chat {
  min-height: 0;
  min-width: 0;
}
.session-tile {
  position: relative;
  transition: opacity 220ms ease, transform 220ms ease;
}
.session-tile.is-hidden {
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
}
.session-tile__card {
  height: 100%;
  min-height: 0;
  min-width: 0;
}
.session-view__loading-overlay {
  position: absolute;
  inset: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.76),
      rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(
      -45deg,
      rgba(15, 17, 17, 0.02),
      rgba(15, 17, 17, 0.02) 12px,
      rgba(15, 17, 17, 0.04) 12px,
      rgba(15, 17, 17, 0.04) 24px);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  pointer-events: none;
}
.session-view__loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(15, 17, 17, 0.08);
  color: var(--text-100);
}
.session-view__loading-indicator p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.session-view__loading-spinner {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 4px solid rgba(173, 81, 76, 0.18);
  border-top-color: var(--primary-200);
  animation: sessionViewSpin 0.9s linear infinite;
}
.session-tile__card.is-floating {
  position: fixed;
  z-index: 90;
  margin: 0;
  min-height: 0;
  transition:
    top 340ms cubic-bezier(0.2, 0.8, 0.2, 1),
    left 340ms cubic-bezier(0.2, 0.8, 0.2, 1),
    width 340ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 340ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 340ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
.session-tile__card.is-floating.is-opening,
.session-tile__card.is-floating.is-closing,
.session-tile__card.is-floating {
  background: var(--neutral-white, #fff);
}
.tile-fullscreen-btn {
  height: 2.4rem;
  width: 2.4rem;
  border: none;
  background: transparent;
  color: var(--bg-100);
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}
.tile-fullscreen-btn:focus-visible {
  outline: 2px solid var(--bg-100);
  outline-offset: -2px;
}
.session-view__events-body {
  height: 100%;
  min-height: 0;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.session-view__side {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.2rem;
  min-width: 0;
}
.session-view__chat-body {
  height: 100%;
  min-height: 0;
  min-width: 0;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.session-view__voice-body {
  height: 100%;
  min-height: 0;
  min-width: 0;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.session-view__voice-transcript-shell {
  flex: 1;
  min-height: 0;
  min-width: 0;
  padding-right: 24px;
  box-sizing: border-box;
  display: flex;
}
.session-view__voice-transcript-shell .session-view__voice-transcript {
  flex: 1;
  min-height: 0;
  min-width: 0;
}
.session-view__voice-transcript-shell .session-view__voice-transcript .simplebar-track.simplebar-vertical {
  right: -18px;
}
.session-view__voice-transcript-shell .session-view__voice-transcript .simplebar-content-wrapper {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.session-view__layout .card-wrapper {
  min-width: 0;
}
@media only screen and (max-width: 1223px) {
  .session-view__layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .session-view__side {
    grid-template-rows: auto;
  }
}
@media only screen and (max-width: 967px) {
  .session-view__layout {
    gap: 0.75rem;
  }
  .session-view__side {
    gap: 0.75rem;
  }
  .session-view__voice-body {
    padding: 0.45rem;
    gap: 0.6rem;
  }
  .session-view__voice-transcript-shell {
    padding-right: 10px;
  }
  .session-view__voice-transcript-shell .session-view__voice-transcript .simplebar-track.simplebar-vertical {
    right: -6px;
  }
}
@keyframes sessionViewSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.session-view-fullscreen-active {
  overflow: hidden;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/components/evaluation/rows/SessionEvaluationNumbers.esbuild-svelte-fake-css */
.evaluation-header.svelte-41bx4d {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.llm-cost-details.svelte-41bx4d {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--text-invers-140);
  font-size: 0.85rem;
}
.llm-cost-cell-total.svelte-41bx4d {
  font-weight: 700;
}
.llm-cost-details--empty.svelte-41bx4d {
  color: var(--text-invers-100);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/components/evaluation/rows/SessionOverview.esbuild-svelte-fake-css */
.primary-row.svelte-1qrcmg6 {
  display: flex;
  gap: 0.6rem;
  margin: 0.6rem 0px;
}
.primary-row.svelte-1qrcmg6 > div:where(.svelte-1qrcmg6) {
  width: 0px;
  flex: 1;
}
.primary-row.svelte-1qrcmg6 .evaluation-tile__body:where(.svelte-1qrcmg6) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  width: 100%;
  min-width: 0;
  min-height: 0;
  align-items: stretch;
}
.primary-row.svelte-1qrcmg6 .evaluation-tile__body:where(.svelte-1qrcmg6) .score-action-box:where(.svelte-1qrcmg6) {
  position: relative;
  min-width: 0;
}
.primary-row.svelte-1qrcmg6 .evaluation-tile__body:where(.svelte-1qrcmg6) .score-action-box:where(.svelte-1qrcmg6) .box .tag {
  right: 1.35rem;
}
.primary-row.svelte-1qrcmg6 .evaluation-tile__body:where(.svelte-1qrcmg6) .score-action-box:where(.svelte-1qrcmg6) .score-action-box__info:where(.svelte-1qrcmg6) {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid var(--primary-100);
  background: color-mix(in srgb, var(--primary-100) 18%, var(--bg-100));
  color: var(--primary-100);
  cursor: help;
  z-index: 1;
}
.secondary-row.svelte-1qrcmg6 {
  display: flex;
  gap: 0.6rem;
}
.secondary-row.svelte-1qrcmg6 > div:where(.svelte-1qrcmg6) {
  width: 0px;
  flex: 1;
}
@media only screen and (max-width: 1223px) {
  .primary-row.svelte-1qrcmg6 {
    flex-direction: column;
  }
  .primary-row.svelte-1qrcmg6 > div:where(.svelte-1qrcmg6) {
    width: 100%;
  }
  .primary-row.svelte-1qrcmg6 .evaluation-tile__body:where(.svelte-1qrcmg6) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .secondary-row.svelte-1qrcmg6 {
    flex-direction: column;
  }
  .secondary-row.svelte-1qrcmg6 > div:where(.svelte-1qrcmg6) {
    width: 100%;
  }
}
@media only screen and (max-width: 967px) {
  .primary-row.svelte-1qrcmg6 .evaluation-tile__body:where(.svelte-1qrcmg6) {
    grid-template-columns: minmax(0, 1fr);
  }
}
.service-feedback-tile.svelte-1qrcmg6 {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.service-feedback-tile__meta.svelte-1qrcmg6 {
  color: var(--text-80);
  font-size: 0.88rem;
}
.service-feedback-tile__note.svelte-1qrcmg6 {
  color: var(--text-100);
  font-size: 0.92rem;
  white-space: pre-wrap;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/components/evaluation/rows/SessionEvaluationTables.esbuild-svelte-fake-css */
.tables-tile.svelte-1eyn8qq {
  min-width: 0;
}
.evaluation-empty.svelte-1eyn8qq {
  padding: 0;
  color: color-mix(in srgb, var(--text-invers-150) 80%, transparent);
}
.cell-text.svelte-1eyn8qq {
  color: var(--text-invers-100);
}
.description-cell.svelte-1eyn8qq {
  max-width: min(35vw, 560px);
  min-width: 0;
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-wrap: wrap;
}
.evidence-turn-list.svelte-1eyn8qq {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.28rem;
}
.evidence-turn-button.svelte-1eyn8qq {
  appearance: none;
  border: 1px solid color-mix(in srgb, var(--text-invers-100) 26%, transparent);
  background: color-mix(in srgb, var(--neutral-white) 96%, var(--bg-300));
  color: var(--text-invers-100);
  border-radius: 0;
  padding: 0.06rem 0.34rem;
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease;
}
.evidence-turn-button.svelte-1eyn8qq:hover {
  border-color: color-mix(in srgb, var(--primary-100) 68%, transparent);
  background: color-mix(in srgb, var(--primary-100) 8%, var(--neutral-white));
}
.evidence-turn-button.svelte-1eyn8qq:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary-100) 56%, transparent);
  outline-offset: 1px;
}
.evidence-turn-more.svelte-1eyn8qq {
  font-size: 0.7rem;
  color: color-mix(in srgb, var(--text-invers-150) 92%, transparent);
}
@media only screen and (max-width: 967px) {
  .description-cell.svelte-1eyn8qq {
    max-width: 100%;
  }
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/components/evaluation/rows/SessionEvaluationCases.esbuild-svelte-fake-css */
.cases-section.svelte-1pif7wc {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cases-section__body.svelte-1pif7wc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.evaluation-empty.svelte-1pif7wc {
  padding: 0;
  color: color-mix(in srgb, var(--text-invers-150) 80%, transparent);
}
.boxed-content--text.svelte-1pif7wc {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-invers-100);
  white-space: pre-wrap;
}
.evidence-turn-list.svelte-1pif7wc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.32rem;
  min-height: 2.6rem;
}
.evidence-turn-button.svelte-1pif7wc {
  appearance: none;
  border: 1px solid color-mix(in srgb, var(--text-invers-100) 26%, transparent);
  background: color-mix(in srgb, var(--neutral-white) 96%, var(--bg-300));
  color: var(--text-invers-100);
  border-radius: 0;
  padding: 0.08rem 0.34rem;
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease;
}
.evidence-turn-button.svelte-1pif7wc:hover {
  border-color: color-mix(in srgb, var(--primary-100) 68%, transparent);
  background: color-mix(in srgb, var(--primary-100) 8%, var(--neutral-white));
}
.evidence-turn-button.svelte-1pif7wc:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary-100) 56%, transparent);
  outline-offset: 1px;
}
.evidence-turn-more.svelte-1pif7wc {
  font-size: 0.72rem;
  color: color-mix(in srgb, var(--text-invers-150) 92%, transparent);
}
.case-status-shell.svelte-1pif7wc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-right: 2rem;
}
.primary-row.svelte-1pif7wc {
  display: flex;
  gap: 0.6rem;
}
.primary-row.svelte-1pif7wc > :where(.svelte-1pif7wc) {
  flex: 1;
  width: 0px;
}
.case-metric-grid.svelte-1pif7wc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.6rem;
}
.case-metric-box.svelte-1pif7wc {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.case-metric-legend.svelte-1pif7wc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.3rem;
}
.case-metric-legend.svelte-1pif7wc span:where(.svelte-1pif7wc) {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: color-mix(in srgb, var(--text-invers-100) 80%, transparent);
}
.case-metric-legend.svelte-1pif7wc i:where(.svelte-1pif7wc) {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 0;
}
@media only screen and (max-width: 1223px) {
  .primary-row.svelte-1pif7wc {
    flex-direction: column;
  }
  .primary-row.svelte-1pif7wc > :where(.svelte-1pif7wc) {
    width: 100%;
  }
}
@media only screen and (max-width: 967px) {
  .case-status-shell.svelte-1pif7wc {
    margin-right: 0.75rem;
  }
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/components/evaluation/SessionEvaluationDetails.esbuild-svelte-fake-css */
.service-feedback-only.svelte-1r1tyhv {
  margin-bottom: 0.75rem;
}
.evaluation-root.svelte-1r1tyhv {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-feedback-only__stars.svelte-1r1tyhv {
  font-size: 1.15rem;
  letter-spacing: 0.08rem;
  color: #f59e0b;
}
.service-feedback-only__meta.svelte-1r1tyhv {
  margin-top: 0.35rem;
  color: var(--text-80);
  font-size: 0.9rem;
}
.service-feedback-only__note.svelte-1r1tyhv {
  margin-top: 0.5rem;
  white-space: pre-wrap;
  color: var(--text-100);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/Evaluation/components/ChatSessionAnalysis.esbuild-svelte-fake-css */
.analysis-empty {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--text-invers-150);
}
.error-text {
  color: #ff6a63;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/Evaluation/components/VoiceSessionAnalysis.esbuild-svelte-fake-css */
.analysis-layout {
  width: 100%;
}
.analysis-layout .analysis-empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  color: var(--text-invers-150);
}
.analysis-layout .analysis-empty p {
  margin: 0;
}
.analysis-layout .analysis-empty small {
  color: var(--text-invers-120);
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/tabs/Evaluation/EvaluationTab.esbuild-svelte-fake-css */
.session-evaluation {
  min-height: 0;
  width: 100%;
}
.session-evaluation__body {
  min-height: 0;
  padding: 0.6rem;
}
.session-evaluation__trace-info {
  margin: 0.6rem;
  margin-bottom: 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--bg-100);
  color: var(--text-invers-100);
  font-size: 0.92rem;
  line-height: 1.35;
}

/* fakecss:/data/frontend/src/routes/SessionView/pages/Session/components/SessionProcessingPanel.esbuild-svelte-fake-css */
.session-processing.svelte-a9iqnt {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.6rem;
  min-height: 0;
}
.session-processing__grid.svelte-a9iqnt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.75rem;
}
.session-processing__card.svelte-a9iqnt {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--bg-100);
  background: color-mix(in srgb, var(--bg-0) 94%, transparent);
}
.session-processing__card.svelte-a9iqnt span:where(.svelte-a9iqnt) {
  color: var(--text-invers-120);
  font-size: 0.85rem;
}
.session-processing__card.svelte-a9iqnt strong:where(.svelte-a9iqnt) {
  color: var(--text-invers-0);
  font-size: 1rem;
  font-weight: 600;
}

/* fakecss:/data/frontend/src/routes/RealizationView/pages/Start/StartPage.esbuild-svelte-fake-css */
.home-page__state.svelte-1tao37i {
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--bg-200, #0f172a) 82%, #0b1224);
  color: var(--text-100, #e5e7eb);
}
.home-page__state.error.svelte-1tao37i {
  border: 1px solid color-mix(in srgb, #f04438 55%, transparent);
  color: #fca5a5;
}
.home-page__state.warning.svelte-1tao37i {
  margin-top: 1rem;
  border: 1px solid color-mix(in srgb, #eab308 50%, transparent);
  color: #fef08a;
}
.home-page__charts.svelte-1tao37i {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1080px) {
  .home-page__charts.svelte-1tao37i {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* fakecss:/data/frontend/src/routes/RealizationView/pages/Projects/ProjectsPage.esbuild-svelte-fake-css */
.projects-header.svelte-cix7u8 {
  margin-bottom: 0.8rem;
}
.projects-table.svelte-cix7u8 {
  width: 100%;
}
.projects-hint.svelte-cix7u8 {
  margin: 0;
  color: var(--text-80);
}
.projects-hint--error.svelte-cix7u8 {
  margin-bottom: 0.85rem;
  color: var(--primary-200);
}

/* fakecss:/data/frontend/src/routes/Root/RootHost.esbuild-svelte-fake-css */
:root {
  --normal-max-width: 2200px;
}
body.app-fullscreen {
  background: var(--bg-100);
}
body {
  overflow-x: hidden;
}
body.app-fullscreen #appContainer {
  min-height: 100vh;
}
/*# sourceMappingURL=index.css.map */
