/* this gets exported as style.css and can be used for the default theming */
/* these are the necessary styles for React Flow, they get used by base.css and style.css */
.react-flow {
  direction: ltr;
}
.react-flow__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.react-flow__pane {
  z-index: 1;
  cursor: grab;
}
.react-flow__pane.selection {
    cursor: pointer;
  }
.react-flow__pane.dragging {
    cursor: grabbing;
  }
.react-flow__viewport {
  transform-origin: 0 0;
  z-index: 2;
  pointer-events: none;
}
.react-flow__renderer {
  z-index: 4;
}
.react-flow__selection {
  z-index: 6;
}
.react-flow__nodesselection-rect:focus,
.react-flow__nodesselection-rect:focus-visible {
  outline: none;
}
.react-flow .react-flow__edges {
  pointer-events: none;
  overflow: visible;
}
.react-flow__edge-path,
.react-flow__connection-path {
  stroke: #b1b1b7;
  stroke-width: 1;
  fill: none;
}
.react-flow__edge {
  pointer-events: visibleStroke;
  cursor: pointer;
}
.react-flow__edge.animated path {
    stroke-dasharray: 5;
    animation: dashdraw 0.5s linear infinite;
  }
.react-flow__edge.animated path.react-flow__edge-interaction {
    stroke-dasharray: none;
    animation: none;
  }
.react-flow__edge.inactive {
    pointer-events: none;
  }
.react-flow__edge.selected,
  .react-flow__edge:focus,
  .react-flow__edge:focus-visible {
    outline: none;
  }
.react-flow__edge.selected .react-flow__edge-path,
  .react-flow__edge:focus .react-flow__edge-path,
  .react-flow__edge:focus-visible .react-flow__edge-path {
    stroke: #555;
  }
.react-flow__edge-textwrapper {
    pointer-events: all;
  }
.react-flow__edge-textbg {
    fill: white;
  }
.react-flow__edge .react-flow__edge-text {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
.react-flow__connection {
  pointer-events: none;
}
.react-flow__connection .animated {
    stroke-dasharray: 5;
    animation: dashdraw 0.5s linear infinite;
  }
.react-flow__connectionline {
  z-index: 1001;
}
.react-flow__nodes {
  pointer-events: none;
  transform-origin: 0 0;
}
.react-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: grab;
}
.react-flow__node.dragging {
    cursor: grabbing;
  }
.react-flow__nodesselection {
  z-index: 3;
  transform-origin: left top;
  pointer-events: none;
}
.react-flow__nodesselection-rect {
    position: absolute;
    pointer-events: all;
    cursor: grab;
  }
.react-flow__handle {
  position: absolute;
  pointer-events: none;
  min-width: 5px;
  min-height: 5px;
  width: 6px;
  height: 6px;
  background: #1a192b;
  border: 1px solid white;
  border-radius: 100%;
}
.react-flow__handle.connectionindicator {
    pointer-events: all;
    cursor: crosshair;
  }
.react-flow__handle-bottom {
    top: auto;
    left: 50%;
    bottom: -4px;
    transform: translate(-50%, 0);
  }
.react-flow__handle-top {
    left: 50%;
    top: -4px;
    transform: translate(-50%, 0);
  }
.react-flow__handle-left {
    top: 50%;
    left: -4px;
    transform: translate(0, -50%);
  }
.react-flow__handle-right {
    right: -4px;
    top: 50%;
    transform: translate(0, -50%);
  }
.react-flow__edgeupdater {
  cursor: move;
  pointer-events: all;
}
.react-flow__panel {
  position: absolute;
  z-index: 5;
  margin: 15px;
}
.react-flow__panel.top {
    top: 0;
  }
.react-flow__panel.bottom {
    bottom: 0;
  }
.react-flow__panel.left {
    left: 0;
  }
.react-flow__panel.right {
    right: 0;
  }
.react-flow__panel.center {
    left: 50%;
    transform: translateX(-50%);
  }
.react-flow__attribution {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px 3px;
  margin: 0;
}
.react-flow__attribution a {
    text-decoration: none;
    color: #999;
  }
@keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}
.react-flow__edgelabel-renderer {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.react-flow__edge.updating .react-flow__edge-path {
      stroke: #777;
    }
.react-flow__edge-text {
    font-size: 10px;
  }
.react-flow__node.selectable:focus,
  .react-flow__node.selectable:focus-visible {
    outline: none;
  }
.react-flow__node-default,
.react-flow__node-input,
.react-flow__node-output,
.react-flow__node-group {
  padding: 10px;
  border-radius: 3px;
  width: 150px;
  font-size: 12px;
  color: #222;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-color: #1a192b;
  background-color: white;
}
.react-flow__node-default.selectable:hover, .react-flow__node-input.selectable:hover, .react-flow__node-output.selectable:hover, .react-flow__node-group.selectable:hover {
      box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
    }
.react-flow__node-default.selectable.selected,
    .react-flow__node-default.selectable:focus,
    .react-flow__node-default.selectable:focus-visible,
    .react-flow__node-input.selectable.selected,
    .react-flow__node-input.selectable:focus,
    .react-flow__node-input.selectable:focus-visible,
    .react-flow__node-output.selectable.selected,
    .react-flow__node-output.selectable:focus,
    .react-flow__node-output.selectable:focus-visible,
    .react-flow__node-group.selectable.selected,
    .react-flow__node-group.selectable:focus,
    .react-flow__node-group.selectable:focus-visible {
      box-shadow: 0 0 0 0.5px #1a192b;
    }
.react-flow__node-group {
  background-color: rgba(240, 240, 240, 0.25);
}
.react-flow__nodesselection-rect,
.react-flow__selection {
  background: rgba(0, 89, 220, 0.08);
  border: 1px dotted rgba(0, 89, 220, 0.8);
}
.react-flow__nodesselection-rect:focus,
  .react-flow__nodesselection-rect:focus-visible,
  .react-flow__selection:focus,
  .react-flow__selection:focus-visible {
    outline: none;
  }
.react-flow__controls {
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);
}
.react-flow__controls-button {
    border: none;
    background: #fefefe;
    border-bottom: 1px solid #eee;
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    padding: 5px;
  }
.react-flow__controls-button:hover {
      background: #f4f4f4;
    }
.react-flow__controls-button svg {
      width: 100%;
      max-width: 12px;
      max-height: 12px;
    }
.react-flow__controls-button:disabled {
      pointer-events: none;
    }
.react-flow__controls-button:disabled svg {
        fill-opacity: 0.4;
      }
.react-flow__minimap {
  background-color: #fff;
}
.react-flow__minimap svg {
  display: block;
}
.react-flow__resize-control {
  position: absolute;
}
.react-flow__resize-control.left,
.react-flow__resize-control.right {
  cursor: ew-resize;
}
.react-flow__resize-control.top,
.react-flow__resize-control.bottom {
  cursor: ns-resize;
}
.react-flow__resize-control.top.left,
.react-flow__resize-control.bottom.right {
  cursor: nwse-resize;
}
.react-flow__resize-control.bottom.left,
.react-flow__resize-control.top.right {
  cursor: nesw-resize;
}
/* handle styles */
.react-flow__resize-control.handle {
  width: 4px;
  height: 4px;
  border: 1px solid #fff;
  border-radius: 1px;
  background-color: #3367d9;
  transform: translate(-50%, -50%);
}
.react-flow__resize-control.handle.left {
  left: 0;
  top: 50%;
}
.react-flow__resize-control.handle.right {
  left: 100%;
  top: 50%;
}
.react-flow__resize-control.handle.top {
  left: 50%;
  top: 0;
}
.react-flow__resize-control.handle.bottom {
  left: 50%;
  top: 100%;
}
.react-flow__resize-control.handle.top.left {
  left: 0;
}
.react-flow__resize-control.handle.bottom.left {
  left: 0;
}
.react-flow__resize-control.handle.top.right {
  left: 100%;
}
.react-flow__resize-control.handle.bottom.right {
  left: 100%;
}
/* line styles */
.react-flow__resize-control.line {
  border-color: #3367d9;
  border-width: 0;
  border-style: solid;
}
.react-flow__resize-control.line.left,
.react-flow__resize-control.line.right {
  width: 1px;
  transform: translate(-50%, 0);
  top: 0;
  height: 100%;
}
.react-flow__resize-control.line.left {
  left: 0;
  border-left-width: 1px;
}
.react-flow__resize-control.line.right {
  left: 100%;
  border-right-width: 1px;
}
.react-flow__resize-control.line.top,
.react-flow__resize-control.line.bottom {
  height: 1px;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
}
.react-flow__resize-control.line.top {
  top: 0;
  border-top-width: 1px;
}
.react-flow__resize-control.line.bottom {
  border-bottom-width: 1px;
  top: 100%;
}
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em
}
code.hljs {
  padding: 3px 5px
}
/*

Atom One Dark by Daniel Gamage
Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax

base:    #282c34
mono-1:  #abb2bf
mono-2:  #818896
mono-3:  #5c6370
hue-1:   #56b6c2
hue-2:   #61aeee
hue-3:   #c678dd
hue-4:   #98c379
hue-5:   #e06c75
hue-5-2: #be5046
hue-6:   #d19a66
hue-6-2: #e6c07b

*/
.hljs {
  color: #abb2bf;
  background: #282c34
}
.hljs-comment,
.hljs-quote {
  color: #5c6370;
  font-style: italic
}
.hljs-doctag,
.hljs-keyword,
.hljs-formula {
  color: #c678dd
}
.hljs-section,
.hljs-name,
.hljs-selector-tag,
.hljs-deletion,
.hljs-subst {
  color: #e06c75
}
.hljs-literal {
  color: #56b6c2
}
.hljs-string,
.hljs-regexp,
.hljs-addition,
.hljs-attribute,
.hljs-meta .hljs-string {
  color: #98c379
}
.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-type,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-number {
  color: #d19a66
}
.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-title {
  color: #61aeee
}
.hljs-built_in,
.hljs-title.class_,
.hljs-class .hljs-title {
  color: #e6c07b
}
.hljs-emphasis {
  font-style: italic
}
.hljs-strong {
  font-weight: bold
}
.hljs-link {
  text-decoration: underline
}/**
 * @propolis
 * {
 *   "file": "packages/shell/src/styles/theme.css",
 *   "role": "CONFIG",
 *   "dependencies": ["@hive/shell"],
 *   "critical_constraints": ["Three-layer token architecture", "No hardcoded hex in components", "Layer 1 immutable"],
 *   "self_healing_logic": "Layer 1 (--hive-*) is shell chrome — never changes on theme switch. Layer 3 (--color-* etc.) is the Universal Skeleton contract values. Layer 2 alias (--theme-*) lives in tokens.css."
 * }
 */

/* ══════════════════════════════════════════════════════════════
   LAYER 1 — Hive Chrome  (--hive-*)
   Shell identity. Immutable. Never changes when a theme switches.
   Topbar, sidebar, nav rail, status bar read from here.
   ══════════════════════════════════════════════════════════════ */

:root {
  --hive-topbar:      #0D0D0B;
  --hive-topbar-fg:   #F5F4F0;
  --hive-sidebar:     #111110;
  --hive-rail:        #191916;
  --hive-line:        #2C2820;
  --hive-chrome-ink:  #E8E4DA;
  --hive-chrome-muted: #6B6560;
  --hive-accent:      #E8A93C;     /* honey amber — light mode accent */
  --hive-accent-dark: #DFE104;     /* acid yellow — dark mode accent */
  --hive-font:        'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ══════════════════════════════════════════════════════════════
   LAYER 3 — Hive Theme Contract  (--color-*, --font-*, etc.)
   Canonical values for the Hive theme — light (Beeswax) default.
   Components never read these directly; they use the --theme-*
   alias layer defined in tokens.css.
   ══════════════════════════════════════════════════════════════ */

/* ── Light: Hive Beeswax ────────────────────────────────────── */

:root {
  /* Colors */
  --color-primary:              #E8A93C;
  --color-primary-foreground:   #2A1F12;
  --color-secondary:            #B8770F;
  --color-secondary-foreground: #FBF7EE;
  --color-background:           #FBF7EE;
  --color-surface:              #F2EAD7;
  --color-surface-elevated:     #FFFCF4;
  --color-border:               #E9DCC0;
  --color-text:                 #2A1F12;
  --color-text-muted:           #6B5840;
  --color-success:              #5C7A2D;
  --color-warning:              #B8770F;
  --color-error:                #C13E1F;
  --color-brand-1:              #E8A93C;
  --color-brand-2:              #2A1F12;
  --color-brand-3:              #F5D547;

  /* Typography */
  --font-family-sans:           'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-family-display:        'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-family-mono:           'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-weight-display:        600;
  --font-weight-body:           400;
  --text-transform-display:     none;
  --font-size-xs:               10px;
  --font-size-sm:               11px;
  --font-size-md:               12px;
  --font-size-lg:               13px;
  --font-size-xl:               15px;
  --font-size-2xl:              18px;
  --font-size-3xl:              22px;
  --font-size-4xl:              28px;

  /* Background */
  --bg-overlay:                 none;
  --bg-size:                    cover;

  /* Spacing */
  --space-xs:                   3px;
  --space-sm:                   6px;
  --space-md:                   10px;
  --space-lg:                   14px;
  --space-xl:                   20px;
  --space-2xl:                  28px;
  --space-3xl:                  40px;
  --space-4xl:                  56px;
  --spacing-matrix-gap:         8px;
  --spacing-stage-padding:      14px;

  /* Geometry */
  --radius-base:                0px;
  --radius-container:           0px;
  --border-width-base:          1px;
  --border-width-container:     1px;
  --rotation-accent:            0deg;
  --rotation-factor:            1;

  /* Shadows — propolis-tinted warm */
  --shadow-sm:  0 1px 2px rgba(42, 31, 18, 0.05);
  --shadow-md:  0 4px 12px -4px rgba(42, 31, 18, 0.10), 0 1px 3px rgba(42, 31, 18, 0.05);
  --shadow-lg:  0 12px 28px -8px rgba(42, 31, 18, 0.16), 0 4px 8px -4px rgba(42, 31, 18, 0.06);
  --shadow-xl:  0 24px 56px -12px rgba(42, 31, 18, 0.22);

  /* Motion — honey-paced */
  --transition-defaults:        all 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-duration-fast:   120ms;
  --transition-duration-medium: 180ms;
  --ease-mechanical:            cubic-bezier(0.4, 0, 0.2, 1);
  --hover-transform:            translateY(-1px);
  --active-transform:           translateY(0px) scale(0.99);

  /* Theme extras — semantic + component-specific values not in the canonical contract */
  --theme-accent-soft:          #FBF0D5;
  --theme-success-soft:         #ECF1D9;
  --theme-warning-soft:         #FBF0D5;
  --theme-error-soft:           #FAD9CE;
  --theme-info:                 #4A7BA8;
  --theme-info-soft:            #DAE7F1;
  --theme-border-strong:        #C9B68A;
  --theme-border-subtle:        #F4ECD8;
  --theme-ink-tertiary:         #94816A;
  --theme-ink-inverse:          #FBF7EE;
  --theme-surface-inverse:      #2A1F12;
  --theme-overlay:              rgba(42, 31, 18, 0.55);
  --theme-focus-ring:           0 0 0 3px rgba(232, 169, 60, 0.40);
  --theme-display-tracking:     -0.02em;
  --theme-font-serif:           'JetBrains Mono', ui-monospace, monospace;
  --theme-h1-size:              22px;
  --theme-h2-size:              18px;
  --theme-h3-size:              15px;
  --theme-body-size:            12px;
  --theme-shadow-inset:         inset 0 1px 0 rgba(42, 31, 18, 0.04);
  --theme-radius-sm:            0px;
  --theme-radius-xl:            0px;
  --theme-radius-pill:          9999px; /* circles allowed: avatars, radios, status dots, spinners */
}

/* ── Dark: Hive Obsidian ────────────────────────────────────── */

[data-theme="dark"] {
  /* Colors */
  --color-primary:              #DFE104;
  --color-primary-foreground:   #0A0A08;
  --color-secondary:            #B8BA00;
  --color-secondary-foreground: #0A0A08;
  --color-background:           #09090B;
  --color-surface:              #111110;
  --color-surface-elevated:     #1C1C1A;
  --color-border:               #2C2820;
  --color-text:                 #FAFAFA;
  --color-text-muted:           #A1A1AA;
  --color-success:              #7AB648;
  --color-warning:              #E8A93C;
  --color-error:                #E05C3A;
  --color-brand-1:              #DFE104;
  --color-brand-2:              #FAFAFA;
  --color-brand-3:              #F5D547;

  /* Shadows — cold, deep */
  --shadow-sm:  0 1px 2px rgba(0, 0, 0, 0.30);
  --shadow-md:  0 4px 12px -4px rgba(0, 0, 0, 0.40), 0 1px 3px rgba(0, 0, 0, 0.20);
  --shadow-lg:  0 12px 28px -8px rgba(0, 0, 0, 0.50), 0 4px 8px -4px rgba(0, 0, 0, 0.30);
  --shadow-xl:  0 24px 56px -12px rgba(0, 0, 0, 0.60);

  /* Theme extras — dark overrides */
  --theme-accent-soft:          #2A2208;
  --theme-success-soft:         #1A2810;
  --theme-warning-soft:         #2A2208;
  --theme-error-soft:           #2A100A;
  --theme-info:                 #3B9EF9;
  --theme-info-soft:            #0A1828;
  --theme-border-strong:        #3F3F46;
  --theme-border-subtle:        #1E1C18;
  --theme-ink-tertiary:         #71717A;
  --theme-ink-inverse:          #09090B;
  --theme-surface-inverse:      #FAFAFA;
  --theme-overlay:              rgba(0, 0, 0, 0.70);
  --theme-focus-ring:           0 0 0 3px rgba(223, 225, 4, 0.45);
}

@keyframes caretBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/**
 * @propolis
 * {
 *   "file": "packages/shell/src/styles/tokens.css",
 *   "role": "CONFIG",
 *   "dependencies": ["theme.css"],
 *   "critical_constraints": ["Alias layer only — no literal values", "Components read --theme-*, never --color-* directly"],
 *   "self_healing_logic": "This file is the bridge between component code and the theme contract. Renaming a --color-* token only requires updating this file, not every component."
 * }
 */

/* ══════════════════════════════════════════════════════════════
   LAYER 2 — Universal Skeleton Alias Layer  (--theme-*)
   Maps stable component-facing names to the theme contract.
   Components read --theme-accent, --theme-surface, etc.
   The contract (--color-*, --font-*, etc.) can be renamed or
   restructured without touching a single component file.
   ══════════════════════════════════════════════════════════════ */

:root {
  /* ── Color aliases ─────────────────────────────────────── */
  --theme-accent:           var(--color-primary);
  --theme-accent-deep:      var(--color-secondary);
  --theme-on-accent:        var(--color-primary-foreground);
  --theme-on-accent-deep:   var(--color-secondary-foreground);

  --theme-surface:          var(--color-background);
  --theme-surface-elevated: var(--color-surface-elevated);
  --theme-surface-recessed: var(--color-surface);

  --theme-ink:              var(--color-text);
  --theme-ink-secondary:    var(--color-text-muted);

  --theme-border:           var(--color-border);

  --theme-success:          var(--color-success);
  --theme-warning:          var(--color-warning);
  --theme-error:            var(--color-error);

  /* ── Typography aliases ────────────────────────────────── */
  --theme-font-sans:        var(--font-family-sans);
  --theme-font-display:     var(--font-family-display);
  --theme-font-mono:        var(--font-family-mono);
  --theme-heading-weight:   var(--font-weight-display);
  --theme-body-weight:      var(--font-weight-body);

  /* ── Font size aliases ─────────────────────────────────── */
  --theme-text-xs:          var(--font-size-xs);
  --theme-text-sm:          var(--font-size-sm);
  --theme-text-md:          var(--font-size-md);
  --theme-text-lg:          var(--font-size-lg);
  --theme-text-xl:          var(--font-size-xl);
  --theme-text-2xl:         var(--font-size-2xl);
  --theme-text-3xl:         var(--font-size-3xl);
  --theme-text-4xl:         var(--font-size-4xl);

  /* ── Spacing aliases ───────────────────────────────────── */
  --theme-space-xs:         var(--space-xs);
  --theme-space-sm:         var(--space-sm);
  --theme-space-md:         var(--space-md);
  --theme-space-lg:         var(--space-lg);
  --theme-space-xl:         var(--space-xl);
  --theme-space-2xl:        var(--space-2xl);
  --theme-space-3xl:        var(--space-3xl);
  --theme-space-4xl:        var(--space-4xl);

  /* ── Geometry aliases ──────────────────────────────────── */
  --theme-radius-md:        var(--radius-base);
  --theme-radius-lg:        var(--radius-container);
  --theme-border-hairline:  var(--border-width-base);
  --theme-border-standard:  var(--border-width-container);

  /* ── Shadow aliases ────────────────────────────────────── */
  --theme-shadow-none:      none;
  --theme-shadow-sm:        var(--shadow-sm);
  --theme-shadow-md:        var(--shadow-md);
  --theme-shadow-lg:        var(--shadow-lg);
  --theme-shadow-xl:        var(--shadow-xl);

  /* ── Motion aliases ────────────────────────────────────── */
  --theme-motion-instant:   var(--transition-duration-fast);
  --theme-motion-fast:      var(--transition-duration-fast);
  --theme-motion-standard:  var(--transition-duration-medium);
  --theme-motion-slow:      var(--transition-duration-medium);
  --theme-ease:             var(--ease-mechanical);
  --theme-hover-transform:  var(--hover-transform);
  --theme-press-transform:  var(--active-transform);
}

*, ::before, ::after {
  --tw-border-spacing-x:      0;
  --tw-border-spacing-y:      0;
  --tw-translate-x:      0;
  --tw-translate-y:      0;
  --tw-rotate:      0;
  --tw-skew-x:      0;
  --tw-skew-y:      0;
  --tw-scale-x:      1;
  --tw-scale-y:      1;
  --tw-pan-x:       ;
  --tw-pan-y:       ;
  --tw-pinch-zoom:       ;
  --tw-scroll-snap-strictness:      proximity;
  --tw-gradient-from-position:       ;
  --tw-gradient-via-position:       ;
  --tw-gradient-to-position:       ;
  --tw-ordinal:       ;
  --tw-slashed-zero:       ;
  --tw-numeric-figure:       ;
  --tw-numeric-spacing:       ;
  --tw-numeric-fraction:       ;
  --tw-ring-inset:       ;
  --tw-ring-offset-width:      0px;
  --tw-ring-offset-color:      #fff;
  --tw-ring-color:      rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow:      0 0 #0000;
  --tw-ring-shadow:      0 0 #0000;
  --tw-shadow:      0 0 #0000;
  --tw-shadow-colored:      0 0 #0000;
  --tw-blur:       ;
  --tw-brightness:       ;
  --tw-contrast:       ;
  --tw-grayscale:       ;
  --tw-hue-rotate:       ;
  --tw-invert:       ;
  --tw-saturate:       ;
  --tw-sepia:       ;
  --tw-drop-shadow:       ;
  --tw-backdrop-blur:       ;
  --tw-backdrop-brightness:       ;
  --tw-backdrop-contrast:       ;
  --tw-backdrop-grayscale:       ;
  --tw-backdrop-hue-rotate:       ;
  --tw-backdrop-invert:       ;
  --tw-backdrop-opacity:       ;
  --tw-backdrop-saturate:       ;
  --tw-backdrop-sepia:       ;
  --tw-contain-size:       ;
  --tw-contain-layout:       ;
  --tw-contain-paint:       ;
  --tw-contain-style:       ;
}

::backdrop {
  --tw-border-spacing-x:      0;
  --tw-border-spacing-y:      0;
  --tw-translate-x:      0;
  --tw-translate-y:      0;
  --tw-rotate:      0;
  --tw-skew-x:      0;
  --tw-skew-y:      0;
  --tw-scale-x:      1;
  --tw-scale-y:      1;
  --tw-pan-x:       ;
  --tw-pan-y:       ;
  --tw-pinch-zoom:       ;
  --tw-scroll-snap-strictness:      proximity;
  --tw-gradient-from-position:       ;
  --tw-gradient-via-position:       ;
  --tw-gradient-to-position:       ;
  --tw-ordinal:       ;
  --tw-slashed-zero:       ;
  --tw-numeric-figure:       ;
  --tw-numeric-spacing:       ;
  --tw-numeric-fraction:       ;
  --tw-ring-inset:       ;
  --tw-ring-offset-width:      0px;
  --tw-ring-offset-color:      #fff;
  --tw-ring-color:      rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow:      0 0 #0000;
  --tw-ring-shadow:      0 0 #0000;
  --tw-shadow:      0 0 #0000;
  --tw-shadow-colored:      0 0 #0000;
  --tw-blur:       ;
  --tw-brightness:       ;
  --tw-contrast:       ;
  --tw-grayscale:       ;
  --tw-hue-rotate:       ;
  --tw-invert:       ;
  --tw-saturate:       ;
  --tw-sepia:       ;
  --tw-drop-shadow:       ;
  --tw-backdrop-blur:       ;
  --tw-backdrop-brightness:       ;
  --tw-backdrop-contrast:       ;
  --tw-backdrop-grayscale:       ;
  --tw-backdrop-hue-rotate:       ;
  --tw-backdrop-invert:       ;
  --tw-backdrop-opacity:       ;
  --tw-backdrop-saturate:       ;
  --tw-backdrop-sepia:       ;
  --tw-contain-size:       ;
  --tw-contain-layout:       ;
  --tw-contain-paint:       ;
  --tw-contain-style:       ;
}

/*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
 */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

* {
    border-radius: 0 !important;
    border-color: hsl(var(--border));
  }

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  }

/* OVERRIDE: Space Grotesk removed — font-mono on the App root container overrides body
     font-family for every element, making this rule unreachable. Entirely monospace. */

/* ─── Opacity contract (light mode) ───────────────────────────────────────
     --muted-foreground base = #543F28 (~6.5:1 vs cream)
     Text carrying meaning:    text-muted-foreground          (~6.5:1) ✓ AA
     Text clearly secondary:   text-muted-foreground/70       (~4.5:1) ✓ AA
     Decorative / separators:  text-muted-foreground/50       (~3.3:1) ✓ for large/bold
     NEVER use /30 or /40 on text that conveys information — both fail AA on cream.
  ── */

.container {
  width:      100%;
}

@media (min-width: 640px) {

  .container {
    max-width:      640px;
  }
}

@media (min-width: 768px) {

  .container {
    max-width:      768px;
  }
}

@media (min-width: 1024px) {

  .container {
    max-width:      1024px;
  }
}

@media (min-width: 1280px) {

  .container {
    max-width:      1280px;
  }
}

@media (min-width: 1536px) {

  .container {
    max-width:      1536px;
  }
}

.visible {
  visibility:      visible;
}

.invisible {
  visibility:      hidden;
}

.static {
  position:      static;
}

.fixed {
  position:      fixed;
}

.absolute {
  position:      absolute;
}

.relative {
  position:      relative;
}

.sticky {
  position:      sticky;
}

.inset-0 {
  inset:      0px;
}

.bottom-0 {
  bottom:      0px;
}

.left-0 {
  left:      0px;
}

.right-0 {
  right:      0px;
}

.right-4 {
  right:      1rem;
}

.top-0 {
  top:      0px;
}

.top-4 {
  top:      1rem;
}

.top-full {
  top:      100%;
}

.z-10 {
  z-index:      10;
}

.z-20 {
  z-index:      20;
}

.z-50 {
  z-index:      50;
}

.z-\[100\] {
  z-index:      100;
}

.m-0 {
  margin:      0px;
}

.mx-1 {
  margin-left:      0.25rem;
  margin-right:      0.25rem;
}

.mx-auto {
  margin-left:      auto;
  margin-right:      auto;
}

.my-1 {
  margin-top:      0.25rem;
  margin-bottom:      0.25rem;
}

.my-3 {
  margin-top:      0.75rem;
  margin-bottom:      0.75rem;
}

.-mb-px {
  margin-bottom:      -1px;
}

.-mt-px {
  margin-top:      -1px;
}

.mb-0\.5 {
  margin-bottom:      0.125rem;
}

.mb-1 {
  margin-bottom:      0.25rem;
}

.mb-1\.5 {
  margin-bottom:      0.375rem;
}

.mb-2 {
  margin-bottom:      0.5rem;
}

.mb-3 {
  margin-bottom:      0.75rem;
}

.mb-4 {
  margin-bottom:      1rem;
}

.mb-5 {
  margin-bottom:      1.25rem;
}

.mb-6 {
  margin-bottom:      1.5rem;
}

.ml-0\.5 {
  margin-left:      0.125rem;
}

.ml-1 {
  margin-left:      0.25rem;
}

.ml-2 {
  margin-left:      0.5rem;
}

.ml-3 {
  margin-left:      0.75rem;
}

.ml-4 {
  margin-left:      1rem;
}

.ml-auto {
  margin-left:      auto;
}

.mr-1 {
  margin-right:      0.25rem;
}

.mr-1\.5 {
  margin-right:      0.375rem;
}

.mt-0\.5 {
  margin-top:      0.125rem;
}

.mt-1 {
  margin-top:      0.25rem;
}

.mt-1\.5 {
  margin-top:      0.375rem;
}

.mt-2 {
  margin-top:      0.5rem;
}

.mt-3 {
  margin-top:      0.75rem;
}

.mt-4 {
  margin-top:      1rem;
}

.mt-6 {
  margin-top:      1.5rem;
}

.mt-px {
  margin-top:      1px;
}

.block {
  display:      block;
}

.inline-block {
  display:      inline-block;
}

.inline {
  display:      inline;
}

.flex {
  display:      flex;
}

.inline-flex {
  display:      inline-flex;
}

.table {
  display:      table;
}

.grid {
  display:      grid;
}

.contents {
  display:      contents;
}

.hidden {
  display:      none;
}

.h-0\.5 {
  height:      0.125rem;
}

.h-1 {
  height:      0.25rem;
}

.h-1\.5 {
  height:      0.375rem;
}

.h-1\/2 {
  height:      50%;
}

.h-10 {
  height:      2.5rem;
}

.h-12 {
  height:      3rem;
}

.h-16 {
  height:      4rem;
}

.h-2 {
  height:      0.5rem;
}

.h-2\.5 {
  height:      0.625rem;
}

.h-3 {
  height:      0.75rem;
}

.h-3\.5 {
  height:      0.875rem;
}

.h-32 {
  height:      8rem;
}

.h-4 {
  height:      1rem;
}

.h-40 {
  height:      10rem;
}

.h-5 {
  height:      1.25rem;
}

.h-7 {
  height:      1.75rem;
}

.h-8 {
  height:      2rem;
}

.h-\[180px\] {
  height:      180px;
}

.h-full {
  height:      100%;
}

.h-px {
  height:      1px;
}

.h-screen {
  height:      100vh;
}

.max-h-40 {
  max-height:      10rem;
}

.max-h-64 {
  max-height:      16rem;
}

.max-h-72 {
  max-height:      18rem;
}

.min-h-0 {
  min-height:      0px;
}

.min-h-full {
  min-height:      100%;
}

.w-1 {
  width:      0.25rem;
}

.w-1\.5 {
  width:      0.375rem;
}

.w-1\/2 {
  width:      50%;
}

.w-10 {
  width:      2.5rem;
}

.w-12 {
  width:      3rem;
}

.w-14 {
  width:      3.5rem;
}

.w-16 {
  width:      4rem;
}

.w-2 {
  width:      0.5rem;
}

.w-2\.5 {
  width:      0.625rem;
}

.w-20 {
  width:      5rem;
}

.w-24 {
  width:      6rem;
}

.w-28 {
  width:      7rem;
}

.w-3 {
  width:      0.75rem;
}

.w-3\.5 {
  width:      0.875rem;
}

.w-32 {
  width:      8rem;
}

.w-36 {
  width:      9rem;
}

.w-4 {
  width:      1rem;
}

.w-40 {
  width:      10rem;
}

.w-48 {
  width:      12rem;
}

.w-5 {
  width:      1.25rem;
}

.w-52 {
  width:      13rem;
}

.w-60 {
  width:      15rem;
}

.w-64 {
  width:      16rem;
}

.w-7 {
  width:      1.75rem;
}

.w-8 {
  width:      2rem;
}

.w-80 {
  width:      20rem;
}

.w-9 {
  width:      2.25rem;
}

.w-full {
  width:      100%;
}

.w-px {
  width:      1px;
}

.min-w-0 {
  min-width:      0px;
}

.min-w-4 {
  min-width:      1rem;
}

.min-w-\[100px\] {
  min-width:      100px;
}

.min-w-\[120px\] {
  min-width:      120px;
}

.min-w-\[180px\] {
  min-width:      180px;
}

.max-w-0 {
  max-width:      0px;
}

.max-w-2xl {
  max-width:      42rem;
}

.max-w-\[120px\] {
  max-width:      120px;
}

.max-w-\[140px\] {
  max-width:      140px;
}

.max-w-\[160px\] {
  max-width:      160px;
}

.max-w-\[200px\] {
  max-width:      200px;
}

.max-w-\[250px\] {
  max-width:      250px;
}

.max-w-\[260px\] {
  max-width:      260px;
}

.max-w-sm {
  max-width:      24rem;
}

.max-w-xs {
  max-width:      20rem;
}

.flex-1 {
  flex:      1 1 0%;
}

.flex-shrink-0 {
  flex-shrink:      0;
}

.border-collapse {
  border-collapse:      collapse;
}

.-translate-x-full {
  --tw-translate-x:      -100%;
  transform:      translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-0 {
  --tw-translate-x:      0px;
  transform:      translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform:      translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes bounce {

  0%, 100% {
    transform:      translateY(-25%);
    animation-timing-function:      cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform:      none;
    animation-timing-function:      cubic-bezier(0,0,0.2,1);
  }
}

.animate-bounce {
  animation:      bounce 1s infinite;
}

@keyframes pulse {

  50% {
    opacity:      .5;
  }
}

.animate-pulse {
  animation:      pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spin {

  to {
    transform:      rotate(360deg);
  }
}

.animate-spin {
  animation:      spin 1s linear infinite;
}

.cursor-default {
  cursor:      default;
}

.cursor-not-allowed {
  cursor:      not-allowed;
}

.cursor-pointer {
  cursor:      pointer;
}

.select-none {
  -webkit-user-select:      none;
     -moz-user-select:      none;
          user-select:      none;
}

.resize-none {
  resize:      none;
}

.appearance-none {
  -webkit-appearance:      none;
     -moz-appearance:      none;
          appearance:      none;
}

.grid-cols-1 {
  grid-template-columns:      repeat(1, minmax(0, 1fr));
}

.grid-cols-\[1fr_auto_auto_auto_auto\] {
  grid-template-columns:      1fr auto auto auto auto;
}

.flex-col {
  flex-direction:      column;
}

.flex-wrap {
  flex-wrap:      wrap;
}

.items-start {
  align-items:      flex-start;
}

.items-end {
  align-items:      flex-end;
}

.items-center {
  align-items:      center;
}

.items-baseline {
  align-items:      baseline;
}

.items-stretch {
  align-items:      stretch;
}

.justify-start {
  justify-content:      flex-start;
}

.justify-end {
  justify-content:      flex-end;
}

.justify-center {
  justify-content:      center;
}

.justify-between {
  justify-content:      space-between;
}

.gap-0 {
  gap:      0px;
}

.gap-0\.5 {
  gap:      0.125rem;
}

.gap-1 {
  gap:      0.25rem;
}

.gap-1\.5 {
  gap:      0.375rem;
}

.gap-2 {
  gap:      0.5rem;
}

.gap-3 {
  gap:      0.75rem;
}

.gap-4 {
  gap:      1rem;
}

.gap-5 {
  gap:      1.25rem;
}

.gap-6 {
  gap:      1.5rem;
}

.gap-x-4 {
  -moz-column-gap:      1rem;
       column-gap:      1rem;
}

.gap-y-0\.5 {
  row-gap:      0.125rem;
}

.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:      0;
  margin-top:      calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:      calc(0.125rem * var(--tw-space-y-reverse));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:      0;
  margin-top:      calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:      calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:      0;
  margin-top:      calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:      calc(0.375rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:      0;
  margin-top:      calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:      calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:      0;
  margin-top:      calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:      calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:      0;
  margin-top:      calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:      calc(1rem * var(--tw-space-y-reverse));
}

.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:      0;
  margin-top:      calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:      calc(1.25rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:      0;
  margin-top:      calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:      calc(1.5rem * var(--tw-space-y-reverse));
}

.overflow-auto {
  overflow:      auto;
}

.overflow-hidden {
  overflow:      hidden;
}

.overflow-x-auto {
  overflow-x:      auto;
}

.overflow-y-auto {
  overflow-y:      auto;
}

.truncate {
  overflow:      hidden;
  text-overflow:      ellipsis;
  white-space:      nowrap;
}

.whitespace-nowrap {
  white-space:      nowrap;
}

.whitespace-pre-wrap {
  white-space:      pre-wrap;
}

.break-words {
  overflow-wrap:      break-word;
}

.break-all {
  word-break:      break-all;
}

.rounded {
  border-radius:      0.25rem;
}

.rounded-full {
  border-radius:      9999px;
}

.rounded-lg {
  border-radius:      0.5rem;
}

.rounded-none {
  border-radius:      0px;
}

.rounded-sm {
  border-radius:      0.125rem;
}

.border {
  border-width:      1px;
}

.border-0 {
  border-width:      0px;
}

.border-2 {
  border-width:      2px;
}

.border-b {
  border-bottom-width:      1px;
}

.border-b-2 {
  border-bottom-width:      2px;
}

.border-l {
  border-left-width:      1px;
}

.border-l-2 {
  border-left-width:      2px;
}

.border-l-4 {
  border-left-width:      4px;
}

.border-r {
  border-right-width:      1px;
}

.border-t {
  border-top-width:      1px;
}

.border-accent {
  border-color:      hsl(var(--accent));
}

.border-accent\/20 {
  border-color:      hsl(var(--accent) / 0.2);
}

.border-accent\/30 {
  border-color:      hsl(var(--accent) / 0.3);
}

.border-accent\/40 {
  border-color:      hsl(var(--accent) / 0.4);
}

.border-accent\/50 {
  border-color:      hsl(var(--accent) / 0.5);
}

.border-amber-400\/20 {
  border-color:      rgb(251 191 36 / 0.2);
}

.border-amber-400\/60 {
  border-color:      rgb(251 191 36 / 0.6);
}

.border-border {
  border-color:      hsl(var(--border));
}

.border-border\/10 {
  border-color:      hsl(var(--border) / 0.1);
}

.border-border\/20 {
  border-color:      hsl(var(--border) / 0.2);
}

.border-border\/30 {
  border-color:      hsl(var(--border) / 0.3);
}

.border-border\/40 {
  border-color:      hsl(var(--border) / 0.4);
}

.border-border\/50 {
  border-color:      hsl(var(--border) / 0.5);
}

.border-border\/60 {
  border-color:      hsl(var(--border) / 0.6);
}

.border-border\/70 {
  border-color:      hsl(var(--border) / 0.7);
}

.border-emerald-500\/30 {
  border-color:      rgb(16 185 129 / 0.3);
}

.border-foreground\/40 {
  border-color:      hsl(var(--foreground) / 0.4);
}

.border-green-400\/20 {
  border-color:      rgb(74 222 128 / 0.2);
}

.border-green-400\/60 {
  border-color:      rgb(74 222 128 / 0.6);
}

.border-green-500\/10 {
  border-color:      rgb(34 197 94 / 0.1);
}

.border-hive-border {
  border-color:      hsl(var(--border));
}

.border-inherit {
  border-color:      inherit;
}

.border-muted-foreground\/40 {
  border-color:      hsl(var(--muted-foreground) / 0.4);
}

.border-purple-500\/10 {
  border-color:      rgb(168 85 247 / 0.1);
}

.border-red-400 {
  --tw-border-opacity:      1;
  border-color:      rgb(248 113 113 / var(--tw-border-opacity, 1));
}

.border-red-400\/20 {
  border-color:      rgb(248 113 113 / 0.2);
}

.border-red-400\/30 {
  border-color:      rgb(248 113 113 / 0.3);
}

.border-red-400\/60 {
  border-color:      rgb(248 113 113 / 0.6);
}

.border-red-500\/10 {
  border-color:      rgb(239 68 68 / 0.1);
}

.border-red-500\/20 {
  border-color:      rgb(239 68 68 / 0.2);
}

.border-red-500\/30 {
  border-color:      rgb(239 68 68 / 0.3);
}

.border-red-500\/40 {
  border-color:      rgb(239 68 68 / 0.4);
}

.border-red-500\/60 {
  border-color:      rgb(239 68 68 / 0.6);
}

.border-red-800 {
  --tw-border-opacity:      1;
  border-color:      rgb(153 27 27 / var(--tw-border-opacity, 1));
}

.border-sky-400 {
  --tw-border-opacity:      1;
  border-color:      rgb(56 189 248 / var(--tw-border-opacity, 1));
}

.border-transparent {
  border-color:      transparent;
}

.border-violet-400 {
  --tw-border-opacity:      1;
  border-color:      rgb(167 139 250 / var(--tw-border-opacity, 1));
}

.border-white\/10 {
  border-color:      rgb(255 255 255 / 0.1);
}

.border-yellow-300 {
  --tw-border-opacity:      1;
  border-color:      rgb(253 224 71 / var(--tw-border-opacity, 1));
}

.border-yellow-400\/30 {
  border-color:      rgb(250 204 21 / 0.3);
}

.border-yellow-400\/40 {
  border-color:      rgb(250 204 21 / 0.4);
}

.border-yellow-400\/50 {
  border-color:      rgb(250 204 21 / 0.5);
}

.border-yellow-500\/30 {
  border-color:      rgb(234 179 8 / 0.3);
}

.border-b-accent {
  border-bottom-color:      hsl(var(--accent));
}

.border-b-transparent {
  border-bottom-color:      transparent;
}

.border-l-accent {
  border-left-color:      hsl(var(--accent));
}

.border-l-accent\/30 {
  border-left-color:      hsl(var(--accent) / 0.3);
}

.border-l-emerald-500 {
  --tw-border-opacity:      1;
  border-left-color:      rgb(16 185 129 / var(--tw-border-opacity, 1));
}

.border-l-red-400 {
  --tw-border-opacity:      1;
  border-left-color:      rgb(248 113 113 / var(--tw-border-opacity, 1));
}

.border-l-red-500 {
  --tw-border-opacity:      1;
  border-left-color:      rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-l-transparent {
  border-left-color:      transparent;
}

.border-l-yellow-300 {
  --tw-border-opacity:      1;
  border-left-color:      rgb(253 224 71 / var(--tw-border-opacity, 1));
}

.border-l-yellow-400\/30 {
  border-left-color:      rgb(250 204 21 / 0.3);
}

.bg-accent {
  background-color:      hsl(var(--accent));
}

.bg-accent\/10 {
  background-color:      hsl(var(--accent) / 0.1);
}

.bg-accent\/20 {
  background-color:      hsl(var(--accent) / 0.2);
}

.bg-accent\/30 {
  background-color:      hsl(var(--accent) / 0.3);
}

.bg-accent\/5 {
  background-color:      hsl(var(--accent) / 0.05);
}

.bg-accent\/50 {
  background-color:      hsl(var(--accent) / 0.5);
}

.bg-accent\/70 {
  background-color:      hsl(var(--accent) / 0.7);
}

.bg-accent\/\[0\.06\] {
  background-color:      hsl(var(--accent) / 0.06);
}

.bg-amber-400 {
  --tw-bg-opacity:      1;
  background-color:      rgb(251 191 36 / var(--tw-bg-opacity, 1));
}

.bg-amber-400\/10 {
  background-color:      rgb(251 191 36 / 0.1);
}

.bg-amber-500 {
  --tw-bg-opacity:      1;
  background-color:      rgb(245 158 11 / var(--tw-bg-opacity, 1));
}

.bg-amber-900\/50 {
  background-color:      rgb(120 53 15 / 0.5);
}

.bg-amber-900\/60 {
  background-color:      rgb(120 53 15 / 0.6);
}

.bg-background {
  background-color:      hsl(var(--background));
}

.bg-background\/40 {
  background-color:      hsl(var(--background) / 0.4);
}

.bg-background\/95 {
  background-color:      hsl(var(--background) / 0.95);
}

.bg-black\/50 {
  background-color:      rgb(0 0 0 / 0.5);
}

.bg-black\/70 {
  background-color:      rgb(0 0 0 / 0.7);
}

.bg-blue-400 {
  --tw-bg-opacity:      1;
  background-color:      rgb(96 165 250 / var(--tw-bg-opacity, 1));
}

.bg-blue-400\/10 {
  background-color:      rgb(96 165 250 / 0.1);
}

.bg-blue-900\/60 {
  background-color:      rgb(30 58 138 / 0.6);
}

.bg-border {
  background-color:      hsl(var(--border));
}

.bg-border\/80 {
  background-color:      hsl(var(--border) / 0.8);
}

.bg-card {
  background-color:      hsl(var(--card));
}

.bg-card\/50 {
  background-color:      hsl(var(--card) / 0.5);
}

.bg-card\/95 {
  background-color:      hsl(var(--card) / 0.95);
}

.bg-cyan-400\/10 {
  background-color:      rgb(34 211 238 / 0.1);
}

.bg-cyan-900\/60 {
  background-color:      rgb(22 78 99 / 0.6);
}

.bg-emerald-400\/10 {
  background-color:      rgb(52 211 153 / 0.1);
}

.bg-emerald-500 {
  --tw-bg-opacity:      1;
  background-color:      rgb(16 185 129 / var(--tw-bg-opacity, 1));
}

.bg-emerald-500\/20 {
  background-color:      rgb(16 185 129 / 0.2);
}

.bg-emerald-900\/60 {
  background-color:      rgb(6 78 59 / 0.6);
}

.bg-emerald-950\/60 {
  background-color:      rgb(2 44 34 / 0.6);
}

.bg-fuchsia-900\/60 {
  background-color:      rgb(112 26 117 / 0.6);
}

.bg-green-400\/10 {
  background-color:      rgb(74 222 128 / 0.1);
}

.bg-green-900\/60 {
  background-color:      rgb(20 83 45 / 0.6);
}

.bg-hive-bg {
  background-color:      hsl(var(--background));
}

.bg-indigo-400 {
  --tw-bg-opacity:      1;
  background-color:      rgb(129 140 248 / var(--tw-bg-opacity, 1));
}

.bg-indigo-900\/60 {
  background-color:      rgb(49 46 129 / 0.6);
}

.bg-inherit {
  background-color:      inherit;
}

.bg-lime-900\/60 {
  background-color:      rgb(54 83 20 / 0.6);
}

.bg-muted {
  background-color:      hsl(var(--muted));
}

.bg-muted-foreground {
  background-color:      hsl(var(--muted-foreground));
}

.bg-muted-foreground\/10 {
  background-color:      hsl(var(--muted-foreground) / 0.1);
}

.bg-muted-foreground\/20 {
  background-color:      hsl(var(--muted-foreground) / 0.2);
}

.bg-muted-foreground\/30 {
  background-color:      hsl(var(--muted-foreground) / 0.3);
}

.bg-muted\/10 {
  background-color:      hsl(var(--muted) / 0.1);
}

.bg-muted\/20 {
  background-color:      hsl(var(--muted) / 0.2);
}

.bg-muted\/50 {
  background-color:      hsl(var(--muted) / 0.5);
}

.bg-orange-300\/10 {
  background-color:      rgb(253 186 116 / 0.1);
}

.bg-orange-400 {
  --tw-bg-opacity:      1;
  background-color:      rgb(251 146 60 / var(--tw-bg-opacity, 1));
}

.bg-orange-400\/10 {
  background-color:      rgb(251 146 60 / 0.1);
}

.bg-orange-400\/60 {
  background-color:      rgb(251 146 60 / 0.6);
}

.bg-orange-900\/60 {
  background-color:      rgb(124 45 18 / 0.6);
}

.bg-pink-300\/10 {
  background-color:      rgb(249 168 212 / 0.1);
}

.bg-pink-400\/10 {
  background-color:      rgb(244 114 182 / 0.1);
}

.bg-pink-900\/60 {
  background-color:      rgb(131 24 67 / 0.6);
}

.bg-purple-400\/10 {
  background-color:      rgb(192 132 252 / 0.1);
}

.bg-purple-500\/5 {
  background-color:      rgb(168 85 247 / 0.05);
}

.bg-purple-900\/60 {
  background-color:      rgb(88 28 135 / 0.6);
}

.bg-red-400\/10 {
  background-color:      rgb(248 113 113 / 0.1);
}

.bg-red-400\/40 {
  background-color:      rgb(248 113 113 / 0.4);
}

.bg-red-500 {
  --tw-bg-opacity:      1;
  background-color:      rgb(239 68 68 / var(--tw-bg-opacity, 1));
}

.bg-red-500\/10 {
  background-color:      rgb(239 68 68 / 0.1);
}

.bg-red-500\/20 {
  background-color:      rgb(239 68 68 / 0.2);
}

.bg-red-500\/5 {
  background-color:      rgb(239 68 68 / 0.05);
}

.bg-red-900 {
  --tw-bg-opacity:      1;
  background-color:      rgb(127 29 29 / var(--tw-bg-opacity, 1));
}

.bg-red-900\/60 {
  background-color:      rgb(127 29 29 / 0.6);
}

.bg-red-950\/60 {
  background-color:      rgb(69 10 10 / 0.6);
}

.bg-rose-300\/10 {
  background-color:      rgb(253 164 175 / 0.1);
}

.bg-rose-400\/10 {
  background-color:      rgb(251 113 133 / 0.1);
}

.bg-rose-900\/60 {
  background-color:      rgb(136 19 55 / 0.6);
}

.bg-sky-400 {
  --tw-bg-opacity:      1;
  background-color:      rgb(56 189 248 / var(--tw-bg-opacity, 1));
}

.bg-sky-900\/60 {
  background-color:      rgb(12 74 110 / 0.6);
}

.bg-slate-100 {
  --tw-bg-opacity:      1;
  background-color:      rgb(241 245 249 / var(--tw-bg-opacity, 1));
}

.bg-slate-300 {
  --tw-bg-opacity:      1;
  background-color:      rgb(203 213 225 / var(--tw-bg-opacity, 1));
}

.bg-slate-400\/10 {
  background-color:      rgb(148 163 184 / 0.1);
}

.bg-slate-700\/60 {
  background-color:      rgb(51 65 85 / 0.6);
}

.bg-teal-900\/60 {
  background-color:      rgb(19 78 74 / 0.6);
}

.bg-transparent {
  background-color:      transparent;
}

.bg-violet-400 {
  --tw-bg-opacity:      1;
  background-color:      rgb(167 139 250 / var(--tw-bg-opacity, 1));
}

.bg-violet-900\/60 {
  background-color:      rgb(76 29 149 / 0.6);
}

.bg-white {
  --tw-bg-opacity:      1;
  background-color:      rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/5 {
  background-color:      rgb(255 255 255 / 0.05);
}

.bg-yellow-400\/10 {
  background-color:      rgb(250 204 21 / 0.1);
}

.bg-yellow-400\/5 {
  background-color:      rgb(250 204 21 / 0.05);
}

.bg-yellow-400\/50 {
  background-color:      rgb(250 204 21 / 0.5);
}

.bg-yellow-400\/60 {
  background-color:      rgb(250 204 21 / 0.6);
}

.bg-yellow-500\/20 {
  background-color:      rgb(234 179 8 / 0.2);
}

.bg-yellow-900\/60 {
  background-color:      rgb(113 63 18 / 0.6);
}

.bg-zinc-900 {
  --tw-bg-opacity:      1;
  background-color:      rgb(24 24 27 / var(--tw-bg-opacity, 1));
}

.p-0 {
  padding:      0px;
}

.p-1 {
  padding:      0.25rem;
}

.p-1\.5 {
  padding:      0.375rem;
}

.p-2 {
  padding:      0.5rem;
}

.p-3 {
  padding:      0.75rem;
}

.p-4 {
  padding:      1rem;
}

.p-6 {
  padding:      1.5rem;
}

.p-8 {
  padding:      2rem;
}

.px-0\.5 {
  padding-left:      0.125rem;
  padding-right:      0.125rem;
}

.px-1 {
  padding-left:      0.25rem;
  padding-right:      0.25rem;
}

.px-1\.5 {
  padding-left:      0.375rem;
  padding-right:      0.375rem;
}

.px-2 {
  padding-left:      0.5rem;
  padding-right:      0.5rem;
}

.px-2\.5 {
  padding-left:      0.625rem;
  padding-right:      0.625rem;
}

.px-3 {
  padding-left:      0.75rem;
  padding-right:      0.75rem;
}

.px-4 {
  padding-left:      1rem;
  padding-right:      1rem;
}

.px-6 {
  padding-left:      1.5rem;
  padding-right:      1.5rem;
}

.px-8 {
  padding-left:      2rem;
  padding-right:      2rem;
}

.py-0 {
  padding-top:      0px;
  padding-bottom:      0px;
}

.py-0\.5 {
  padding-top:      0.125rem;
  padding-bottom:      0.125rem;
}

.py-1 {
  padding-top:      0.25rem;
  padding-bottom:      0.25rem;
}

.py-1\.5 {
  padding-top:      0.375rem;
  padding-bottom:      0.375rem;
}

.py-2 {
  padding-top:      0.5rem;
  padding-bottom:      0.5rem;
}

.py-2\.5 {
  padding-top:      0.625rem;
  padding-bottom:      0.625rem;
}

.py-3 {
  padding-top:      0.75rem;
  padding-bottom:      0.75rem;
}

.py-4 {
  padding-top:      1rem;
  padding-bottom:      1rem;
}

.py-6 {
  padding-top:      1.5rem;
  padding-bottom:      1.5rem;
}

.py-px {
  padding-top:      1px;
  padding-bottom:      1px;
}

.pb-1 {
  padding-bottom:      0.25rem;
}

.pb-16 {
  padding-bottom:      4rem;
}

.pb-2 {
  padding-bottom:      0.5rem;
}

.pb-3 {
  padding-bottom:      0.75rem;
}

.pl-12 {
  padding-left:      3rem;
}

.pl-2 {
  padding-left:      0.5rem;
}

.pl-6 {
  padding-left:      1.5rem;
}

.pl-7 {
  padding-left:      1.75rem;
}

.pl-9 {
  padding-left:      2.25rem;
}

.pr-3 {
  padding-right:      0.75rem;
}

.pt-0 {
  padding-top:      0px;
}

.pt-1 {
  padding-top:      0.25rem;
}

.pt-2 {
  padding-top:      0.5rem;
}

.pt-3 {
  padding-top:      0.75rem;
}

.text-left {
  text-align:      left;
}

.text-center {
  text-align:      center;
}

.text-right {
  text-align:      right;
}

.align-text-bottom {
  vertical-align:      text-bottom;
}

.font-mono {
  font-family:      ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-2xl {
  font-size:      1.5rem;
  line-height:      2rem;
}

.text-\[10px\] {
  font-size:      10px;
}

.text-\[11px\] {
  font-size:      11px;
}

.text-\[12px\] {
  font-size:      12px;
}

.text-\[6px\] {
  font-size:      6px;
}

.text-\[7px\] {
  font-size:      7px;
}

.text-\[8px\] {
  font-size:      8px;
}

.text-\[9px\] {
  font-size:      9px;
}

.text-lg {
  font-size:      1.125rem;
  line-height:      1.75rem;
}

.text-sm {
  font-size:      0.875rem;
  line-height:      1.25rem;
}

.text-xl {
  font-size:      1.25rem;
  line-height:      1.75rem;
}

.text-xs {
  font-size:      0.75rem;
  line-height:      1rem;
}

.font-black {
  font-weight:      900;
}

.font-bold {
  font-weight:      700;
}

.font-medium {
  font-weight:      500;
}

.uppercase {
  text-transform:      uppercase;
}

.lowercase {
  text-transform:      lowercase;
}

.italic {
  font-style:      italic;
}

.tabular-nums {
  --tw-numeric-spacing:      tabular-nums;
  font-variant-numeric:      var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}

.leading-none {
  line-height:      1;
}

.leading-relaxed {
  line-height:      1.625;
}

.tracking-\[0\.25em\] {
  letter-spacing:      0.25em;
}

.tracking-\[0\.2em\] {
  letter-spacing:      0.2em;
}

.tracking-tight {
  letter-spacing:      -0.025em;
}

.tracking-tighter {
  letter-spacing:      -0.05em;
}

.tracking-wide {
  letter-spacing:      0.025em;
}

.tracking-wider {
  letter-spacing:      0.05em;
}

.tracking-widest {
  letter-spacing:      0.1em;
}

.text-accent {
  color:      hsl(var(--accent));
}

.text-accent-foreground {
  color:      hsl(var(--accent-foreground));
}

.text-accent\/30 {
  color:      hsl(var(--accent) / 0.3);
}

.text-accent\/40 {
  color:      hsl(var(--accent) / 0.4);
}

.text-accent\/50 {
  color:      hsl(var(--accent) / 0.5);
}

.text-accent\/60 {
  color:      hsl(var(--accent) / 0.6);
}

.text-accent\/70 {
  color:      hsl(var(--accent) / 0.7);
}

.text-accent\/80 {
  color:      hsl(var(--accent) / 0.8);
}

.text-amber-300 {
  --tw-text-opacity:      1;
  color:      rgb(252 211 77 / var(--tw-text-opacity, 1));
}

.text-amber-400 {
  --tw-text-opacity:      1;
  color:      rgb(251 191 36 / var(--tw-text-opacity, 1));
}

.text-amber-400\/60 {
  color:      rgb(251 191 36 / 0.6);
}

.text-amber-400\/70 {
  color:      rgb(251 191 36 / 0.7);
}

.text-amber-500 {
  --tw-text-opacity:      1;
  color:      rgb(245 158 11 / var(--tw-text-opacity, 1));
}

.text-background {
  color:      hsl(var(--background));
}

.text-black {
  --tw-text-opacity:      1;
  color:      rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-blue-300 {
  --tw-text-opacity:      1;
  color:      rgb(147 197 253 / var(--tw-text-opacity, 1));
}

.text-blue-400 {
  --tw-text-opacity:      1;
  color:      rgb(96 165 250 / var(--tw-text-opacity, 1));
}

.text-cyan-300 {
  --tw-text-opacity:      1;
  color:      rgb(103 232 249 / var(--tw-text-opacity, 1));
}

.text-cyan-400 {
  --tw-text-opacity:      1;
  color:      rgb(34 211 238 / var(--tw-text-opacity, 1));
}

.text-emerald-300 {
  --tw-text-opacity:      1;
  color:      rgb(110 231 183 / var(--tw-text-opacity, 1));
}

.text-emerald-400 {
  --tw-text-opacity:      1;
  color:      rgb(52 211 153 / var(--tw-text-opacity, 1));
}

.text-foreground {
  color:      hsl(var(--foreground));
}

.text-foreground\/40 {
  color:      hsl(var(--foreground) / 0.4);
}

.text-foreground\/50 {
  color:      hsl(var(--foreground) / 0.5);
}

.text-foreground\/55 {
  color:      hsl(var(--foreground) / 0.55);
}

.text-foreground\/60 {
  color:      hsl(var(--foreground) / 0.6);
}

.text-foreground\/70 {
  color:      hsl(var(--foreground) / 0.7);
}

.text-foreground\/80 {
  color:      hsl(var(--foreground) / 0.8);
}

.text-foreground\/90 {
  color:      hsl(var(--foreground) / 0.9);
}

.text-fuchsia-300 {
  --tw-text-opacity:      1;
  color:      rgb(240 171 252 / var(--tw-text-opacity, 1));
}

.text-green-300 {
  --tw-text-opacity:      1;
  color:      rgb(134 239 172 / var(--tw-text-opacity, 1));
}

.text-green-400 {
  --tw-text-opacity:      1;
  color:      rgb(74 222 128 / var(--tw-text-opacity, 1));
}

.text-green-400\/50 {
  color:      rgb(74 222 128 / 0.5);
}

.text-green-400\/60 {
  color:      rgb(74 222 128 / 0.6);
}

.text-green-400\/70 {
  color:      rgb(74 222 128 / 0.7);
}

.text-hive-fg {
  color:      hsl(var(--foreground));
}

.text-indigo-300 {
  --tw-text-opacity:      1;
  color:      rgb(165 180 252 / var(--tw-text-opacity, 1));
}

.text-indigo-400 {
  --tw-text-opacity:      1;
  color:      rgb(129 140 248 / var(--tw-text-opacity, 1));
}

.text-lime-300 {
  --tw-text-opacity:      1;
  color:      rgb(190 242 100 / var(--tw-text-opacity, 1));
}

.text-muted-foreground {
  color:      hsl(var(--muted-foreground));
}

.text-muted-foreground\/20 {
  color:      hsl(var(--muted-foreground) / 0.2);
}

.text-muted-foreground\/25 {
  color:      hsl(var(--muted-foreground) / 0.25);
}

.text-muted-foreground\/30 {
  color:      hsl(var(--muted-foreground) / 0.3);
}

.text-muted-foreground\/40 {
  color:      hsl(var(--muted-foreground) / 0.4);
}

.text-muted-foreground\/50 {
  color:      hsl(var(--muted-foreground) / 0.5);
}

.text-muted-foreground\/60 {
  color:      hsl(var(--muted-foreground) / 0.6);
}

.text-muted-foreground\/70 {
  color:      hsl(var(--muted-foreground) / 0.7);
}

.text-orange-300 {
  --tw-text-opacity:      1;
  color:      rgb(253 186 116 / var(--tw-text-opacity, 1));
}

.text-orange-400 {
  --tw-text-opacity:      1;
  color:      rgb(251 146 60 / var(--tw-text-opacity, 1));
}

.text-pink-300 {
  --tw-text-opacity:      1;
  color:      rgb(249 168 212 / var(--tw-text-opacity, 1));
}

.text-pink-400 {
  --tw-text-opacity:      1;
  color:      rgb(244 114 182 / var(--tw-text-opacity, 1));
}

.text-purple-300 {
  --tw-text-opacity:      1;
  color:      rgb(216 180 254 / var(--tw-text-opacity, 1));
}

.text-purple-400 {
  --tw-text-opacity:      1;
  color:      rgb(192 132 252 / var(--tw-text-opacity, 1));
}

.text-purple-400\/60 {
  color:      rgb(192 132 252 / 0.6);
}

.text-purple-500 {
  --tw-text-opacity:      1;
  color:      rgb(168 85 247 / var(--tw-text-opacity, 1));
}

.text-purple-500\/40 {
  color:      rgb(168 85 247 / 0.4);
}

.text-purple-500\/50 {
  color:      rgb(168 85 247 / 0.5);
}

.text-red-300 {
  --tw-text-opacity:      1;
  color:      rgb(252 165 165 / var(--tw-text-opacity, 1));
}

.text-red-400 {
  --tw-text-opacity:      1;
  color:      rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.text-red-400\/40 {
  color:      rgb(248 113 113 / 0.4);
}

.text-red-400\/50 {
  color:      rgb(248 113 113 / 0.5);
}

.text-red-400\/60 {
  color:      rgb(248 113 113 / 0.6);
}

.text-red-400\/70 {
  color:      rgb(248 113 113 / 0.7);
}

.text-red-400\/80 {
  color:      rgb(248 113 113 / 0.8);
}

.text-red-500 {
  --tw-text-opacity:      1;
  color:      rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.text-red-500\/40 {
  color:      rgb(239 68 68 / 0.4);
}

.text-rose-300 {
  --tw-text-opacity:      1;
  color:      rgb(253 164 175 / var(--tw-text-opacity, 1));
}

.text-rose-400 {
  --tw-text-opacity:      1;
  color:      rgb(251 113 133 / var(--tw-text-opacity, 1));
}

.text-sky-300 {
  --tw-text-opacity:      1;
  color:      rgb(125 211 252 / var(--tw-text-opacity, 1));
}

.text-sky-400 {
  --tw-text-opacity:      1;
  color:      rgb(56 189 248 / var(--tw-text-opacity, 1));
}

.text-sky-400\/70 {
  color:      rgb(56 189 248 / 0.7);
}

.text-slate-300 {
  --tw-text-opacity:      1;
  color:      rgb(203 213 225 / var(--tw-text-opacity, 1));
}

.text-slate-400 {
  --tw-text-opacity:      1;
  color:      rgb(148 163 184 / var(--tw-text-opacity, 1));
}

.text-teal-300 {
  --tw-text-opacity:      1;
  color:      rgb(94 234 212 / var(--tw-text-opacity, 1));
}

.text-token {
  color:      hsl(var(--token-color));
}

.text-token\/50 {
  color:      hsl(var(--token-color) / 0.5);
}

.text-violet-300 {
  --tw-text-opacity:      1;
  color:      rgb(196 181 253 / var(--tw-text-opacity, 1));
}

.text-violet-400 {
  --tw-text-opacity:      1;
  color:      rgb(167 139 250 / var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity:      1;
  color:      rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/60 {
  color:      rgb(255 255 255 / 0.6);
}

.text-yellow-300 {
  --tw-text-opacity:      1;
  color:      rgb(253 224 71 / var(--tw-text-opacity, 1));
}

.text-yellow-400 {
  --tw-text-opacity:      1;
  color:      rgb(250 204 21 / var(--tw-text-opacity, 1));
}

.text-yellow-400\/50 {
  color:      rgb(250 204 21 / 0.5);
}

.text-yellow-400\/60 {
  color:      rgb(250 204 21 / 0.6);
}

.text-yellow-400\/70 {
  color:      rgb(250 204 21 / 0.7);
}

.text-yellow-400\/80 {
  color:      rgb(250 204 21 / 0.8);
}

.line-through {
  text-decoration-line:      line-through;
}

.accent-accent {
  accent-color:      hsl(var(--accent));
}

.opacity-0 {
  opacity:      0;
}

.opacity-40 {
  opacity:      0.4;
}

.opacity-60 {
  opacity:      0.6;
}

.opacity-70 {
  opacity:      0.7;
}

.opacity-80 {
  opacity:      0.8;
}

.shadow-2xl {
  --tw-shadow:      0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored:      0 25px 50px -12px var(--tw-shadow-color);
  box-shadow:      var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow:      0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:      0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow:      var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow:      0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:      0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow:      var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline:      2px solid transparent;
  outline-offset:      2px;
}

.outline {
  outline-style:      solid;
}

.blur {
  --tw-blur:      blur(8px);
  filter:      var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter:      var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur {
  --tw-backdrop-blur:      blur(8px);
  backdrop-filter:      var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-md {
  --tw-backdrop-blur:      blur(12px);
  backdrop-filter:      var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-sm {
  --tw-backdrop-blur:      blur(4px);
  backdrop-filter:      var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition {
  transition-property:      color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function:      cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:      150ms;
}

.transition-all {
  transition-property:      all;
  transition-timing-function:      cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:      150ms;
}

.transition-colors {
  transition-property:      color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function:      cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:      150ms;
}

.transition-opacity {
  transition-property:      opacity;
  transition-timing-function:      cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:      150ms;
}

.transition-transform {
  transition-property:      transform;
  transition-timing-function:      cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:      150ms;
}

.duration-500 {
  transition-duration:      500ms;
}

.duration-700 {
  transition-duration:      700ms;
}

/**
 * @propolis
 * {
 *   "role": "CONFIG",
 *   "dependencies": ["@hive/shell"],
 *   "agent_instructions": "Bee Protocol CSS Contract. ALL colors flow through HSL variables. No hardcoded hex. No emerald/green/teal/lime."
 * }
 */

/* Light Theme — Hive Beeswax (DEFAULT) */

:root {
  --background: 42 62% 96%;          /* #FBF7EE — Beeswax cream canvas */
  --foreground: 33 40% 12%;          /* #2A1F12 — Propolis ink */
  --card: 43 100% 98%;               /* #FFFCF4 — Elevated cream surface */
  --accent: 38 79% 57%;              /* #E8A93C — Honey amber */
  --accent-foreground: 33 40% 12%;   /* #2A1F12 — Propolis ink on amber */
  --border: 41 48% 83%;              /* #E9DCC0 — Warm taupe hairline */
  --muted: 43 51% 90%;               /* #F2EAD7 — Recessed/sunken fill */
  --muted-foreground: 33 28% 26%;    /* #543F28 — Bark — muted text, ~6.5:1 vs cream */
  --token-color: 210 60% 38%;        /* #286DAD — Token blue, WCAG AA on cream */
}

/* Dark Theme — Obsidian */

[data-theme="dark"] {
  --background: 0 0% 4%;             /* #09090B — Rich Obsidian */
  --foreground: 0 0% 98%;            /* #FAFAFA — Off-White */
  --card: 240 6% 8%;                 /* #121214 — Grid separation layer */
  --accent: 59 94% 45%;              /* #DFE104 — Acid Yellow */
  --accent-foreground: 0 0% 0%;      /* #000000 — Black text on yellow */
  --border: 240 5% 26%;              /* #3F3F46 — Hairline grid */
  --muted: 240 5% 15%;               /* #27272A — Secondary surfaces */
  --muted-foreground: 240 5% 63%;    /* #A1A1AA — Secondary text */
  --token-color: 210 85% 65%;        /* #3B9EF9 — Token blue, readable on obsidian */
}

/* ─── Markdown rendering for assistant messages ───────────────────────────── */

.hive-md p { margin: 0.5em 0; }

.hive-md p:first-child { margin-top: 0; }

.hive-md p:last-child { margin-bottom: 0; }

.hive-md strong { font-weight: 700; }

.hive-md em { font-style: italic; }

.hive-md code { background: hsl(var(--muted)); padding: 0.1em 0.25em; }

.hive-md pre { background: hsl(var(--muted)); padding: 0.5em 0.75em; overflow-x: auto; margin: 0.4em 0; }

.hive-md pre code { background: none; padding: 0; }

.hive-md ul { padding-left: 1.25em; list-style-type: disc; margin: 0.4em 0; }

.hive-md ol { padding-left: 1.25em; list-style-type: decimal; margin: 0.4em 0; }

.hive-md li { margin: 0.15em 0; }

.hive-md h1, .hive-md h2, .hive-md h3 { font-weight: 700; margin: 0.6em 0 0.2em; }

.hive-md blockquote { border-left: 2px solid hsl(var(--border)); padding-left: 0.75em; opacity: 0.8; margin: 0.4em 0; }

.hive-md table { border-collapse: collapse; width: 100%; margin: 0.4em 0; }

.hive-md th, .hive-md td { border: 1px solid hsl(var(--border)); padding: 0.2em 0.5em; text-align: left; }

.hive-md th { font-weight: 700; background: hsl(var(--muted)); }

.hive-md hr { border: none; border-top: 1px solid hsl(var(--border)); margin: 0.5em 0; }

.placeholder\:text-muted-foreground::-moz-placeholder {
  color:      hsl(var(--muted-foreground));
}

.placeholder\:text-muted-foreground::placeholder {
  color:      hsl(var(--muted-foreground));
}

.placeholder\:text-muted-foreground\/20::-moz-placeholder {
  color:      hsl(var(--muted-foreground) / 0.2);
}

.placeholder\:text-muted-foreground\/20::placeholder {
  color:      hsl(var(--muted-foreground) / 0.2);
}

.placeholder\:text-muted-foreground\/25::-moz-placeholder {
  color:      hsl(var(--muted-foreground) / 0.25);
}

.placeholder\:text-muted-foreground\/25::placeholder {
  color:      hsl(var(--muted-foreground) / 0.25);
}

.placeholder\:text-muted-foreground\/30::-moz-placeholder {
  color:      hsl(var(--muted-foreground) / 0.3);
}

.placeholder\:text-muted-foreground\/30::placeholder {
  color:      hsl(var(--muted-foreground) / 0.3);
}

.placeholder\:text-muted-foreground\/40::-moz-placeholder {
  color:      hsl(var(--muted-foreground) / 0.4);
}

.placeholder\:text-muted-foreground\/40::placeholder {
  color:      hsl(var(--muted-foreground) / 0.4);
}

.placeholder\:text-muted-foreground\/70::-moz-placeholder {
  color:      hsl(var(--muted-foreground) / 0.7);
}

.placeholder\:text-muted-foreground\/70::placeholder {
  color:      hsl(var(--muted-foreground) / 0.7);
}

.last\:border-r-0:last-child {
  border-right-width:      0px;
}

.hover\:border-accent:hover {
  border-color:      hsl(var(--accent));
}

.hover\:border-accent\/30:hover {
  border-color:      hsl(var(--accent) / 0.3);
}

.hover\:border-accent\/40:hover {
  border-color:      hsl(var(--accent) / 0.4);
}

.hover\:border-accent\/50:hover {
  border-color:      hsl(var(--accent) / 0.5);
}

.hover\:border-accent\/60:hover {
  border-color:      hsl(var(--accent) / 0.6);
}

.hover\:border-border:hover {
  border-color:      hsl(var(--border));
}

.hover\:border-border\/40:hover {
  border-color:      hsl(var(--border) / 0.4);
}

.hover\:border-border\/50:hover {
  border-color:      hsl(var(--border) / 0.5);
}

.hover\:border-border\/60:hover {
  border-color:      hsl(var(--border) / 0.6);
}

.hover\:border-border\/70:hover {
  border-color:      hsl(var(--border) / 0.7);
}

.hover\:border-foreground\/20:hover {
  border-color:      hsl(var(--foreground) / 0.2);
}

.hover\:border-foreground\/30:hover {
  border-color:      hsl(var(--foreground) / 0.3);
}

.hover\:border-foreground\/40:hover {
  border-color:      hsl(var(--foreground) / 0.4);
}

.hover\:border-foreground\/50:hover {
  border-color:      hsl(var(--foreground) / 0.5);
}

.hover\:border-red-500\/40:hover {
  border-color:      rgb(239 68 68 / 0.4);
}

.hover\:border-yellow-400\/40:hover {
  border-color:      rgb(250 204 21 / 0.4);
}

.hover\:bg-accent:hover {
  background-color:      hsl(var(--accent));
}

.hover\:bg-accent\/10:hover {
  background-color:      hsl(var(--accent) / 0.1);
}

.hover\:bg-accent\/20:hover {
  background-color:      hsl(var(--accent) / 0.2);
}

.hover\:bg-accent\/30:hover {
  background-color:      hsl(var(--accent) / 0.3);
}

.hover\:bg-accent\/5:hover {
  background-color:      hsl(var(--accent) / 0.05);
}

.hover\:bg-accent\/90:hover {
  background-color:      hsl(var(--accent) / 0.9);
}

.hover\:bg-amber-400\/20:hover {
  background-color:      rgb(251 191 36 / 0.2);
}

.hover\:bg-muted:hover {
  background-color:      hsl(var(--muted));
}

.hover\:bg-muted\/20:hover {
  background-color:      hsl(var(--muted) / 0.2);
}

.hover\:bg-muted\/30:hover {
  background-color:      hsl(var(--muted) / 0.3);
}

.hover\:bg-muted\/40:hover {
  background-color:      hsl(var(--muted) / 0.4);
}

.hover\:bg-muted\/50:hover {
  background-color:      hsl(var(--muted) / 0.5);
}

.hover\:bg-muted\/80:hover {
  background-color:      hsl(var(--muted) / 0.8);
}

.hover\:bg-purple-500\/10:hover {
  background-color:      rgb(168 85 247 / 0.1);
}

.hover\:bg-red-400\/20:hover {
  background-color:      rgb(248 113 113 / 0.2);
}

.hover\:bg-red-500\/10:hover {
  background-color:      rgb(239 68 68 / 0.1);
}

.hover\:bg-red-500\/20:hover {
  background-color:      rgb(239 68 68 / 0.2);
}

.hover\:bg-red-600:hover {
  --tw-bg-opacity:      1;
  background-color:      rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-800:hover {
  --tw-bg-opacity:      1;
  background-color:      rgb(153 27 27 / var(--tw-bg-opacity, 1));
}

.hover\:bg-yellow-400\/10:hover {
  background-color:      rgb(250 204 21 / 0.1);
}

.hover\:text-accent:hover {
  color:      hsl(var(--accent));
}

.hover\:text-accent-foreground:hover {
  color:      hsl(var(--accent-foreground));
}

.hover\:text-accent\/70:hover {
  color:      hsl(var(--accent) / 0.7);
}

.hover\:text-amber-400\/80:hover {
  color:      rgb(251 191 36 / 0.8);
}

.hover\:text-foreground:hover {
  color:      hsl(var(--foreground));
}

.hover\:text-foreground\/60:hover {
  color:      hsl(var(--foreground) / 0.6);
}

.hover\:text-foreground\/70:hover {
  color:      hsl(var(--foreground) / 0.7);
}

.hover\:text-muted-foreground:hover {
  color:      hsl(var(--muted-foreground));
}

.hover\:text-muted-foreground\/60:hover {
  color:      hsl(var(--muted-foreground) / 0.6);
}

.hover\:text-muted-foreground\/70:hover {
  color:      hsl(var(--muted-foreground) / 0.7);
}

.hover\:text-red-400:hover {
  --tw-text-opacity:      1;
  color:      rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.hover\:text-red-400\/60:hover {
  color:      rgb(248 113 113 / 0.6);
}

.hover\:text-red-500:hover {
  --tw-text-opacity:      1;
  color:      rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.hover\:text-yellow-400\/70:hover {
  color:      rgb(250 204 21 / 0.7);
}

.hover\:brightness-110:hover {
  --tw-brightness:      brightness(1.1);
  filter:      var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.focus\:border-accent:focus {
  border-color:      hsl(var(--accent));
}

.focus\:border-accent\/40:focus {
  border-color:      hsl(var(--accent) / 0.4);
}

.focus\:border-accent\/50:focus {
  border-color:      hsl(var(--accent) / 0.5);
}

.focus\:border-accent\/60:focus {
  border-color:      hsl(var(--accent) / 0.6);
}

.focus\:border-foreground\/50:focus {
  border-color:      hsl(var(--foreground) / 0.5);
}

.focus\:outline-none:focus {
  outline:      2px solid transparent;
  outline-offset:      2px;
}

.focus\:ring-0:focus {
  --tw-ring-offset-shadow:      var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:      var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:      var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:outline-none:focus-visible {
  outline:      2px solid transparent;
  outline-offset:      2px;
}

.focus-visible\:ring-1:focus-visible {
  --tw-ring-offset-shadow:      var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:      var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:      var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-accent:focus-visible {
  --tw-ring-color:      hsl(var(--accent));
}

.active\:scale-95:active {
  --tw-scale-x:      .95;
  --tw-scale-y:      .95;
  transform:      translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.disabled\:pointer-events-none:disabled {
  pointer-events:      none;
}

.disabled\:cursor-not-allowed:disabled {
  cursor:      not-allowed;
}

.disabled\:opacity-20:disabled {
  opacity:      0.2;
}

.disabled\:opacity-30:disabled {
  opacity:      0.3;
}

.disabled\:opacity-40:disabled {
  opacity:      0.4;
}

.disabled\:opacity-50:disabled {
  opacity:      0.5;
}

.group:hover .group-hover\:text-accent {
  color:      hsl(var(--accent));
}

.group:hover .group-hover\:text-accent\/60 {
  color:      hsl(var(--accent) / 0.6);
}

.group:hover .group-hover\:text-foreground {
  color:      hsl(var(--foreground));
}

.group:hover .group-hover\:text-muted-foreground {
  color:      hsl(var(--muted-foreground));
}

.group:hover .group-hover\:opacity-100 {
  opacity:      1;
}

@media (min-width: 640px) {

  .sm\:inline {
    display:      inline;
  }

  .sm\:flex {
    display:      flex;
  }
}

@media (min-width: 768px) {

  .md\:relative {
    position:      relative;
  }

  .md\:z-auto {
    z-index:      auto;
  }

  .md\:block {
    display:      block;
  }

  .md\:flex {
    display:      flex;
  }

  .md\:hidden {
    display:      none;
  }

  .md\:translate-x-0 {
    --tw-translate-x:      0px;
    transform:      translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:grid-cols-3 {
    grid-template-columns:      repeat(3, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction:      row;
  }

  .md\:items-center {
    align-items:      center;
  }
}

@media (min-width: 1024px) {

  .lg\:flex {
    display:      flex;
  }
}
