@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Nastaliq+Urdu:wght@400;700&family=Noto+Naskh+Arabic:wght@400;500;600;700&display=swap');/* this gets exported as style.css and can be used for the default theming */
/* these are the necessary styles for React/Svelte Flow, they get used by base.css and style.css */
.react-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;
}
.react-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: #555;
  --xy-background-pattern-lines-color-default: #333;
  --xy-background-pattern-cross-color-default: #333;
  --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;
}
.react-flow__background {
  background-color: var(--xy-background-color-props, var(--xy-background-color, var(--xy-background-color-default)));
  pointer-events: none;
  z-index: -1;
}
.react-flow__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.react-flow__pane {
  z-index: 1;
  touch-action: none;
}
.react-flow__pane.draggable {
    cursor: grab;
  }
.react-flow__pane.dragging {
    cursor: grabbing;
  }
.react-flow__pane.selection {
    cursor: pointer;
  }
.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__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;
}
.react-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;
}
.react-flow .react-flow__edges {
  position: absolute;
}
.react-flow .react-flow__edges svg {
    overflow: visible;
    position: absolute;
    pointer-events: none;
  }
.react-flow__edge {
  pointer-events: visibleStroke;
}
.react-flow__edge.selectable {
    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.selectable:focus .react-flow__edge-path,
  .react-flow__edge.selectable:focus-visible .react-flow__edge-path {
    stroke: var(--xy-edge-stroke-selected, var(--xy-edge-stroke-selected-default));
  }
.react-flow__edge-textwrapper {
    pointer-events: all;
  }
.react-flow__edge .react-flow__edge-text {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
/* Arrowhead marker styles - use CSS custom properties as default */
.react-flow__arrowhead polyline {
  stroke: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
}
.react-flow__arrowhead polyline.arrowclosed {
  fill: var(--xy-edge-stroke, var(--xy-edge-stroke-default));
}
.react-flow__connection {
  pointer-events: none;
}
.react-flow__connection .animated {
    stroke-dasharray: 5;
    animation: dashdraw 0.5s linear infinite;
  }
svg.react-flow__connectionline {
  z-index: 1001;
  overflow: visible;
  position: absolute;
}
.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: default;
}
.react-flow__node.selectable {
    cursor: pointer;
  }
.react-flow__node.draggable {
    cursor: grab;
    pointer-events: all;
  }
.react-flow__node.draggable.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-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%;
}
.react-flow__handle.connectingfrom {
    pointer-events: all;
  }
.react-flow__handle.connectionindicator {
    pointer-events: all;
    cursor: crosshair;
  }
.react-flow__handle-bottom {
    top: auto;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
  }
.react-flow__handle-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
.react-flow__handle-left {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
  }
.react-flow__handle-right {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
  }
.react-flow__edgeupdater {
  cursor: move;
  pointer-events: all;
}
.react-flow__pane.selection .react-flow__panel {
  pointer-events: none;
}
.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.top.center, .react-flow__panel.bottom.center {
      left: 50%;
      transform: translateX(-15px) translateX(-50%);
    }
.react-flow__panel.left {
    left: 0;
  }
.react-flow__panel.right {
    right: 0;
  }
.react-flow__panel.left.center, .react-flow__panel.right.center {
      top: 50%;
      transform: translateY(-15px) translateY(-50%);
    }
.react-flow__attribution {
  font-size: 10px;
  background: var(--xy-attribution-background-color, var(--xy-attribution-background-color-default));
  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;
  left: 0;
  top: 0;
}
.react-flow__viewport-portal {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.react-flow__minimap {
  background: var(
    --xy-minimap-background-color-props,
    var(--xy-minimap-background-color, var(--xy-minimap-background-color-default))
  );
}
.react-flow__minimap-svg {
    display: block;
  }
.react-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))
    );
  }
.react-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))
    );
  }
.react-flow__background-pattern.dots {
    fill: var(
      --xy-background-pattern-color-props,
      var(--xy-background-pattern-color, var(--xy-background-pattern-dots-color-default))
    );
  }
.react-flow__background-pattern.lines {
    stroke: var(
      --xy-background-pattern-color-props,
      var(--xy-background-pattern-color, var(--xy-background-pattern-lines-color-default))
    );
  }
.react-flow__background-pattern.cross {
    stroke: var(
      --xy-background-pattern-color-props,
      var(--xy-background-pattern-color, var(--xy-background-pattern-cross-color-default))
    );
  }
.react-flow__controls {
  display: flex;
  flex-direction: column;
  box-shadow: var(--xy-controls-box-shadow, var(--xy-controls-box-shadow-default));
}
.react-flow__controls.horizontal {
    flex-direction: row;
  }
.react-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;
  }
.react-flow__controls-button svg {
      width: 100%;
      max-width: 12px;
      max-height: 12px;
      fill: currentColor;
    }
.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-input,
.react-flow__node-default,
.react-flow__node-output,
.react-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));
}
.react-flow__node-input.selectable:hover, .react-flow__node-default.selectable:hover, .react-flow__node-output.selectable:hover, .react-flow__node-group.selectable:hover {
      box-shadow: var(--xy-node-boxshadow-hover, var(--xy-node-boxshadow-hover-default));
    }
.react-flow__node-input.selectable.selected,
    .react-flow__node-input.selectable:focus,
    .react-flow__node-input.selectable:focus-visible,
    .react-flow__node-default.selectable.selected,
    .react-flow__node-default.selectable:focus,
    .react-flow__node-default.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: var(--xy-node-boxshadow-selected, var(--xy-node-boxshadow-selected-default));
    }
.react-flow__node-group {
  background-color: var(--xy-node-group-background-color, var(--xy-node-group-background-color-default));
}
.react-flow__nodesselection-rect,
.react-flow__selection {
  background: var(--xy-selection-background-color, var(--xy-selection-background-color-default));
  border: var(--xy-selection-border, var(--xy-selection-border-default));
}
.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-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))
      );
    }
.react-flow__controls-button:disabled {
      pointer-events: none;
    }
.react-flow__controls-button:disabled svg {
        fill-opacity: 0.4;
      }
.react-flow__controls-button:last-child {
    border-bottom: none;
  }
.react-flow__controls.horizontal .react-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))
      );
  }
.react-flow__controls.horizontal .react-flow__controls-button:last-child {
    border-right: none;
  }
.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: 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%;
}
.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: var(--xy-resize-background-color, var(--xy-resize-background-color-default));
  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%;
}
.react-flow__edge-textbg {
  fill: var(--xy-edge-label-background-color, var(--xy-edge-label-background-color-default));
}
.react-flow__edge-text {
  fill: var(--xy-edge-label-color, var(--xy-edge-label-color-default));
}

:root {
  /* Primary */
  --color-primary-50: 240 253 244;
  --color-primary-100: 220 252 231;
  --color-primary-500: 34 197 94;
  --color-primary-600: 22 163 74;
  --color-primary-900: 20 83 45;

  /* Secondary */
  --color-secondary-50: 248 250 252;
  --color-secondary-100: 241 245 249;
  --color-secondary-300: 203 213 225;
  --color-secondary-500: 100 116 139;
  --color-secondary-600: 71 85 105;
  --color-secondary-900: 15 23 42;

  /* Accent, Success, Warning, Error */
  --color-accent: 59 130 246;
  --color-accent-hover: 37 99 235;
  --color-success: 16 185 129;
  --color-success-hover: 5 150 105;
  --color-warning: 245 158 11;
  --color-warning-hover: 217 119 6;
  --color-error: 239 68 68;
  --color-error-hover: 220 38 38;

  /* Base Application Colors */
  --color-background: 255 255 255;
  --color-foreground: 15 23 42;

  /* Shadows */
  --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  --shadow-floating: 0 10px 40px -10px rgba(0, 0, 0, 0.1);

  /* Radius */
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Animations */
  --animate-fade: 0.3s;
  --animate-slide: 0.4s;
}.dark {
  /* Base Application Colors */
  --color-background: 15 23 42;
  --color-foreground: 248 250 252;
  
  /* Reverse Secondary / Slate shades slightly for dark mode contrast */
  --color-secondary-50: 15 23 42;
  --color-secondary-100: 30 41 59;
  --color-secondary-300: 71 85 105;
  --color-secondary-500: 148 163 184;
  --color-secondary-600: 203 213 225;
  --color-secondary-900: 248 250 252;

  /* Shadows in Dark Mode */
  --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.3);
  --shadow-floating: 0 10px 40px -10px rgba(0, 0, 0, 0.4);
}/* Fonts for Inter, Noto Nastaliq Urdu, Noto Naskh Arabic */body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}.font-urdu {
  font-family: 'Noto Nastaliq Urdu', serif;
}.font-arabic {
  font-family: 'Noto Naskh Arabic', serif;
}/* Base RTL/LTR Helpers */.dir-rtl {
  direction: rtl;
}.dir-ltr {
  direction: ltr;
}*, ::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: Inter, sans-serif; /* 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;
}/* Selection Styling */::-moz-selection {
    background-color: rgb(var(--color-primary-500) / 0.3);
    color: inherit;
  }::selection {
    background-color: rgb(var(--color-primary-500) / 0.3);
    color: inherit;
  }/* Custom Scrollbar */::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }::-webkit-scrollbar-track {
    background: transparent;
  }::-webkit-scrollbar-thumb {
    background: rgb(var(--color-secondary-300));
    border-radius: 4px;
  }::-webkit-scrollbar-thumb:hover {
    background: rgb(var(--color-secondary-500));
  }.dark ::-webkit-scrollbar-thumb {
    background: rgb(var(--color-secondary-600));
  }.dark ::-webkit-scrollbar-thumb:hover {
    background: rgb(var(--color-secondary-500));
  }.\!container{
  width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}@media (min-width: 1400px){.\!container{
    max-width: 1400px !important;
  }.container{
    max-width: 1400px;
  }
}.pointer-events-none{
  pointer-events: none;
}.pointer-events-auto{
  pointer-events: auto;
}.visible{
  visibility: visible;
}.invisible{
  visibility: hidden;
}.static{
  position: static;
}.fixed{
  position: fixed;
}.absolute{
  position: absolute;
}.relative{
  position: relative;
}.inset-0{
  inset: 0px;
}.inset-x-0{
  left: 0px;
  right: 0px;
}.-bottom-1\.5{
  bottom: -0.375rem;
}.-bottom-8{
  bottom: -2rem;
}.-left-1{
  left: -0.25rem;
}.-left-1\.5{
  left: -0.375rem;
}.-right-1{
  right: -0.25rem;
}.-right-1\.5{
  right: -0.375rem;
}.-top-1{
  top: -0.25rem;
}.-top-1\.5{
  top: -0.375rem;
}.-top-10{
  top: -2.5rem;
}.-top-4{
  top: -1rem;
}.-top-6{
  top: -1.5rem;
}.bottom-0{
  bottom: 0px;
}.bottom-1{
  bottom: 0.25rem;
}.bottom-3{
  bottom: 0.75rem;
}.left-0{
  left: 0px;
}.left-1\/2{
  left: 50%;
}.left-2{
  left: 0.5rem;
}.left-3{
  left: 0.75rem;
}.left-4{
  left: 1rem;
}.right-0{
  right: 0px;
}.right-2{
  right: 0.5rem;
}.right-2\.5{
  right: 0.625rem;
}.right-3{
  right: 0.75rem;
}.right-4{
  right: 1rem;
}.top-0{
  top: 0px;
}.top-1{
  top: 0.25rem;
}.top-1\/2{
  top: 50%;
}.top-2\.5{
  top: 0.625rem;
}.top-3{
  top: 0.75rem;
}.top-4{
  top: 1rem;
}.z-10{
  z-index: 10;
}.z-50{
  z-index: 50;
}.z-\[1000\]{
  z-index: 1000;
}.z-\[100\]{
  z-index: 100;
}.z-\[200\]{
  z-index: 200;
}.z-\[9999\]{
  z-index: 9999;
}.col-span-4{
  grid-column: span 4 / span 4;
}.mx-0\.5{
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}.mx-8{
  margin-left: 2rem;
  margin-right: 2rem;
}.mx-auto{
  margin-left: auto;
  margin-right: auto;
}.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}.-ml-2{
  margin-left: -0.5rem;
}.-mt-4{
  margin-top: -1rem;
}.mb-0\.5{
  margin-bottom: 0.125rem;
}.mb-1{
  margin-bottom: 0.25rem;
}.mb-1\.5{
  margin-bottom: 0.375rem;
}.mb-10{
  margin-bottom: 2.5rem;
}.mb-2{
  margin-bottom: 0.5rem;
}.mb-3{
  margin-bottom: 0.75rem;
}.mb-4{
  margin-bottom: 1rem;
}.mb-6{
  margin-bottom: 1.5rem;
}.mb-8{
  margin-bottom: 2rem;
}.ml-2{
  margin-left: 0.5rem;
}.mr-2{
  margin-right: 0.5rem;
}.mt-0\.5{
  margin-top: 0.125rem;
}.mt-1{
  margin-top: 0.25rem;
}.mt-2{
  margin-top: 0.5rem;
}.mt-4{
  margin-top: 1rem;
}.mt-auto{
  margin-top: auto;
}.block{
  display: block;
}.inline-block{
  display: inline-block;
}.inline{
  display: inline;
}.flex{
  display: 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-10{
  height: 2.5rem;
}.h-12{
  height: 3rem;
}.h-14{
  height: 3.5rem;
}.h-16{
  height: 4rem;
}.h-2{
  height: 0.5rem;
}.h-2\.5{
  height: 0.625rem;
}.h-24{
  height: 6rem;
}.h-3{
  height: 0.75rem;
}.h-32{
  height: 8rem;
}.h-36{
  height: 9rem;
}.h-4{
  height: 1rem;
}.h-40{
  height: 10rem;
}.h-5{
  height: 1.25rem;
}.h-6{
  height: 1.5rem;
}.h-7{
  height: 1.75rem;
}.h-8{
  height: 2rem;
}.h-\[30px\]{
  height: 30px;
}.h-\[70vh\]{
  height: 70vh;
}.h-\[80vh\]{
  height: 80vh;
}.h-\[82vh\]{
  height: 82vh;
}.h-full{
  height: 100%;
}.h-px{
  height: 1px;
}.h-screen{
  height: 100vh;
}.max-h-\[40vh\]{
  max-height: 40vh;
}.max-h-\[50vh\]{
  max-height: 50vh;
}.min-h-\[120px\]{
  min-height: 120px;
}.min-h-\[40px\]{
  min-height: 40px;
}.min-h-\[60px\]{
  min-height: 60px;
}.min-h-\[80px\]{
  min-height: 80px;
}.w-0\.5{
  width: 0.125rem;
}.w-1{
  width: 0.25rem;
}.w-10{
  width: 2.5rem;
}.w-12{
  width: 3rem;
}.w-16{
  width: 4rem;
}.w-2{
  width: 0.5rem;
}.w-3{
  width: 0.75rem;
}.w-32{
  width: 8rem;
}.w-4{
  width: 1rem;
}.w-48{
  width: 12rem;
}.w-5{
  width: 1.25rem;
}.w-56{
  width: 14rem;
}.w-6{
  width: 1.5rem;
}.w-64{
  width: 16rem;
}.w-7{
  width: 1.75rem;
}.w-72{
  width: 18rem;
}.w-8{
  width: 2rem;
}.w-80{
  width: 20rem;
}.w-\[280px\]{
  width: 280px;
}.w-\[46px\]{
  width: 46px;
}.w-full{
  width: 100%;
}.w-px{
  width: 1px;
}.w-screen{
  width: 100vw;
}.min-w-\[100px\]{
  min-width: 100px;
}.min-w-\[120px\]{
  min-width: 120px;
}.min-w-\[140px\]{
  min-width: 140px;
}.min-w-\[150px\]{
  min-width: 150px;
}.min-w-\[160px\]{
  min-width: 160px;
}.max-w-2xl{
  max-width: 42rem;
}.max-w-3xl{
  max-width: 48rem;
}.max-w-5xl{
  max-width: 64rem;
}.max-w-6xl{
  max-width: 72rem;
}.max-w-lg{
  max-width: 32rem;
}.max-w-md{
  max-width: 28rem;
}.max-w-sm{
  max-width: 24rem;
}.max-w-xl{
  max-width: 36rem;
}.max-w-xs{
  max-width: 20rem;
}.flex-1{
  flex: 1 1 0%;
}.flex-shrink{
  flex-shrink: 1;
}.flex-shrink-0{
  flex-shrink: 0;
}.shrink-0{
  flex-shrink: 0;
}.-translate-x-1\/2{
  --tw-translate-x: -50%;
  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-y-1\/2{
  --tw-translate-y: -50%;
  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));
}.rotate-45{
  --tw-rotate: 45deg;
  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));
}.rotate-90{
  --tw-rotate: 90deg;
  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));
}.scale-105{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  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));
}.scale-125{
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  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));
}.animate-\[progress_1s_linear_infinite\]{
  animation: progress 1s linear 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-col-resize{
  cursor: col-resize;
}.cursor-grab{
  cursor: grab;
}.cursor-nesw-resize{
  cursor: nesw-resize;
}.cursor-not-allowed{
  cursor: not-allowed;
}.cursor-nwse-resize{
  cursor: nwse-resize;
}.cursor-pointer{
  cursor: pointer;
}.cursor-text{
  cursor: text;
}.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-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}.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;
}.justify-end{
  justify-content: flex-end;
}.justify-center{
  justify-content: center;
}.justify-between{
  justify-content: space-between;
}.gap-0\.5{
  gap: 0.125rem;
}.gap-1{
  gap: 0.25rem;
}.gap-1\.5{
  gap: 0.375rem;
}.gap-2{
  gap: 0.5rem;
}.gap-2\.5{
  gap: 0.625rem;
}.gap-3{
  gap: 0.75rem;
}.gap-4{
  gap: 1rem;
}.gap-6{
  gap: 1.5rem;
}.gap-8{
  gap: 2rem;
}.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.375rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-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-3\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.875rem * 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-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));
}.self-start{
  align-self: flex-start;
}.overflow-auto{
  overflow: auto;
}.overflow-hidden{
  overflow: hidden;
}.overflow-visible{
  overflow: visible;
}.overflow-y-auto{
  overflow-y: auto;
}.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}.whitespace-pre-wrap{
  white-space: pre-wrap;
}.break-words{
  overflow-wrap: break-word;
}.rounded{
  border-radius: 0.25rem;
}.rounded-2xl{
  border-radius: var(--radius-2xl);
}.rounded-full{
  border-radius: 9999px;
}.rounded-lg{
  border-radius: 0.5rem;
}.rounded-md{
  border-radius: 0.375rem;
}.rounded-sm{
  border-radius: 0.125rem;
}.rounded-xl{
  border-radius: var(--radius-xl);
}.rounded-t-xl{
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}.border{
  border-width: 1px;
}.border-2{
  border-width: 2px;
}.border-b{
  border-bottom-width: 1px;
}.border-b-2{
  border-bottom-width: 2px;
}.border-e{
  border-inline-end-width: 1px;
}.border-l{
  border-left-width: 1px;
}.border-r{
  border-right-width: 1px;
}.border-r-4{
  border-right-width: 4px;
}.border-s{
  border-inline-start-width: 1px;
}.border-t{
  border-top-width: 1px;
}.border-dashed{
  border-style: dashed;
}.border-none{
  border-style: none;
}.border-blue-300{
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}.border-blue-400{
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}.border-blue-500{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}.border-blue-600{
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}.border-emerald-400{
  --tw-border-opacity: 1;
  border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
}.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}.border-gray-200\/60{
  border-color: rgb(229 231 235 / 0.6);
}.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}.border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}.border-gray-700{
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}.border-green-300{
  --tw-border-opacity: 1;
  border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}.border-indigo-100{
  --tw-border-opacity: 1;
  border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
}.border-indigo-200{
  --tw-border-opacity: 1;
  border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
}.border-indigo-300{
  --tw-border-opacity: 1;
  border-color: rgb(165 180 252 / var(--tw-border-opacity, 1));
}.border-indigo-400{
  --tw-border-opacity: 1;
  border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
}.border-indigo-500{
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
}.border-indigo-600{
  --tw-border-opacity: 1;
  border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
}.border-neutral-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}.border-neutral-300{
  --tw-border-opacity: 1;
  border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}.border-orange-400{
  --tw-border-opacity: 1;
  border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
}.border-primary-500{
  --tw-border-opacity: 1;
  border-color: rgb(var(--color-primary-500) / var(--tw-border-opacity, 1));
}.border-purple-400{
  --tw-border-opacity: 1;
  border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}.border-purple-600{
  --tw-border-opacity: 1;
  border-color: rgb(147 51 234 / var(--tw-border-opacity, 1));
}.border-red-100{
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}.border-red-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}.border-red-300{
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}.border-slate-100{
  --tw-border-opacity: 1;
  border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}.border-slate-200{
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}.border-transparent{
  border-color: transparent;
}.border-yellow-300{
  --tw-border-opacity: 1;
  border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
}.border-zinc-600{
  --tw-border-opacity: 1;
  border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
}.border-zinc-700{
  --tw-border-opacity: 1;
  border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
}.border-zinc-800{
  --tw-border-opacity: 1;
  border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
}.bg-\[\#F8F9FA\]{
  --tw-bg-opacity: 1;
  background-color: rgb(248 249 250 / var(--tw-bg-opacity, 1));
}.bg-\[\#f3f4f6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}.bg-\[\#f8fafc\]{
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}.bg-\[\#fafafa\]{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}.bg-accent{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-accent) / var(--tw-bg-opacity, 1));
}.bg-accent-hover{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-accent-hover) / var(--tw-bg-opacity, 1));
}.bg-accent-hover\/0{
  background-color: rgb(var(--color-accent-hover) / 0);
}.bg-accent-hover\/10{
  background-color: rgb(var(--color-accent-hover) / 0.1);
}.bg-accent-hover\/100{
  background-color: rgb(var(--color-accent-hover) / 1);
}.bg-accent-hover\/15{
  background-color: rgb(var(--color-accent-hover) / 0.15);
}.bg-accent-hover\/20{
  background-color: rgb(var(--color-accent-hover) / 0.2);
}.bg-accent-hover\/25{
  background-color: rgb(var(--color-accent-hover) / 0.25);
}.bg-accent-hover\/30{
  background-color: rgb(var(--color-accent-hover) / 0.3);
}.bg-accent-hover\/35{
  background-color: rgb(var(--color-accent-hover) / 0.35);
}.bg-accent-hover\/40{
  background-color: rgb(var(--color-accent-hover) / 0.4);
}.bg-accent-hover\/45{
  background-color: rgb(var(--color-accent-hover) / 0.45);
}.bg-accent-hover\/5{
  background-color: rgb(var(--color-accent-hover) / 0.05);
}.bg-accent-hover\/50{
  background-color: rgb(var(--color-accent-hover) / 0.5);
}.bg-accent-hover\/55{
  background-color: rgb(var(--color-accent-hover) / 0.55);
}.bg-accent-hover\/60{
  background-color: rgb(var(--color-accent-hover) / 0.6);
}.bg-accent-hover\/65{
  background-color: rgb(var(--color-accent-hover) / 0.65);
}.bg-accent-hover\/70{
  background-color: rgb(var(--color-accent-hover) / 0.7);
}.bg-accent-hover\/75{
  background-color: rgb(var(--color-accent-hover) / 0.75);
}.bg-accent-hover\/80{
  background-color: rgb(var(--color-accent-hover) / 0.8);
}.bg-accent-hover\/85{
  background-color: rgb(var(--color-accent-hover) / 0.85);
}.bg-accent-hover\/90{
  background-color: rgb(var(--color-accent-hover) / 0.9);
}.bg-accent-hover\/95{
  background-color: rgb(var(--color-accent-hover) / 0.95);
}.bg-accent\/0{
  background-color: rgb(var(--color-accent) / 0);
}.bg-accent\/10{
  background-color: rgb(var(--color-accent) / 0.1);
}.bg-accent\/100{
  background-color: rgb(var(--color-accent) / 1);
}.bg-accent\/15{
  background-color: rgb(var(--color-accent) / 0.15);
}.bg-accent\/20{
  background-color: rgb(var(--color-accent) / 0.2);
}.bg-accent\/25{
  background-color: rgb(var(--color-accent) / 0.25);
}.bg-accent\/30{
  background-color: rgb(var(--color-accent) / 0.3);
}.bg-accent\/35{
  background-color: rgb(var(--color-accent) / 0.35);
}.bg-accent\/40{
  background-color: rgb(var(--color-accent) / 0.4);
}.bg-accent\/45{
  background-color: rgb(var(--color-accent) / 0.45);
}.bg-accent\/5{
  background-color: rgb(var(--color-accent) / 0.05);
}.bg-accent\/50{
  background-color: rgb(var(--color-accent) / 0.5);
}.bg-accent\/55{
  background-color: rgb(var(--color-accent) / 0.55);
}.bg-accent\/60{
  background-color: rgb(var(--color-accent) / 0.6);
}.bg-accent\/65{
  background-color: rgb(var(--color-accent) / 0.65);
}.bg-accent\/70{
  background-color: rgb(var(--color-accent) / 0.7);
}.bg-accent\/75{
  background-color: rgb(var(--color-accent) / 0.75);
}.bg-accent\/80{
  background-color: rgb(var(--color-accent) / 0.8);
}.bg-accent\/85{
  background-color: rgb(var(--color-accent) / 0.85);
}.bg-accent\/90{
  background-color: rgb(var(--color-accent) / 0.9);
}.bg-accent\/95{
  background-color: rgb(var(--color-accent) / 0.95);
}.bg-background{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-background) / var(--tw-bg-opacity, 1));
}.bg-black\/50{
  background-color: rgb(0 0 0 / 0.5);
}.bg-black\/60{
  background-color: rgb(0 0 0 / 0.6);
}.bg-blue-200{
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
}.bg-blue-300{
  --tw-bg-opacity: 1;
  background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
}.bg-blue-400{
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}.bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}.bg-blue-500{
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}.bg-current{
  background-color: currentColor;
}.bg-emerald-600{
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
}.bg-error{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-error) / var(--tw-bg-opacity, 1));
}.bg-error-hover{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-error-hover) / var(--tw-bg-opacity, 1));
}.bg-error-hover\/0{
  background-color: rgb(var(--color-error-hover) / 0);
}.bg-error-hover\/10{
  background-color: rgb(var(--color-error-hover) / 0.1);
}.bg-error-hover\/100{
  background-color: rgb(var(--color-error-hover) / 1);
}.bg-error-hover\/15{
  background-color: rgb(var(--color-error-hover) / 0.15);
}.bg-error-hover\/20{
  background-color: rgb(var(--color-error-hover) / 0.2);
}.bg-error-hover\/25{
  background-color: rgb(var(--color-error-hover) / 0.25);
}.bg-error-hover\/30{
  background-color: rgb(var(--color-error-hover) / 0.3);
}.bg-error-hover\/35{
  background-color: rgb(var(--color-error-hover) / 0.35);
}.bg-error-hover\/40{
  background-color: rgb(var(--color-error-hover) / 0.4);
}.bg-error-hover\/45{
  background-color: rgb(var(--color-error-hover) / 0.45);
}.bg-error-hover\/5{
  background-color: rgb(var(--color-error-hover) / 0.05);
}.bg-error-hover\/50{
  background-color: rgb(var(--color-error-hover) / 0.5);
}.bg-error-hover\/55{
  background-color: rgb(var(--color-error-hover) / 0.55);
}.bg-error-hover\/60{
  background-color: rgb(var(--color-error-hover) / 0.6);
}.bg-error-hover\/65{
  background-color: rgb(var(--color-error-hover) / 0.65);
}.bg-error-hover\/70{
  background-color: rgb(var(--color-error-hover) / 0.7);
}.bg-error-hover\/75{
  background-color: rgb(var(--color-error-hover) / 0.75);
}.bg-error-hover\/80{
  background-color: rgb(var(--color-error-hover) / 0.8);
}.bg-error-hover\/85{
  background-color: rgb(var(--color-error-hover) / 0.85);
}.bg-error-hover\/90{
  background-color: rgb(var(--color-error-hover) / 0.9);
}.bg-error-hover\/95{
  background-color: rgb(var(--color-error-hover) / 0.95);
}.bg-error\/0{
  background-color: rgb(var(--color-error) / 0);
}.bg-error\/10{
  background-color: rgb(var(--color-error) / 0.1);
}.bg-error\/100{
  background-color: rgb(var(--color-error) / 1);
}.bg-error\/15{
  background-color: rgb(var(--color-error) / 0.15);
}.bg-error\/20{
  background-color: rgb(var(--color-error) / 0.2);
}.bg-error\/25{
  background-color: rgb(var(--color-error) / 0.25);
}.bg-error\/30{
  background-color: rgb(var(--color-error) / 0.3);
}.bg-error\/35{
  background-color: rgb(var(--color-error) / 0.35);
}.bg-error\/40{
  background-color: rgb(var(--color-error) / 0.4);
}.bg-error\/45{
  background-color: rgb(var(--color-error) / 0.45);
}.bg-error\/5{
  background-color: rgb(var(--color-error) / 0.05);
}.bg-error\/50{
  background-color: rgb(var(--color-error) / 0.5);
}.bg-error\/55{
  background-color: rgb(var(--color-error) / 0.55);
}.bg-error\/60{
  background-color: rgb(var(--color-error) / 0.6);
}.bg-error\/65{
  background-color: rgb(var(--color-error) / 0.65);
}.bg-error\/70{
  background-color: rgb(var(--color-error) / 0.7);
}.bg-error\/75{
  background-color: rgb(var(--color-error) / 0.75);
}.bg-error\/80{
  background-color: rgb(var(--color-error) / 0.8);
}.bg-error\/85{
  background-color: rgb(var(--color-error) / 0.85);
}.bg-error\/90{
  background-color: rgb(var(--color-error) / 0.9);
}.bg-error\/95{
  background-color: rgb(var(--color-error) / 0.95);
}.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}.bg-gray-400{
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}.bg-gray-500{
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}.bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}.bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}.bg-green-200{
  --tw-bg-opacity: 1;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
}.bg-green-400{
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}.bg-indigo-100{
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}.bg-indigo-200{
  --tw-bg-opacity: 1;
  background-color: rgb(199 210 254 / var(--tw-bg-opacity, 1));
}.bg-indigo-300{
  --tw-bg-opacity: 1;
  background-color: rgb(165 180 252 / var(--tw-bg-opacity, 1));
}.bg-indigo-300\/60{
  background-color: rgb(165 180 252 / 0.6);
}.bg-indigo-400{
  --tw-bg-opacity: 1;
  background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
}.bg-indigo-50{
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}.bg-indigo-50\/50{
  background-color: rgb(238 242 255 / 0.5);
}.bg-indigo-600{
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
}.bg-indigo-700{
  --tw-bg-opacity: 1;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
}.bg-neutral-100{
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}.bg-neutral-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}.bg-neutral-400{
  --tw-bg-opacity: 1;
  background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
}.bg-orange-600{
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}.bg-primary-100{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-primary-100) / var(--tw-bg-opacity, 1));
}.bg-primary-100\/0{
  background-color: rgb(var(--color-primary-100) / 0);
}.bg-primary-100\/10{
  background-color: rgb(var(--color-primary-100) / 0.1);
}.bg-primary-100\/100{
  background-color: rgb(var(--color-primary-100) / 1);
}.bg-primary-100\/15{
  background-color: rgb(var(--color-primary-100) / 0.15);
}.bg-primary-100\/20{
  background-color: rgb(var(--color-primary-100) / 0.2);
}.bg-primary-100\/25{
  background-color: rgb(var(--color-primary-100) / 0.25);
}.bg-primary-100\/30{
  background-color: rgb(var(--color-primary-100) / 0.3);
}.bg-primary-100\/35{
  background-color: rgb(var(--color-primary-100) / 0.35);
}.bg-primary-100\/40{
  background-color: rgb(var(--color-primary-100) / 0.4);
}.bg-primary-100\/45{
  background-color: rgb(var(--color-primary-100) / 0.45);
}.bg-primary-100\/5{
  background-color: rgb(var(--color-primary-100) / 0.05);
}.bg-primary-100\/50{
  background-color: rgb(var(--color-primary-100) / 0.5);
}.bg-primary-100\/55{
  background-color: rgb(var(--color-primary-100) / 0.55);
}.bg-primary-100\/60{
  background-color: rgb(var(--color-primary-100) / 0.6);
}.bg-primary-100\/65{
  background-color: rgb(var(--color-primary-100) / 0.65);
}.bg-primary-100\/70{
  background-color: rgb(var(--color-primary-100) / 0.7);
}.bg-primary-100\/75{
  background-color: rgb(var(--color-primary-100) / 0.75);
}.bg-primary-100\/80{
  background-color: rgb(var(--color-primary-100) / 0.8);
}.bg-primary-100\/85{
  background-color: rgb(var(--color-primary-100) / 0.85);
}.bg-primary-100\/90{
  background-color: rgb(var(--color-primary-100) / 0.9);
}.bg-primary-100\/95{
  background-color: rgb(var(--color-primary-100) / 0.95);
}.bg-primary-50{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-primary-50) / var(--tw-bg-opacity, 1));
}.bg-primary-50\/0{
  background-color: rgb(var(--color-primary-50) / 0);
}.bg-primary-50\/10{
  background-color: rgb(var(--color-primary-50) / 0.1);
}.bg-primary-50\/100{
  background-color: rgb(var(--color-primary-50) / 1);
}.bg-primary-50\/15{
  background-color: rgb(var(--color-primary-50) / 0.15);
}.bg-primary-50\/20{
  background-color: rgb(var(--color-primary-50) / 0.2);
}.bg-primary-50\/25{
  background-color: rgb(var(--color-primary-50) / 0.25);
}.bg-primary-50\/30{
  background-color: rgb(var(--color-primary-50) / 0.3);
}.bg-primary-50\/35{
  background-color: rgb(var(--color-primary-50) / 0.35);
}.bg-primary-50\/40{
  background-color: rgb(var(--color-primary-50) / 0.4);
}.bg-primary-50\/45{
  background-color: rgb(var(--color-primary-50) / 0.45);
}.bg-primary-50\/5{
  background-color: rgb(var(--color-primary-50) / 0.05);
}.bg-primary-50\/50{
  background-color: rgb(var(--color-primary-50) / 0.5);
}.bg-primary-50\/55{
  background-color: rgb(var(--color-primary-50) / 0.55);
}.bg-primary-50\/60{
  background-color: rgb(var(--color-primary-50) / 0.6);
}.bg-primary-50\/65{
  background-color: rgb(var(--color-primary-50) / 0.65);
}.bg-primary-50\/70{
  background-color: rgb(var(--color-primary-50) / 0.7);
}.bg-primary-50\/75{
  background-color: rgb(var(--color-primary-50) / 0.75);
}.bg-primary-50\/80{
  background-color: rgb(var(--color-primary-50) / 0.8);
}.bg-primary-50\/85{
  background-color: rgb(var(--color-primary-50) / 0.85);
}.bg-primary-50\/90{
  background-color: rgb(var(--color-primary-50) / 0.9);
}.bg-primary-50\/95{
  background-color: rgb(var(--color-primary-50) / 0.95);
}.bg-primary-500{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity, 1));
}.bg-primary-500\/0{
  background-color: rgb(var(--color-primary-500) / 0);
}.bg-primary-500\/10{
  background-color: rgb(var(--color-primary-500) / 0.1);
}.bg-primary-500\/100{
  background-color: rgb(var(--color-primary-500) / 1);
}.bg-primary-500\/15{
  background-color: rgb(var(--color-primary-500) / 0.15);
}.bg-primary-500\/20{
  background-color: rgb(var(--color-primary-500) / 0.2);
}.bg-primary-500\/25{
  background-color: rgb(var(--color-primary-500) / 0.25);
}.bg-primary-500\/30{
  background-color: rgb(var(--color-primary-500) / 0.3);
}.bg-primary-500\/35{
  background-color: rgb(var(--color-primary-500) / 0.35);
}.bg-primary-500\/40{
  background-color: rgb(var(--color-primary-500) / 0.4);
}.bg-primary-500\/45{
  background-color: rgb(var(--color-primary-500) / 0.45);
}.bg-primary-500\/5{
  background-color: rgb(var(--color-primary-500) / 0.05);
}.bg-primary-500\/50{
  background-color: rgb(var(--color-primary-500) / 0.5);
}.bg-primary-500\/55{
  background-color: rgb(var(--color-primary-500) / 0.55);
}.bg-primary-500\/60{
  background-color: rgb(var(--color-primary-500) / 0.6);
}.bg-primary-500\/65{
  background-color: rgb(var(--color-primary-500) / 0.65);
}.bg-primary-500\/70{
  background-color: rgb(var(--color-primary-500) / 0.7);
}.bg-primary-500\/75{
  background-color: rgb(var(--color-primary-500) / 0.75);
}.bg-primary-500\/80{
  background-color: rgb(var(--color-primary-500) / 0.8);
}.bg-primary-500\/85{
  background-color: rgb(var(--color-primary-500) / 0.85);
}.bg-primary-500\/90{
  background-color: rgb(var(--color-primary-500) / 0.9);
}.bg-primary-500\/95{
  background-color: rgb(var(--color-primary-500) / 0.95);
}.bg-primary-600{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-primary-600) / var(--tw-bg-opacity, 1));
}.bg-primary-600\/0{
  background-color: rgb(var(--color-primary-600) / 0);
}.bg-primary-600\/10{
  background-color: rgb(var(--color-primary-600) / 0.1);
}.bg-primary-600\/100{
  background-color: rgb(var(--color-primary-600) / 1);
}.bg-primary-600\/15{
  background-color: rgb(var(--color-primary-600) / 0.15);
}.bg-primary-600\/20{
  background-color: rgb(var(--color-primary-600) / 0.2);
}.bg-primary-600\/25{
  background-color: rgb(var(--color-primary-600) / 0.25);
}.bg-primary-600\/30{
  background-color: rgb(var(--color-primary-600) / 0.3);
}.bg-primary-600\/35{
  background-color: rgb(var(--color-primary-600) / 0.35);
}.bg-primary-600\/40{
  background-color: rgb(var(--color-primary-600) / 0.4);
}.bg-primary-600\/45{
  background-color: rgb(var(--color-primary-600) / 0.45);
}.bg-primary-600\/5{
  background-color: rgb(var(--color-primary-600) / 0.05);
}.bg-primary-600\/50{
  background-color: rgb(var(--color-primary-600) / 0.5);
}.bg-primary-600\/55{
  background-color: rgb(var(--color-primary-600) / 0.55);
}.bg-primary-600\/60{
  background-color: rgb(var(--color-primary-600) / 0.6);
}.bg-primary-600\/65{
  background-color: rgb(var(--color-primary-600) / 0.65);
}.bg-primary-600\/70{
  background-color: rgb(var(--color-primary-600) / 0.7);
}.bg-primary-600\/75{
  background-color: rgb(var(--color-primary-600) / 0.75);
}.bg-primary-600\/80{
  background-color: rgb(var(--color-primary-600) / 0.8);
}.bg-primary-600\/85{
  background-color: rgb(var(--color-primary-600) / 0.85);
}.bg-primary-600\/90{
  background-color: rgb(var(--color-primary-600) / 0.9);
}.bg-primary-600\/95{
  background-color: rgb(var(--color-primary-600) / 0.95);
}.bg-primary-900{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-primary-900) / var(--tw-bg-opacity, 1));
}.bg-primary-900\/0{
  background-color: rgb(var(--color-primary-900) / 0);
}.bg-primary-900\/10{
  background-color: rgb(var(--color-primary-900) / 0.1);
}.bg-primary-900\/100{
  background-color: rgb(var(--color-primary-900) / 1);
}.bg-primary-900\/15{
  background-color: rgb(var(--color-primary-900) / 0.15);
}.bg-primary-900\/20{
  background-color: rgb(var(--color-primary-900) / 0.2);
}.bg-primary-900\/25{
  background-color: rgb(var(--color-primary-900) / 0.25);
}.bg-primary-900\/30{
  background-color: rgb(var(--color-primary-900) / 0.3);
}.bg-primary-900\/35{
  background-color: rgb(var(--color-primary-900) / 0.35);
}.bg-primary-900\/40{
  background-color: rgb(var(--color-primary-900) / 0.4);
}.bg-primary-900\/45{
  background-color: rgb(var(--color-primary-900) / 0.45);
}.bg-primary-900\/5{
  background-color: rgb(var(--color-primary-900) / 0.05);
}.bg-primary-900\/50{
  background-color: rgb(var(--color-primary-900) / 0.5);
}.bg-primary-900\/55{
  background-color: rgb(var(--color-primary-900) / 0.55);
}.bg-primary-900\/60{
  background-color: rgb(var(--color-primary-900) / 0.6);
}.bg-primary-900\/65{
  background-color: rgb(var(--color-primary-900) / 0.65);
}.bg-primary-900\/70{
  background-color: rgb(var(--color-primary-900) / 0.7);
}.bg-primary-900\/75{
  background-color: rgb(var(--color-primary-900) / 0.75);
}.bg-primary-900\/80{
  background-color: rgb(var(--color-primary-900) / 0.8);
}.bg-primary-900\/85{
  background-color: rgb(var(--color-primary-900) / 0.85);
}.bg-primary-900\/90{
  background-color: rgb(var(--color-primary-900) / 0.9);
}.bg-primary-900\/95{
  background-color: rgb(var(--color-primary-900) / 0.95);
}.bg-purple-300{
  --tw-bg-opacity: 1;
  background-color: rgb(216 180 254 / var(--tw-bg-opacity, 1));
}.bg-purple-400{
  --tw-bg-opacity: 1;
  background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
}.bg-purple-50\/50{
  background-color: rgb(250 245 255 / 0.5);
}.bg-purple-600{
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
}.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}.bg-red-200{
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}.bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}.bg-secondary-100{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-secondary-100) / var(--tw-bg-opacity, 1));
}.bg-secondary-100\/0{
  background-color: rgb(var(--color-secondary-100) / 0);
}.bg-secondary-100\/10{
  background-color: rgb(var(--color-secondary-100) / 0.1);
}.bg-secondary-100\/100{
  background-color: rgb(var(--color-secondary-100) / 1);
}.bg-secondary-100\/15{
  background-color: rgb(var(--color-secondary-100) / 0.15);
}.bg-secondary-100\/20{
  background-color: rgb(var(--color-secondary-100) / 0.2);
}.bg-secondary-100\/25{
  background-color: rgb(var(--color-secondary-100) / 0.25);
}.bg-secondary-100\/30{
  background-color: rgb(var(--color-secondary-100) / 0.3);
}.bg-secondary-100\/35{
  background-color: rgb(var(--color-secondary-100) / 0.35);
}.bg-secondary-100\/40{
  background-color: rgb(var(--color-secondary-100) / 0.4);
}.bg-secondary-100\/45{
  background-color: rgb(var(--color-secondary-100) / 0.45);
}.bg-secondary-100\/5{
  background-color: rgb(var(--color-secondary-100) / 0.05);
}.bg-secondary-100\/50{
  background-color: rgb(var(--color-secondary-100) / 0.5);
}.bg-secondary-100\/55{
  background-color: rgb(var(--color-secondary-100) / 0.55);
}.bg-secondary-100\/60{
  background-color: rgb(var(--color-secondary-100) / 0.6);
}.bg-secondary-100\/65{
  background-color: rgb(var(--color-secondary-100) / 0.65);
}.bg-secondary-100\/70{
  background-color: rgb(var(--color-secondary-100) / 0.7);
}.bg-secondary-100\/75{
  background-color: rgb(var(--color-secondary-100) / 0.75);
}.bg-secondary-100\/80{
  background-color: rgb(var(--color-secondary-100) / 0.8);
}.bg-secondary-100\/85{
  background-color: rgb(var(--color-secondary-100) / 0.85);
}.bg-secondary-100\/90{
  background-color: rgb(var(--color-secondary-100) / 0.9);
}.bg-secondary-100\/95{
  background-color: rgb(var(--color-secondary-100) / 0.95);
}.bg-secondary-50{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-secondary-50) / var(--tw-bg-opacity, 1));
}.bg-secondary-50\/0{
  background-color: rgb(var(--color-secondary-50) / 0);
}.bg-secondary-50\/10{
  background-color: rgb(var(--color-secondary-50) / 0.1);
}.bg-secondary-50\/100{
  background-color: rgb(var(--color-secondary-50) / 1);
}.bg-secondary-50\/15{
  background-color: rgb(var(--color-secondary-50) / 0.15);
}.bg-secondary-50\/20{
  background-color: rgb(var(--color-secondary-50) / 0.2);
}.bg-secondary-50\/25{
  background-color: rgb(var(--color-secondary-50) / 0.25);
}.bg-secondary-50\/30{
  background-color: rgb(var(--color-secondary-50) / 0.3);
}.bg-secondary-50\/35{
  background-color: rgb(var(--color-secondary-50) / 0.35);
}.bg-secondary-50\/40{
  background-color: rgb(var(--color-secondary-50) / 0.4);
}.bg-secondary-50\/45{
  background-color: rgb(var(--color-secondary-50) / 0.45);
}.bg-secondary-50\/5{
  background-color: rgb(var(--color-secondary-50) / 0.05);
}.bg-secondary-50\/50{
  background-color: rgb(var(--color-secondary-50) / 0.5);
}.bg-secondary-50\/55{
  background-color: rgb(var(--color-secondary-50) / 0.55);
}.bg-secondary-50\/60{
  background-color: rgb(var(--color-secondary-50) / 0.6);
}.bg-secondary-50\/65{
  background-color: rgb(var(--color-secondary-50) / 0.65);
}.bg-secondary-50\/70{
  background-color: rgb(var(--color-secondary-50) / 0.7);
}.bg-secondary-50\/75{
  background-color: rgb(var(--color-secondary-50) / 0.75);
}.bg-secondary-50\/80{
  background-color: rgb(var(--color-secondary-50) / 0.8);
}.bg-secondary-50\/85{
  background-color: rgb(var(--color-secondary-50) / 0.85);
}.bg-secondary-50\/90{
  background-color: rgb(var(--color-secondary-50) / 0.9);
}.bg-secondary-50\/95{
  background-color: rgb(var(--color-secondary-50) / 0.95);
}.bg-secondary-500{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-secondary-500) / var(--tw-bg-opacity, 1));
}.bg-secondary-500\/0{
  background-color: rgb(var(--color-secondary-500) / 0);
}.bg-secondary-500\/10{
  background-color: rgb(var(--color-secondary-500) / 0.1);
}.bg-secondary-500\/100{
  background-color: rgb(var(--color-secondary-500) / 1);
}.bg-secondary-500\/15{
  background-color: rgb(var(--color-secondary-500) / 0.15);
}.bg-secondary-500\/20{
  background-color: rgb(var(--color-secondary-500) / 0.2);
}.bg-secondary-500\/25{
  background-color: rgb(var(--color-secondary-500) / 0.25);
}.bg-secondary-500\/30{
  background-color: rgb(var(--color-secondary-500) / 0.3);
}.bg-secondary-500\/35{
  background-color: rgb(var(--color-secondary-500) / 0.35);
}.bg-secondary-500\/40{
  background-color: rgb(var(--color-secondary-500) / 0.4);
}.bg-secondary-500\/45{
  background-color: rgb(var(--color-secondary-500) / 0.45);
}.bg-secondary-500\/5{
  background-color: rgb(var(--color-secondary-500) / 0.05);
}.bg-secondary-500\/50{
  background-color: rgb(var(--color-secondary-500) / 0.5);
}.bg-secondary-500\/55{
  background-color: rgb(var(--color-secondary-500) / 0.55);
}.bg-secondary-500\/60{
  background-color: rgb(var(--color-secondary-500) / 0.6);
}.bg-secondary-500\/65{
  background-color: rgb(var(--color-secondary-500) / 0.65);
}.bg-secondary-500\/70{
  background-color: rgb(var(--color-secondary-500) / 0.7);
}.bg-secondary-500\/75{
  background-color: rgb(var(--color-secondary-500) / 0.75);
}.bg-secondary-500\/80{
  background-color: rgb(var(--color-secondary-500) / 0.8);
}.bg-secondary-500\/85{
  background-color: rgb(var(--color-secondary-500) / 0.85);
}.bg-secondary-500\/90{
  background-color: rgb(var(--color-secondary-500) / 0.9);
}.bg-secondary-500\/95{
  background-color: rgb(var(--color-secondary-500) / 0.95);
}.bg-secondary-600{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-secondary-600) / var(--tw-bg-opacity, 1));
}.bg-secondary-600\/0{
  background-color: rgb(var(--color-secondary-600) / 0);
}.bg-secondary-600\/10{
  background-color: rgb(var(--color-secondary-600) / 0.1);
}.bg-secondary-600\/100{
  background-color: rgb(var(--color-secondary-600) / 1);
}.bg-secondary-600\/15{
  background-color: rgb(var(--color-secondary-600) / 0.15);
}.bg-secondary-600\/20{
  background-color: rgb(var(--color-secondary-600) / 0.2);
}.bg-secondary-600\/25{
  background-color: rgb(var(--color-secondary-600) / 0.25);
}.bg-secondary-600\/30{
  background-color: rgb(var(--color-secondary-600) / 0.3);
}.bg-secondary-600\/35{
  background-color: rgb(var(--color-secondary-600) / 0.35);
}.bg-secondary-600\/40{
  background-color: rgb(var(--color-secondary-600) / 0.4);
}.bg-secondary-600\/45{
  background-color: rgb(var(--color-secondary-600) / 0.45);
}.bg-secondary-600\/5{
  background-color: rgb(var(--color-secondary-600) / 0.05);
}.bg-secondary-600\/50{
  background-color: rgb(var(--color-secondary-600) / 0.5);
}.bg-secondary-600\/55{
  background-color: rgb(var(--color-secondary-600) / 0.55);
}.bg-secondary-600\/60{
  background-color: rgb(var(--color-secondary-600) / 0.6);
}.bg-secondary-600\/65{
  background-color: rgb(var(--color-secondary-600) / 0.65);
}.bg-secondary-600\/70{
  background-color: rgb(var(--color-secondary-600) / 0.7);
}.bg-secondary-600\/75{
  background-color: rgb(var(--color-secondary-600) / 0.75);
}.bg-secondary-600\/80{
  background-color: rgb(var(--color-secondary-600) / 0.8);
}.bg-secondary-600\/85{
  background-color: rgb(var(--color-secondary-600) / 0.85);
}.bg-secondary-600\/90{
  background-color: rgb(var(--color-secondary-600) / 0.9);
}.bg-secondary-600\/95{
  background-color: rgb(var(--color-secondary-600) / 0.95);
}.bg-secondary-900{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-secondary-900) / var(--tw-bg-opacity, 1));
}.bg-secondary-900\/0{
  background-color: rgb(var(--color-secondary-900) / 0);
}.bg-secondary-900\/10{
  background-color: rgb(var(--color-secondary-900) / 0.1);
}.bg-secondary-900\/100{
  background-color: rgb(var(--color-secondary-900) / 1);
}.bg-secondary-900\/15{
  background-color: rgb(var(--color-secondary-900) / 0.15);
}.bg-secondary-900\/20{
  background-color: rgb(var(--color-secondary-900) / 0.2);
}.bg-secondary-900\/25{
  background-color: rgb(var(--color-secondary-900) / 0.25);
}.bg-secondary-900\/30{
  background-color: rgb(var(--color-secondary-900) / 0.3);
}.bg-secondary-900\/35{
  background-color: rgb(var(--color-secondary-900) / 0.35);
}.bg-secondary-900\/40{
  background-color: rgb(var(--color-secondary-900) / 0.4);
}.bg-secondary-900\/45{
  background-color: rgb(var(--color-secondary-900) / 0.45);
}.bg-secondary-900\/5{
  background-color: rgb(var(--color-secondary-900) / 0.05);
}.bg-secondary-900\/50{
  background-color: rgb(var(--color-secondary-900) / 0.5);
}.bg-secondary-900\/55{
  background-color: rgb(var(--color-secondary-900) / 0.55);
}.bg-secondary-900\/60{
  background-color: rgb(var(--color-secondary-900) / 0.6);
}.bg-secondary-900\/65{
  background-color: rgb(var(--color-secondary-900) / 0.65);
}.bg-secondary-900\/70{
  background-color: rgb(var(--color-secondary-900) / 0.7);
}.bg-secondary-900\/75{
  background-color: rgb(var(--color-secondary-900) / 0.75);
}.bg-secondary-900\/80{
  background-color: rgb(var(--color-secondary-900) / 0.8);
}.bg-secondary-900\/85{
  background-color: rgb(var(--color-secondary-900) / 0.85);
}.bg-secondary-900\/90{
  background-color: rgb(var(--color-secondary-900) / 0.9);
}.bg-secondary-900\/95{
  background-color: rgb(var(--color-secondary-900) / 0.95);
}.bg-slate-100{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}.bg-slate-200{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}.bg-slate-50{
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}.bg-success{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-success) / var(--tw-bg-opacity, 1));
}.bg-success-hover{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-success-hover) / var(--tw-bg-opacity, 1));
}.bg-success-hover\/0{
  background-color: rgb(var(--color-success-hover) / 0);
}.bg-success-hover\/10{
  background-color: rgb(var(--color-success-hover) / 0.1);
}.bg-success-hover\/100{
  background-color: rgb(var(--color-success-hover) / 1);
}.bg-success-hover\/15{
  background-color: rgb(var(--color-success-hover) / 0.15);
}.bg-success-hover\/20{
  background-color: rgb(var(--color-success-hover) / 0.2);
}.bg-success-hover\/25{
  background-color: rgb(var(--color-success-hover) / 0.25);
}.bg-success-hover\/30{
  background-color: rgb(var(--color-success-hover) / 0.3);
}.bg-success-hover\/35{
  background-color: rgb(var(--color-success-hover) / 0.35);
}.bg-success-hover\/40{
  background-color: rgb(var(--color-success-hover) / 0.4);
}.bg-success-hover\/45{
  background-color: rgb(var(--color-success-hover) / 0.45);
}.bg-success-hover\/5{
  background-color: rgb(var(--color-success-hover) / 0.05);
}.bg-success-hover\/50{
  background-color: rgb(var(--color-success-hover) / 0.5);
}.bg-success-hover\/55{
  background-color: rgb(var(--color-success-hover) / 0.55);
}.bg-success-hover\/60{
  background-color: rgb(var(--color-success-hover) / 0.6);
}.bg-success-hover\/65{
  background-color: rgb(var(--color-success-hover) / 0.65);
}.bg-success-hover\/70{
  background-color: rgb(var(--color-success-hover) / 0.7);
}.bg-success-hover\/75{
  background-color: rgb(var(--color-success-hover) / 0.75);
}.bg-success-hover\/80{
  background-color: rgb(var(--color-success-hover) / 0.8);
}.bg-success-hover\/85{
  background-color: rgb(var(--color-success-hover) / 0.85);
}.bg-success-hover\/90{
  background-color: rgb(var(--color-success-hover) / 0.9);
}.bg-success-hover\/95{
  background-color: rgb(var(--color-success-hover) / 0.95);
}.bg-success\/0{
  background-color: rgb(var(--color-success) / 0);
}.bg-success\/10{
  background-color: rgb(var(--color-success) / 0.1);
}.bg-success\/100{
  background-color: rgb(var(--color-success) / 1);
}.bg-success\/15{
  background-color: rgb(var(--color-success) / 0.15);
}.bg-success\/20{
  background-color: rgb(var(--color-success) / 0.2);
}.bg-success\/25{
  background-color: rgb(var(--color-success) / 0.25);
}.bg-success\/30{
  background-color: rgb(var(--color-success) / 0.3);
}.bg-success\/35{
  background-color: rgb(var(--color-success) / 0.35);
}.bg-success\/40{
  background-color: rgb(var(--color-success) / 0.4);
}.bg-success\/45{
  background-color: rgb(var(--color-success) / 0.45);
}.bg-success\/5{
  background-color: rgb(var(--color-success) / 0.05);
}.bg-success\/50{
  background-color: rgb(var(--color-success) / 0.5);
}.bg-success\/55{
  background-color: rgb(var(--color-success) / 0.55);
}.bg-success\/60{
  background-color: rgb(var(--color-success) / 0.6);
}.bg-success\/65{
  background-color: rgb(var(--color-success) / 0.65);
}.bg-success\/70{
  background-color: rgb(var(--color-success) / 0.7);
}.bg-success\/75{
  background-color: rgb(var(--color-success) / 0.75);
}.bg-success\/80{
  background-color: rgb(var(--color-success) / 0.8);
}.bg-success\/85{
  background-color: rgb(var(--color-success) / 0.85);
}.bg-success\/90{
  background-color: rgb(var(--color-success) / 0.9);
}.bg-success\/95{
  background-color: rgb(var(--color-success) / 0.95);
}.bg-transparent{
  background-color: transparent;
}.bg-warning{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-warning) / var(--tw-bg-opacity, 1));
}.bg-warning-hover{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-warning-hover) / var(--tw-bg-opacity, 1));
}.bg-warning-hover\/0{
  background-color: rgb(var(--color-warning-hover) / 0);
}.bg-warning-hover\/10{
  background-color: rgb(var(--color-warning-hover) / 0.1);
}.bg-warning-hover\/100{
  background-color: rgb(var(--color-warning-hover) / 1);
}.bg-warning-hover\/15{
  background-color: rgb(var(--color-warning-hover) / 0.15);
}.bg-warning-hover\/20{
  background-color: rgb(var(--color-warning-hover) / 0.2);
}.bg-warning-hover\/25{
  background-color: rgb(var(--color-warning-hover) / 0.25);
}.bg-warning-hover\/30{
  background-color: rgb(var(--color-warning-hover) / 0.3);
}.bg-warning-hover\/35{
  background-color: rgb(var(--color-warning-hover) / 0.35);
}.bg-warning-hover\/40{
  background-color: rgb(var(--color-warning-hover) / 0.4);
}.bg-warning-hover\/45{
  background-color: rgb(var(--color-warning-hover) / 0.45);
}.bg-warning-hover\/5{
  background-color: rgb(var(--color-warning-hover) / 0.05);
}.bg-warning-hover\/50{
  background-color: rgb(var(--color-warning-hover) / 0.5);
}.bg-warning-hover\/55{
  background-color: rgb(var(--color-warning-hover) / 0.55);
}.bg-warning-hover\/60{
  background-color: rgb(var(--color-warning-hover) / 0.6);
}.bg-warning-hover\/65{
  background-color: rgb(var(--color-warning-hover) / 0.65);
}.bg-warning-hover\/70{
  background-color: rgb(var(--color-warning-hover) / 0.7);
}.bg-warning-hover\/75{
  background-color: rgb(var(--color-warning-hover) / 0.75);
}.bg-warning-hover\/80{
  background-color: rgb(var(--color-warning-hover) / 0.8);
}.bg-warning-hover\/85{
  background-color: rgb(var(--color-warning-hover) / 0.85);
}.bg-warning-hover\/90{
  background-color: rgb(var(--color-warning-hover) / 0.9);
}.bg-warning-hover\/95{
  background-color: rgb(var(--color-warning-hover) / 0.95);
}.bg-warning\/0{
  background-color: rgb(var(--color-warning) / 0);
}.bg-warning\/10{
  background-color: rgb(var(--color-warning) / 0.1);
}.bg-warning\/100{
  background-color: rgb(var(--color-warning) / 1);
}.bg-warning\/15{
  background-color: rgb(var(--color-warning) / 0.15);
}.bg-warning\/20{
  background-color: rgb(var(--color-warning) / 0.2);
}.bg-warning\/25{
  background-color: rgb(var(--color-warning) / 0.25);
}.bg-warning\/30{
  background-color: rgb(var(--color-warning) / 0.3);
}.bg-warning\/35{
  background-color: rgb(var(--color-warning) / 0.35);
}.bg-warning\/40{
  background-color: rgb(var(--color-warning) / 0.4);
}.bg-warning\/45{
  background-color: rgb(var(--color-warning) / 0.45);
}.bg-warning\/5{
  background-color: rgb(var(--color-warning) / 0.05);
}.bg-warning\/50{
  background-color: rgb(var(--color-warning) / 0.5);
}.bg-warning\/55{
  background-color: rgb(var(--color-warning) / 0.55);
}.bg-warning\/60{
  background-color: rgb(var(--color-warning) / 0.6);
}.bg-warning\/65{
  background-color: rgb(var(--color-warning) / 0.65);
}.bg-warning\/70{
  background-color: rgb(var(--color-warning) / 0.7);
}.bg-warning\/75{
  background-color: rgb(var(--color-warning) / 0.75);
}.bg-warning\/80{
  background-color: rgb(var(--color-warning) / 0.8);
}.bg-warning\/85{
  background-color: rgb(var(--color-warning) / 0.85);
}.bg-warning\/90{
  background-color: rgb(var(--color-warning) / 0.9);
}.bg-warning\/95{
  background-color: rgb(var(--color-warning) / 0.95);
}.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}.bg-yellow-200{
  --tw-bg-opacity: 1;
  background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
}.bg-zinc-800{
  --tw-bg-opacity: 1;
  background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
}.bg-zinc-900{
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
}.bg-\[linear-gradient\(45deg\2c rgba\(255\2c 255\2c 255\2c 0\.15\)_25\%\2c transparent_25\%\2c transparent_50\%\2c rgba\(255\2c 255\2c 255\2c 0\.15\)_50\%\2c rgba\(255\2c 255\2c 255\2c 0\.15\)_75\%\2c transparent_75\%\2c transparent\)\]{
  background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}.from-indigo-50{
  --tw-gradient-from: #eef2ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(238 242 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}.from-indigo-500{
  --tw-gradient-from: #6366f1 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}.from-indigo-600{
  --tw-gradient-from: #4f46e5 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(79 70 229 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}.from-white{
  --tw-gradient-from: #fff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}.to-purple-50{
  --tw-gradient-to: #faf5ff var(--tw-gradient-to-position);
}.to-purple-500{
  --tw-gradient-to: #a855f7 var(--tw-gradient-to-position);
}.to-purple-600{
  --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}.to-zinc-800{
  --tw-gradient-to: #27272a var(--tw-gradient-to-position);
}.bg-\[length\:1rem_1rem\]{
  background-size: 1rem 1rem;
}.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}.p-0\.5{
  padding: 0.125rem;
}.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-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}.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-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}.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-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}.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-3\.5{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}.pb-1{
  padding-bottom: 0.25rem;
}.pb-2{
  padding-bottom: 0.5rem;
}.pl-10{
  padding-left: 2.5rem;
}.pl-3{
  padding-left: 0.75rem;
}.pl-4{
  padding-left: 1rem;
}.pr-10{
  padding-right: 2.5rem;
}.pr-2{
  padding-right: 0.5rem;
}.pr-4{
  padding-right: 1rem;
}.pr-8{
  padding-right: 2rem;
}.pt-2{
  padding-top: 0.5rem;
}.pt-4{
  padding-top: 1rem;
}.pt-\[20vh\]{
  padding-top: 20vh;
}.text-left{
  text-align: left;
}.text-center{
  text-align: center;
}.text-right{
  text-align: right;
}.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}.font-sans{
  font-family: Inter, sans-serif;
}.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}.text-\[10px\]{
  font-size: 10px;
}.text-\[11px\]{
  font-size: 11px;
}.text-\[13px\]{
  font-size: 13px;
}.text-\[8px\]{
  font-size: 8px;
}.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}.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-bold{
  font-weight: 700;
}.font-medium{
  font-weight: 500;
}.font-semibold{
  font-weight: 600;
}.uppercase{
  text-transform: uppercase;
}.italic{
  font-style: italic;
}.leading-3{
  line-height: .75rem;
}.leading-relaxed{
  line-height: 1.625;
}.leading-tight{
  line-height: 1.25;
}.tracking-tight{
  letter-spacing: -0.025em;
}.tracking-wide{
  letter-spacing: 0.025em;
}.tracking-wider{
  letter-spacing: 0.05em;
}.text-accent{
  --tw-text-opacity: 1;
  color: rgb(var(--color-accent) / var(--tw-text-opacity, 1));
}.text-accent-hover{
  --tw-text-opacity: 1;
  color: rgb(var(--color-accent-hover) / var(--tw-text-opacity, 1));
}.text-accent-hover\/0{
  color: rgb(var(--color-accent-hover) / 0);
}.text-accent-hover\/10{
  color: rgb(var(--color-accent-hover) / 0.1);
}.text-accent-hover\/100{
  color: rgb(var(--color-accent-hover) / 1);
}.text-accent-hover\/15{
  color: rgb(var(--color-accent-hover) / 0.15);
}.text-accent-hover\/20{
  color: rgb(var(--color-accent-hover) / 0.2);
}.text-accent-hover\/25{
  color: rgb(var(--color-accent-hover) / 0.25);
}.text-accent-hover\/30{
  color: rgb(var(--color-accent-hover) / 0.3);
}.text-accent-hover\/35{
  color: rgb(var(--color-accent-hover) / 0.35);
}.text-accent-hover\/40{
  color: rgb(var(--color-accent-hover) / 0.4);
}.text-accent-hover\/45{
  color: rgb(var(--color-accent-hover) / 0.45);
}.text-accent-hover\/5{
  color: rgb(var(--color-accent-hover) / 0.05);
}.text-accent-hover\/50{
  color: rgb(var(--color-accent-hover) / 0.5);
}.text-accent-hover\/55{
  color: rgb(var(--color-accent-hover) / 0.55);
}.text-accent-hover\/60{
  color: rgb(var(--color-accent-hover) / 0.6);
}.text-accent-hover\/65{
  color: rgb(var(--color-accent-hover) / 0.65);
}.text-accent-hover\/70{
  color: rgb(var(--color-accent-hover) / 0.7);
}.text-accent-hover\/75{
  color: rgb(var(--color-accent-hover) / 0.75);
}.text-accent-hover\/80{
  color: rgb(var(--color-accent-hover) / 0.8);
}.text-accent-hover\/85{
  color: rgb(var(--color-accent-hover) / 0.85);
}.text-accent-hover\/90{
  color: rgb(var(--color-accent-hover) / 0.9);
}.text-accent-hover\/95{
  color: rgb(var(--color-accent-hover) / 0.95);
}.text-accent\/0{
  color: rgb(var(--color-accent) / 0);
}.text-accent\/10{
  color: rgb(var(--color-accent) / 0.1);
}.text-accent\/100{
  color: rgb(var(--color-accent) / 1);
}.text-accent\/15{
  color: rgb(var(--color-accent) / 0.15);
}.text-accent\/20{
  color: rgb(var(--color-accent) / 0.2);
}.text-accent\/25{
  color: rgb(var(--color-accent) / 0.25);
}.text-accent\/30{
  color: rgb(var(--color-accent) / 0.3);
}.text-accent\/35{
  color: rgb(var(--color-accent) / 0.35);
}.text-accent\/40{
  color: rgb(var(--color-accent) / 0.4);
}.text-accent\/45{
  color: rgb(var(--color-accent) / 0.45);
}.text-accent\/5{
  color: rgb(var(--color-accent) / 0.05);
}.text-accent\/50{
  color: rgb(var(--color-accent) / 0.5);
}.text-accent\/55{
  color: rgb(var(--color-accent) / 0.55);
}.text-accent\/60{
  color: rgb(var(--color-accent) / 0.6);
}.text-accent\/65{
  color: rgb(var(--color-accent) / 0.65);
}.text-accent\/70{
  color: rgb(var(--color-accent) / 0.7);
}.text-accent\/75{
  color: rgb(var(--color-accent) / 0.75);
}.text-accent\/80{
  color: rgb(var(--color-accent) / 0.8);
}.text-accent\/85{
  color: rgb(var(--color-accent) / 0.85);
}.text-accent\/90{
  color: rgb(var(--color-accent) / 0.9);
}.text-accent\/95{
  color: rgb(var(--color-accent) / 0.95);
}.text-blue-500{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}.text-blue-700{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}.text-emerald-400{
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}.text-error{
  --tw-text-opacity: 1;
  color: rgb(var(--color-error) / var(--tw-text-opacity, 1));
}.text-error-hover{
  --tw-text-opacity: 1;
  color: rgb(var(--color-error-hover) / var(--tw-text-opacity, 1));
}.text-error-hover\/0{
  color: rgb(var(--color-error-hover) / 0);
}.text-error-hover\/10{
  color: rgb(var(--color-error-hover) / 0.1);
}.text-error-hover\/100{
  color: rgb(var(--color-error-hover) / 1);
}.text-error-hover\/15{
  color: rgb(var(--color-error-hover) / 0.15);
}.text-error-hover\/20{
  color: rgb(var(--color-error-hover) / 0.2);
}.text-error-hover\/25{
  color: rgb(var(--color-error-hover) / 0.25);
}.text-error-hover\/30{
  color: rgb(var(--color-error-hover) / 0.3);
}.text-error-hover\/35{
  color: rgb(var(--color-error-hover) / 0.35);
}.text-error-hover\/40{
  color: rgb(var(--color-error-hover) / 0.4);
}.text-error-hover\/45{
  color: rgb(var(--color-error-hover) / 0.45);
}.text-error-hover\/5{
  color: rgb(var(--color-error-hover) / 0.05);
}.text-error-hover\/50{
  color: rgb(var(--color-error-hover) / 0.5);
}.text-error-hover\/55{
  color: rgb(var(--color-error-hover) / 0.55);
}.text-error-hover\/60{
  color: rgb(var(--color-error-hover) / 0.6);
}.text-error-hover\/65{
  color: rgb(var(--color-error-hover) / 0.65);
}.text-error-hover\/70{
  color: rgb(var(--color-error-hover) / 0.7);
}.text-error-hover\/75{
  color: rgb(var(--color-error-hover) / 0.75);
}.text-error-hover\/80{
  color: rgb(var(--color-error-hover) / 0.8);
}.text-error-hover\/85{
  color: rgb(var(--color-error-hover) / 0.85);
}.text-error-hover\/90{
  color: rgb(var(--color-error-hover) / 0.9);
}.text-error-hover\/95{
  color: rgb(var(--color-error-hover) / 0.95);
}.text-error\/0{
  color: rgb(var(--color-error) / 0);
}.text-error\/10{
  color: rgb(var(--color-error) / 0.1);
}.text-error\/100{
  color: rgb(var(--color-error) / 1);
}.text-error\/15{
  color: rgb(var(--color-error) / 0.15);
}.text-error\/20{
  color: rgb(var(--color-error) / 0.2);
}.text-error\/25{
  color: rgb(var(--color-error) / 0.25);
}.text-error\/30{
  color: rgb(var(--color-error) / 0.3);
}.text-error\/35{
  color: rgb(var(--color-error) / 0.35);
}.text-error\/40{
  color: rgb(var(--color-error) / 0.4);
}.text-error\/45{
  color: rgb(var(--color-error) / 0.45);
}.text-error\/5{
  color: rgb(var(--color-error) / 0.05);
}.text-error\/50{
  color: rgb(var(--color-error) / 0.5);
}.text-error\/55{
  color: rgb(var(--color-error) / 0.55);
}.text-error\/60{
  color: rgb(var(--color-error) / 0.6);
}.text-error\/65{
  color: rgb(var(--color-error) / 0.65);
}.text-error\/70{
  color: rgb(var(--color-error) / 0.7);
}.text-error\/75{
  color: rgb(var(--color-error) / 0.75);
}.text-error\/80{
  color: rgb(var(--color-error) / 0.8);
}.text-error\/85{
  color: rgb(var(--color-error) / 0.85);
}.text-error\/90{
  color: rgb(var(--color-error) / 0.9);
}.text-error\/95{
  color: rgb(var(--color-error) / 0.95);
}.text-foreground{
  --tw-text-opacity: 1;
  color: rgb(var(--color-foreground) / var(--tw-text-opacity, 1));
}.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}.text-gray-950{
  --tw-text-opacity: 1;
  color: rgb(3 7 18 / var(--tw-text-opacity, 1));
}.text-green-400{
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}.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-indigo-400\/80{
  color: rgb(129 140 248 / 0.8);
}.text-indigo-500{
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}.text-indigo-600{
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}.text-indigo-700{
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}.text-neutral-500{
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity, 1));
}.text-primary-100{
  --tw-text-opacity: 1;
  color: rgb(var(--color-primary-100) / var(--tw-text-opacity, 1));
}.text-primary-100\/0{
  color: rgb(var(--color-primary-100) / 0);
}.text-primary-100\/10{
  color: rgb(var(--color-primary-100) / 0.1);
}.text-primary-100\/100{
  color: rgb(var(--color-primary-100) / 1);
}.text-primary-100\/15{
  color: rgb(var(--color-primary-100) / 0.15);
}.text-primary-100\/20{
  color: rgb(var(--color-primary-100) / 0.2);
}.text-primary-100\/25{
  color: rgb(var(--color-primary-100) / 0.25);
}.text-primary-100\/30{
  color: rgb(var(--color-primary-100) / 0.3);
}.text-primary-100\/35{
  color: rgb(var(--color-primary-100) / 0.35);
}.text-primary-100\/40{
  color: rgb(var(--color-primary-100) / 0.4);
}.text-primary-100\/45{
  color: rgb(var(--color-primary-100) / 0.45);
}.text-primary-100\/5{
  color: rgb(var(--color-primary-100) / 0.05);
}.text-primary-100\/50{
  color: rgb(var(--color-primary-100) / 0.5);
}.text-primary-100\/55{
  color: rgb(var(--color-primary-100) / 0.55);
}.text-primary-100\/60{
  color: rgb(var(--color-primary-100) / 0.6);
}.text-primary-100\/65{
  color: rgb(var(--color-primary-100) / 0.65);
}.text-primary-100\/70{
  color: rgb(var(--color-primary-100) / 0.7);
}.text-primary-100\/75{
  color: rgb(var(--color-primary-100) / 0.75);
}.text-primary-100\/80{
  color: rgb(var(--color-primary-100) / 0.8);
}.text-primary-100\/85{
  color: rgb(var(--color-primary-100) / 0.85);
}.text-primary-100\/90{
  color: rgb(var(--color-primary-100) / 0.9);
}.text-primary-100\/95{
  color: rgb(var(--color-primary-100) / 0.95);
}.text-primary-50{
  --tw-text-opacity: 1;
  color: rgb(var(--color-primary-50) / var(--tw-text-opacity, 1));
}.text-primary-50\/0{
  color: rgb(var(--color-primary-50) / 0);
}.text-primary-50\/10{
  color: rgb(var(--color-primary-50) / 0.1);
}.text-primary-50\/100{
  color: rgb(var(--color-primary-50) / 1);
}.text-primary-50\/15{
  color: rgb(var(--color-primary-50) / 0.15);
}.text-primary-50\/20{
  color: rgb(var(--color-primary-50) / 0.2);
}.text-primary-50\/25{
  color: rgb(var(--color-primary-50) / 0.25);
}.text-primary-50\/30{
  color: rgb(var(--color-primary-50) / 0.3);
}.text-primary-50\/35{
  color: rgb(var(--color-primary-50) / 0.35);
}.text-primary-50\/40{
  color: rgb(var(--color-primary-50) / 0.4);
}.text-primary-50\/45{
  color: rgb(var(--color-primary-50) / 0.45);
}.text-primary-50\/5{
  color: rgb(var(--color-primary-50) / 0.05);
}.text-primary-50\/50{
  color: rgb(var(--color-primary-50) / 0.5);
}.text-primary-50\/55{
  color: rgb(var(--color-primary-50) / 0.55);
}.text-primary-50\/60{
  color: rgb(var(--color-primary-50) / 0.6);
}.text-primary-50\/65{
  color: rgb(var(--color-primary-50) / 0.65);
}.text-primary-50\/70{
  color: rgb(var(--color-primary-50) / 0.7);
}.text-primary-50\/75{
  color: rgb(var(--color-primary-50) / 0.75);
}.text-primary-50\/80{
  color: rgb(var(--color-primary-50) / 0.8);
}.text-primary-50\/85{
  color: rgb(var(--color-primary-50) / 0.85);
}.text-primary-50\/90{
  color: rgb(var(--color-primary-50) / 0.9);
}.text-primary-50\/95{
  color: rgb(var(--color-primary-50) / 0.95);
}.text-primary-500{
  --tw-text-opacity: 1;
  color: rgb(var(--color-primary-500) / var(--tw-text-opacity, 1));
}.text-primary-500\/0{
  color: rgb(var(--color-primary-500) / 0);
}.text-primary-500\/10{
  color: rgb(var(--color-primary-500) / 0.1);
}.text-primary-500\/100{
  color: rgb(var(--color-primary-500) / 1);
}.text-primary-500\/15{
  color: rgb(var(--color-primary-500) / 0.15);
}.text-primary-500\/20{
  color: rgb(var(--color-primary-500) / 0.2);
}.text-primary-500\/25{
  color: rgb(var(--color-primary-500) / 0.25);
}.text-primary-500\/30{
  color: rgb(var(--color-primary-500) / 0.3);
}.text-primary-500\/35{
  color: rgb(var(--color-primary-500) / 0.35);
}.text-primary-500\/40{
  color: rgb(var(--color-primary-500) / 0.4);
}.text-primary-500\/45{
  color: rgb(var(--color-primary-500) / 0.45);
}.text-primary-500\/5{
  color: rgb(var(--color-primary-500) / 0.05);
}.text-primary-500\/50{
  color: rgb(var(--color-primary-500) / 0.5);
}.text-primary-500\/55{
  color: rgb(var(--color-primary-500) / 0.55);
}.text-primary-500\/60{
  color: rgb(var(--color-primary-500) / 0.6);
}.text-primary-500\/65{
  color: rgb(var(--color-primary-500) / 0.65);
}.text-primary-500\/70{
  color: rgb(var(--color-primary-500) / 0.7);
}.text-primary-500\/75{
  color: rgb(var(--color-primary-500) / 0.75);
}.text-primary-500\/80{
  color: rgb(var(--color-primary-500) / 0.8);
}.text-primary-500\/85{
  color: rgb(var(--color-primary-500) / 0.85);
}.text-primary-500\/90{
  color: rgb(var(--color-primary-500) / 0.9);
}.text-primary-500\/95{
  color: rgb(var(--color-primary-500) / 0.95);
}.text-primary-600{
  --tw-text-opacity: 1;
  color: rgb(var(--color-primary-600) / var(--tw-text-opacity, 1));
}.text-primary-600\/0{
  color: rgb(var(--color-primary-600) / 0);
}.text-primary-600\/10{
  color: rgb(var(--color-primary-600) / 0.1);
}.text-primary-600\/100{
  color: rgb(var(--color-primary-600) / 1);
}.text-primary-600\/15{
  color: rgb(var(--color-primary-600) / 0.15);
}.text-primary-600\/20{
  color: rgb(var(--color-primary-600) / 0.2);
}.text-primary-600\/25{
  color: rgb(var(--color-primary-600) / 0.25);
}.text-primary-600\/30{
  color: rgb(var(--color-primary-600) / 0.3);
}.text-primary-600\/35{
  color: rgb(var(--color-primary-600) / 0.35);
}.text-primary-600\/40{
  color: rgb(var(--color-primary-600) / 0.4);
}.text-primary-600\/45{
  color: rgb(var(--color-primary-600) / 0.45);
}.text-primary-600\/5{
  color: rgb(var(--color-primary-600) / 0.05);
}.text-primary-600\/50{
  color: rgb(var(--color-primary-600) / 0.5);
}.text-primary-600\/55{
  color: rgb(var(--color-primary-600) / 0.55);
}.text-primary-600\/60{
  color: rgb(var(--color-primary-600) / 0.6);
}.text-primary-600\/65{
  color: rgb(var(--color-primary-600) / 0.65);
}.text-primary-600\/70{
  color: rgb(var(--color-primary-600) / 0.7);
}.text-primary-600\/75{
  color: rgb(var(--color-primary-600) / 0.75);
}.text-primary-600\/80{
  color: rgb(var(--color-primary-600) / 0.8);
}.text-primary-600\/85{
  color: rgb(var(--color-primary-600) / 0.85);
}.text-primary-600\/90{
  color: rgb(var(--color-primary-600) / 0.9);
}.text-primary-600\/95{
  color: rgb(var(--color-primary-600) / 0.95);
}.text-primary-900{
  --tw-text-opacity: 1;
  color: rgb(var(--color-primary-900) / var(--tw-text-opacity, 1));
}.text-primary-900\/0{
  color: rgb(var(--color-primary-900) / 0);
}.text-primary-900\/10{
  color: rgb(var(--color-primary-900) / 0.1);
}.text-primary-900\/100{
  color: rgb(var(--color-primary-900) / 1);
}.text-primary-900\/15{
  color: rgb(var(--color-primary-900) / 0.15);
}.text-primary-900\/20{
  color: rgb(var(--color-primary-900) / 0.2);
}.text-primary-900\/25{
  color: rgb(var(--color-primary-900) / 0.25);
}.text-primary-900\/30{
  color: rgb(var(--color-primary-900) / 0.3);
}.text-primary-900\/35{
  color: rgb(var(--color-primary-900) / 0.35);
}.text-primary-900\/40{
  color: rgb(var(--color-primary-900) / 0.4);
}.text-primary-900\/45{
  color: rgb(var(--color-primary-900) / 0.45);
}.text-primary-900\/5{
  color: rgb(var(--color-primary-900) / 0.05);
}.text-primary-900\/50{
  color: rgb(var(--color-primary-900) / 0.5);
}.text-primary-900\/55{
  color: rgb(var(--color-primary-900) / 0.55);
}.text-primary-900\/60{
  color: rgb(var(--color-primary-900) / 0.6);
}.text-primary-900\/65{
  color: rgb(var(--color-primary-900) / 0.65);
}.text-primary-900\/70{
  color: rgb(var(--color-primary-900) / 0.7);
}.text-primary-900\/75{
  color: rgb(var(--color-primary-900) / 0.75);
}.text-primary-900\/80{
  color: rgb(var(--color-primary-900) / 0.8);
}.text-primary-900\/85{
  color: rgb(var(--color-primary-900) / 0.85);
}.text-primary-900\/90{
  color: rgb(var(--color-primary-900) / 0.9);
}.text-primary-900\/95{
  color: rgb(var(--color-primary-900) / 0.95);
}.text-purple-500{
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}.text-purple-700{
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}.text-red-700{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}.text-secondary-100{
  --tw-text-opacity: 1;
  color: rgb(var(--color-secondary-100) / var(--tw-text-opacity, 1));
}.text-secondary-100\/0{
  color: rgb(var(--color-secondary-100) / 0);
}.text-secondary-100\/10{
  color: rgb(var(--color-secondary-100) / 0.1);
}.text-secondary-100\/100{
  color: rgb(var(--color-secondary-100) / 1);
}.text-secondary-100\/15{
  color: rgb(var(--color-secondary-100) / 0.15);
}.text-secondary-100\/20{
  color: rgb(var(--color-secondary-100) / 0.2);
}.text-secondary-100\/25{
  color: rgb(var(--color-secondary-100) / 0.25);
}.text-secondary-100\/30{
  color: rgb(var(--color-secondary-100) / 0.3);
}.text-secondary-100\/35{
  color: rgb(var(--color-secondary-100) / 0.35);
}.text-secondary-100\/40{
  color: rgb(var(--color-secondary-100) / 0.4);
}.text-secondary-100\/45{
  color: rgb(var(--color-secondary-100) / 0.45);
}.text-secondary-100\/5{
  color: rgb(var(--color-secondary-100) / 0.05);
}.text-secondary-100\/50{
  color: rgb(var(--color-secondary-100) / 0.5);
}.text-secondary-100\/55{
  color: rgb(var(--color-secondary-100) / 0.55);
}.text-secondary-100\/60{
  color: rgb(var(--color-secondary-100) / 0.6);
}.text-secondary-100\/65{
  color: rgb(var(--color-secondary-100) / 0.65);
}.text-secondary-100\/70{
  color: rgb(var(--color-secondary-100) / 0.7);
}.text-secondary-100\/75{
  color: rgb(var(--color-secondary-100) / 0.75);
}.text-secondary-100\/80{
  color: rgb(var(--color-secondary-100) / 0.8);
}.text-secondary-100\/85{
  color: rgb(var(--color-secondary-100) / 0.85);
}.text-secondary-100\/90{
  color: rgb(var(--color-secondary-100) / 0.9);
}.text-secondary-100\/95{
  color: rgb(var(--color-secondary-100) / 0.95);
}.text-secondary-50{
  --tw-text-opacity: 1;
  color: rgb(var(--color-secondary-50) / var(--tw-text-opacity, 1));
}.text-secondary-50\/0{
  color: rgb(var(--color-secondary-50) / 0);
}.text-secondary-50\/10{
  color: rgb(var(--color-secondary-50) / 0.1);
}.text-secondary-50\/100{
  color: rgb(var(--color-secondary-50) / 1);
}.text-secondary-50\/15{
  color: rgb(var(--color-secondary-50) / 0.15);
}.text-secondary-50\/20{
  color: rgb(var(--color-secondary-50) / 0.2);
}.text-secondary-50\/25{
  color: rgb(var(--color-secondary-50) / 0.25);
}.text-secondary-50\/30{
  color: rgb(var(--color-secondary-50) / 0.3);
}.text-secondary-50\/35{
  color: rgb(var(--color-secondary-50) / 0.35);
}.text-secondary-50\/40{
  color: rgb(var(--color-secondary-50) / 0.4);
}.text-secondary-50\/45{
  color: rgb(var(--color-secondary-50) / 0.45);
}.text-secondary-50\/5{
  color: rgb(var(--color-secondary-50) / 0.05);
}.text-secondary-50\/50{
  color: rgb(var(--color-secondary-50) / 0.5);
}.text-secondary-50\/55{
  color: rgb(var(--color-secondary-50) / 0.55);
}.text-secondary-50\/60{
  color: rgb(var(--color-secondary-50) / 0.6);
}.text-secondary-50\/65{
  color: rgb(var(--color-secondary-50) / 0.65);
}.text-secondary-50\/70{
  color: rgb(var(--color-secondary-50) / 0.7);
}.text-secondary-50\/75{
  color: rgb(var(--color-secondary-50) / 0.75);
}.text-secondary-50\/80{
  color: rgb(var(--color-secondary-50) / 0.8);
}.text-secondary-50\/85{
  color: rgb(var(--color-secondary-50) / 0.85);
}.text-secondary-50\/90{
  color: rgb(var(--color-secondary-50) / 0.9);
}.text-secondary-50\/95{
  color: rgb(var(--color-secondary-50) / 0.95);
}.text-secondary-500{
  --tw-text-opacity: 1;
  color: rgb(var(--color-secondary-500) / var(--tw-text-opacity, 1));
}.text-secondary-500\/0{
  color: rgb(var(--color-secondary-500) / 0);
}.text-secondary-500\/10{
  color: rgb(var(--color-secondary-500) / 0.1);
}.text-secondary-500\/100{
  color: rgb(var(--color-secondary-500) / 1);
}.text-secondary-500\/15{
  color: rgb(var(--color-secondary-500) / 0.15);
}.text-secondary-500\/20{
  color: rgb(var(--color-secondary-500) / 0.2);
}.text-secondary-500\/25{
  color: rgb(var(--color-secondary-500) / 0.25);
}.text-secondary-500\/30{
  color: rgb(var(--color-secondary-500) / 0.3);
}.text-secondary-500\/35{
  color: rgb(var(--color-secondary-500) / 0.35);
}.text-secondary-500\/40{
  color: rgb(var(--color-secondary-500) / 0.4);
}.text-secondary-500\/45{
  color: rgb(var(--color-secondary-500) / 0.45);
}.text-secondary-500\/5{
  color: rgb(var(--color-secondary-500) / 0.05);
}.text-secondary-500\/50{
  color: rgb(var(--color-secondary-500) / 0.5);
}.text-secondary-500\/55{
  color: rgb(var(--color-secondary-500) / 0.55);
}.text-secondary-500\/60{
  color: rgb(var(--color-secondary-500) / 0.6);
}.text-secondary-500\/65{
  color: rgb(var(--color-secondary-500) / 0.65);
}.text-secondary-500\/70{
  color: rgb(var(--color-secondary-500) / 0.7);
}.text-secondary-500\/75{
  color: rgb(var(--color-secondary-500) / 0.75);
}.text-secondary-500\/80{
  color: rgb(var(--color-secondary-500) / 0.8);
}.text-secondary-500\/85{
  color: rgb(var(--color-secondary-500) / 0.85);
}.text-secondary-500\/90{
  color: rgb(var(--color-secondary-500) / 0.9);
}.text-secondary-500\/95{
  color: rgb(var(--color-secondary-500) / 0.95);
}.text-secondary-600{
  --tw-text-opacity: 1;
  color: rgb(var(--color-secondary-600) / var(--tw-text-opacity, 1));
}.text-secondary-600\/0{
  color: rgb(var(--color-secondary-600) / 0);
}.text-secondary-600\/10{
  color: rgb(var(--color-secondary-600) / 0.1);
}.text-secondary-600\/100{
  color: rgb(var(--color-secondary-600) / 1);
}.text-secondary-600\/15{
  color: rgb(var(--color-secondary-600) / 0.15);
}.text-secondary-600\/20{
  color: rgb(var(--color-secondary-600) / 0.2);
}.text-secondary-600\/25{
  color: rgb(var(--color-secondary-600) / 0.25);
}.text-secondary-600\/30{
  color: rgb(var(--color-secondary-600) / 0.3);
}.text-secondary-600\/35{
  color: rgb(var(--color-secondary-600) / 0.35);
}.text-secondary-600\/40{
  color: rgb(var(--color-secondary-600) / 0.4);
}.text-secondary-600\/45{
  color: rgb(var(--color-secondary-600) / 0.45);
}.text-secondary-600\/5{
  color: rgb(var(--color-secondary-600) / 0.05);
}.text-secondary-600\/50{
  color: rgb(var(--color-secondary-600) / 0.5);
}.text-secondary-600\/55{
  color: rgb(var(--color-secondary-600) / 0.55);
}.text-secondary-600\/60{
  color: rgb(var(--color-secondary-600) / 0.6);
}.text-secondary-600\/65{
  color: rgb(var(--color-secondary-600) / 0.65);
}.text-secondary-600\/70{
  color: rgb(var(--color-secondary-600) / 0.7);
}.text-secondary-600\/75{
  color: rgb(var(--color-secondary-600) / 0.75);
}.text-secondary-600\/80{
  color: rgb(var(--color-secondary-600) / 0.8);
}.text-secondary-600\/85{
  color: rgb(var(--color-secondary-600) / 0.85);
}.text-secondary-600\/90{
  color: rgb(var(--color-secondary-600) / 0.9);
}.text-secondary-600\/95{
  color: rgb(var(--color-secondary-600) / 0.95);
}.text-secondary-900{
  --tw-text-opacity: 1;
  color: rgb(var(--color-secondary-900) / var(--tw-text-opacity, 1));
}.text-secondary-900\/0{
  color: rgb(var(--color-secondary-900) / 0);
}.text-secondary-900\/10{
  color: rgb(var(--color-secondary-900) / 0.1);
}.text-secondary-900\/100{
  color: rgb(var(--color-secondary-900) / 1);
}.text-secondary-900\/15{
  color: rgb(var(--color-secondary-900) / 0.15);
}.text-secondary-900\/20{
  color: rgb(var(--color-secondary-900) / 0.2);
}.text-secondary-900\/25{
  color: rgb(var(--color-secondary-900) / 0.25);
}.text-secondary-900\/30{
  color: rgb(var(--color-secondary-900) / 0.3);
}.text-secondary-900\/35{
  color: rgb(var(--color-secondary-900) / 0.35);
}.text-secondary-900\/40{
  color: rgb(var(--color-secondary-900) / 0.4);
}.text-secondary-900\/45{
  color: rgb(var(--color-secondary-900) / 0.45);
}.text-secondary-900\/5{
  color: rgb(var(--color-secondary-900) / 0.05);
}.text-secondary-900\/50{
  color: rgb(var(--color-secondary-900) / 0.5);
}.text-secondary-900\/55{
  color: rgb(var(--color-secondary-900) / 0.55);
}.text-secondary-900\/60{
  color: rgb(var(--color-secondary-900) / 0.6);
}.text-secondary-900\/65{
  color: rgb(var(--color-secondary-900) / 0.65);
}.text-secondary-900\/70{
  color: rgb(var(--color-secondary-900) / 0.7);
}.text-secondary-900\/75{
  color: rgb(var(--color-secondary-900) / 0.75);
}.text-secondary-900\/80{
  color: rgb(var(--color-secondary-900) / 0.8);
}.text-secondary-900\/85{
  color: rgb(var(--color-secondary-900) / 0.85);
}.text-secondary-900\/90{
  color: rgb(var(--color-secondary-900) / 0.9);
}.text-secondary-900\/95{
  color: rgb(var(--color-secondary-900) / 0.95);
}.text-slate-400{
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}.text-slate-500{
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}.text-slate-600{
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}.text-slate-700{
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}.text-slate-800{
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}.text-success{
  --tw-text-opacity: 1;
  color: rgb(var(--color-success) / var(--tw-text-opacity, 1));
}.text-success-hover{
  --tw-text-opacity: 1;
  color: rgb(var(--color-success-hover) / var(--tw-text-opacity, 1));
}.text-success-hover\/0{
  color: rgb(var(--color-success-hover) / 0);
}.text-success-hover\/10{
  color: rgb(var(--color-success-hover) / 0.1);
}.text-success-hover\/100{
  color: rgb(var(--color-success-hover) / 1);
}.text-success-hover\/15{
  color: rgb(var(--color-success-hover) / 0.15);
}.text-success-hover\/20{
  color: rgb(var(--color-success-hover) / 0.2);
}.text-success-hover\/25{
  color: rgb(var(--color-success-hover) / 0.25);
}.text-success-hover\/30{
  color: rgb(var(--color-success-hover) / 0.3);
}.text-success-hover\/35{
  color: rgb(var(--color-success-hover) / 0.35);
}.text-success-hover\/40{
  color: rgb(var(--color-success-hover) / 0.4);
}.text-success-hover\/45{
  color: rgb(var(--color-success-hover) / 0.45);
}.text-success-hover\/5{
  color: rgb(var(--color-success-hover) / 0.05);
}.text-success-hover\/50{
  color: rgb(var(--color-success-hover) / 0.5);
}.text-success-hover\/55{
  color: rgb(var(--color-success-hover) / 0.55);
}.text-success-hover\/60{
  color: rgb(var(--color-success-hover) / 0.6);
}.text-success-hover\/65{
  color: rgb(var(--color-success-hover) / 0.65);
}.text-success-hover\/70{
  color: rgb(var(--color-success-hover) / 0.7);
}.text-success-hover\/75{
  color: rgb(var(--color-success-hover) / 0.75);
}.text-success-hover\/80{
  color: rgb(var(--color-success-hover) / 0.8);
}.text-success-hover\/85{
  color: rgb(var(--color-success-hover) / 0.85);
}.text-success-hover\/90{
  color: rgb(var(--color-success-hover) / 0.9);
}.text-success-hover\/95{
  color: rgb(var(--color-success-hover) / 0.95);
}.text-success\/0{
  color: rgb(var(--color-success) / 0);
}.text-success\/10{
  color: rgb(var(--color-success) / 0.1);
}.text-success\/100{
  color: rgb(var(--color-success) / 1);
}.text-success\/15{
  color: rgb(var(--color-success) / 0.15);
}.text-success\/20{
  color: rgb(var(--color-success) / 0.2);
}.text-success\/25{
  color: rgb(var(--color-success) / 0.25);
}.text-success\/30{
  color: rgb(var(--color-success) / 0.3);
}.text-success\/35{
  color: rgb(var(--color-success) / 0.35);
}.text-success\/40{
  color: rgb(var(--color-success) / 0.4);
}.text-success\/45{
  color: rgb(var(--color-success) / 0.45);
}.text-success\/5{
  color: rgb(var(--color-success) / 0.05);
}.text-success\/50{
  color: rgb(var(--color-success) / 0.5);
}.text-success\/55{
  color: rgb(var(--color-success) / 0.55);
}.text-success\/60{
  color: rgb(var(--color-success) / 0.6);
}.text-success\/65{
  color: rgb(var(--color-success) / 0.65);
}.text-success\/70{
  color: rgb(var(--color-success) / 0.7);
}.text-success\/75{
  color: rgb(var(--color-success) / 0.75);
}.text-success\/80{
  color: rgb(var(--color-success) / 0.8);
}.text-success\/85{
  color: rgb(var(--color-success) / 0.85);
}.text-success\/90{
  color: rgb(var(--color-success) / 0.9);
}.text-success\/95{
  color: rgb(var(--color-success) / 0.95);
}.text-warning{
  --tw-text-opacity: 1;
  color: rgb(var(--color-warning) / var(--tw-text-opacity, 1));
}.text-warning-hover{
  --tw-text-opacity: 1;
  color: rgb(var(--color-warning-hover) / var(--tw-text-opacity, 1));
}.text-warning-hover\/0{
  color: rgb(var(--color-warning-hover) / 0);
}.text-warning-hover\/10{
  color: rgb(var(--color-warning-hover) / 0.1);
}.text-warning-hover\/100{
  color: rgb(var(--color-warning-hover) / 1);
}.text-warning-hover\/15{
  color: rgb(var(--color-warning-hover) / 0.15);
}.text-warning-hover\/20{
  color: rgb(var(--color-warning-hover) / 0.2);
}.text-warning-hover\/25{
  color: rgb(var(--color-warning-hover) / 0.25);
}.text-warning-hover\/30{
  color: rgb(var(--color-warning-hover) / 0.3);
}.text-warning-hover\/35{
  color: rgb(var(--color-warning-hover) / 0.35);
}.text-warning-hover\/40{
  color: rgb(var(--color-warning-hover) / 0.4);
}.text-warning-hover\/45{
  color: rgb(var(--color-warning-hover) / 0.45);
}.text-warning-hover\/5{
  color: rgb(var(--color-warning-hover) / 0.05);
}.text-warning-hover\/50{
  color: rgb(var(--color-warning-hover) / 0.5);
}.text-warning-hover\/55{
  color: rgb(var(--color-warning-hover) / 0.55);
}.text-warning-hover\/60{
  color: rgb(var(--color-warning-hover) / 0.6);
}.text-warning-hover\/65{
  color: rgb(var(--color-warning-hover) / 0.65);
}.text-warning-hover\/70{
  color: rgb(var(--color-warning-hover) / 0.7);
}.text-warning-hover\/75{
  color: rgb(var(--color-warning-hover) / 0.75);
}.text-warning-hover\/80{
  color: rgb(var(--color-warning-hover) / 0.8);
}.text-warning-hover\/85{
  color: rgb(var(--color-warning-hover) / 0.85);
}.text-warning-hover\/90{
  color: rgb(var(--color-warning-hover) / 0.9);
}.text-warning-hover\/95{
  color: rgb(var(--color-warning-hover) / 0.95);
}.text-warning\/0{
  color: rgb(var(--color-warning) / 0);
}.text-warning\/10{
  color: rgb(var(--color-warning) / 0.1);
}.text-warning\/100{
  color: rgb(var(--color-warning) / 1);
}.text-warning\/15{
  color: rgb(var(--color-warning) / 0.15);
}.text-warning\/20{
  color: rgb(var(--color-warning) / 0.2);
}.text-warning\/25{
  color: rgb(var(--color-warning) / 0.25);
}.text-warning\/30{
  color: rgb(var(--color-warning) / 0.3);
}.text-warning\/35{
  color: rgb(var(--color-warning) / 0.35);
}.text-warning\/40{
  color: rgb(var(--color-warning) / 0.4);
}.text-warning\/45{
  color: rgb(var(--color-warning) / 0.45);
}.text-warning\/5{
  color: rgb(var(--color-warning) / 0.05);
}.text-warning\/50{
  color: rgb(var(--color-warning) / 0.5);
}.text-warning\/55{
  color: rgb(var(--color-warning) / 0.55);
}.text-warning\/60{
  color: rgb(var(--color-warning) / 0.6);
}.text-warning\/65{
  color: rgb(var(--color-warning) / 0.65);
}.text-warning\/70{
  color: rgb(var(--color-warning) / 0.7);
}.text-warning\/75{
  color: rgb(var(--color-warning) / 0.75);
}.text-warning\/80{
  color: rgb(var(--color-warning) / 0.8);
}.text-warning\/85{
  color: rgb(var(--color-warning) / 0.85);
}.text-warning\/90{
  color: rgb(var(--color-warning) / 0.9);
}.text-warning\/95{
  color: rgb(var(--color-warning) / 0.95);
}.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.text-yellow-500{
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}.text-zinc-100{
  --tw-text-opacity: 1;
  color: rgb(244 244 245 / var(--tw-text-opacity, 1));
}.text-zinc-300{
  --tw-text-opacity: 1;
  color: rgb(212 212 216 / var(--tw-text-opacity, 1));
}.text-zinc-400{
  --tw-text-opacity: 1;
  color: rgb(161 161 170 / var(--tw-text-opacity, 1));
}.underline{
  text-decoration-line: underline;
}.opacity-0{
  opacity: 0;
}.opacity-20{
  opacity: 0.2;
}.opacity-40{
  opacity: 0.4;
}.opacity-50{
  opacity: 0.5;
}.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-\[-4px_0_15px_rgba\(0\2c 0\2c 0\2c 0\.02\)\]{
  --tw-shadow: -4px 0 15px rgba(0,0,0,0.02);
  --tw-shadow-colored: -4px 0 15px 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-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px 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-none{
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 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-soft{
  --tw-shadow: var(--shadow-soft);
  --tw-shadow-colored: var(--shadow-soft);
  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);
}.shadow-emerald-600\/20{
  --tw-shadow-color: rgb(5 150 105 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}.shadow-indigo-100{
  --tw-shadow-color: #e0e7ff;
  --tw-shadow: var(--tw-shadow-colored);
}.shadow-indigo-200{
  --tw-shadow-color: #c7d2fe;
  --tw-shadow: var(--tw-shadow-colored);
}.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}.outline{
  outline-style: solid;
}.ring-1{
  --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);
}.ring-2{
  --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(2px + 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);
}.ring-indigo-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
}.ring-indigo-600{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
}.ring-neutral-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity, 1));
}.ring-primary-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(var(--color-primary-500) / var(--tw-ring-opacity, 1));
}.ring-offset-1{
  --tw-ring-offset-width: 1px;
}.ring-offset-2{
  --tw-ring-offset-width: 2px;
}.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);
}.drop-shadow{
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  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-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-shadow{
  transition-property: box-shadow;
  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-200{
  transition-duration: 200ms;
}.duration-300{
  transition-duration: 300ms;
}.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}.border-e{
  border-inline-end-width: 1px;
}.border-s{
  border-inline-start-width: 1px;
}@font-face {
  font-family: 'Noto Nastaliq Urdu';
  src: url('./NotoNastaliqUrdu-Regular-vdoFmglb.ttf') format('truetype');
  font-weight: normal;
  font-display: block;
}@font-face {
  font-family: 'Noto Naskh Arabic';
  src: url('./NotoNaskhArabic-Regular-DeuHehgT.ttf') format('truetype');
  font-weight: normal;
  font-display: block;
}body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}/* Canvas dot grid (like Lucid.app) */.canvas-bg {
  background-color: #f8f9fa;
  background-image: radial-gradient(circle, #c5c8cc 1px, transparent 1px);
  background-size: 24px 24px;
  transition: background-color 0.3s;
}.dark .canvas-bg {
  background-color: #0c0a0f;
  background-image: radial-gradient(circle, #27272a 1px, transparent 1px);
}/* Urdu text in nodes */.urdu-text {
  font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
  direction: rtl;
  text-align: right;
  line-height: 2.0;   /* CRITICAL: Nastaliq overlaps without this */
  unicode-bidi: bidi-override;
}/* Arabic text in nodes */.arabic-text {
  font-family: 'Noto Naskh Arabic', 'Traditional Arabic', serif;
  direction: rtl;
  text-align: right;
  line-height: 1.8;
}/* RTL sidebar layout */.rtl-ui {
  direction: rtl;
}.rtl-ui .left-panel {
  right: 0;
  left: auto;
}/* React Flow overrides */.react-flow__node {
  transition: box-shadow 0.2s, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.2s, height 0.2s;
}.react-flow__node.dragging,
.react-flow__node:active {
  transition: transform 0s !important;
}.react-flow__node p {
  margin: 0;
  padding: 0;
}.react-flow__edge {
  cursor: pointer;
}/* Connection dot hover state */.react-flow__handle {
  width: 10px !important;
  height: 10px !important;
  background: #2563EB !important;
  border: 2px solid white !important;
  opacity: 0;
  transition: opacity 0.15s;
}.react-flow__node:hover .react-flow__handle {
  opacity: 1;
}/* For hiding React Flow watermark if desired, though usually kept for free versions */.react-flow__attribution {
  display: none;
}/* FIX for html-to-image exporting missing edges */.react-flow__edges svg {
  overflow: visible !important;
}.react-flow__edge-path {
  stroke: var(--xy-edge-stroke, #9ca3af);
}@media print {
  /* Hide the main app UI when printing */
  #root { display: none !important; }
  
  /* Show the print slicing container */
  #print-root {
    display: block !important;
    position: absolute; top: 0; left: 0; width: 100%; margin: 0; padding: 0; background: white;
  }

  /* Reset body/html for print */
  body, html { margin: 0; padding: 0; background: white; min-height: 100%; }

  /* Force background graphics to print */
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  
  /* Ensure page breaks work */
  .print-page {
    page-break-after: always; -moz-column-break-after: page; break-after: page; position: relative; overflow: hidden; background: white;
  }
}#print-root { display: none; }/* Format Painter Cursor styling */.cursor-format-painter,
.cursor-format-painter * {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m12 22 1-1c1.4-1.4 2.4-3.2 3-5.2L18 9l-5-5-6.8 2C4.2 6.6 2.4 7.6 1 9l-1 1 2 2 1 1-1 1 2 2 1 1-1 1 2 2 1 1 2 2z'/><path d='m17 4 3 3'/></svg>") 0 24, cell !important;
}.last\:border-b-0:last-child{
  border-bottom-width: 0px;
}.hover\:-translate-y-0\.5:hover{
  --tw-translate-y: -0.125rem;
  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));
}.hover\:scale-110:hover{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  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));
}.hover\:border-blue-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}.hover\:border-gray-400:hover{
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}.hover\:border-red-200:hover{
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}.hover\:bg-blue-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}.hover\:bg-emerald-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
}.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}.hover\:bg-indigo-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}.hover\:bg-indigo-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
}.hover\:bg-neutral-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}.hover\:bg-primary-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-primary-100) / var(--tw-bg-opacity, 1));
}.hover\:bg-primary-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity, 1));
}.hover\:bg-red-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}.hover\:bg-red-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}.hover\:bg-red-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}.hover\:bg-slate-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}.hover\:bg-slate-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}.hover\:bg-slate-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}.hover\:bg-zinc-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
}.hover\:from-indigo-700:hover{
  --tw-gradient-from: #4338ca var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(67 56 202 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}.hover\:to-purple-700:hover{
  --tw-gradient-to: #7e22ce var(--tw-gradient-to-position);
}.hover\:text-blue-600:hover{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}.hover\:text-gray-600:hover{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}.hover\:text-gray-700:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}.hover\:text-gray-900:hover{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}.hover\:text-indigo-600:hover{
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}.hover\:text-red-600:hover{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}.hover\:text-slate-600:hover{
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.hover\:underline:hover{
  text-decoration-line: underline;
}.hover\:shadow-lg:hover{
  --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);
}.hover\:shadow-md:hover{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.hover\:shadow-sm:hover{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.focus\:border-blue-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}.focus\:border-emerald-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
}.focus\:border-indigo-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
}.focus\:border-primary-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(var(--color-primary-500) / var(--tw-border-opacity, 1));
}.focus\:bg-primary-500:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-primary-500) / var(--tw-bg-opacity, 1));
}.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}.focus\:ring-1: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(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\:ring-2: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(2px + 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\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}.focus\:ring-indigo-100:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(224 231 255 / var(--tw-ring-opacity, 1));
}.focus\:ring-indigo-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
}.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));
}.active\:scale-\[0\.98\]:active{
  --tw-scale-x: 0.98;
  --tw-scale-y: 0.98;
  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));
}.active\:bg-indigo-800:active{
  --tw-bg-opacity: 1;
  background-color: rgb(55 48 163 / var(--tw-bg-opacity, 1));
}.disabled\:opacity-50:disabled{
  opacity: 0.5;
}.group:hover .group-hover\:bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}.group:hover .group-hover\:opacity-100{
  opacity: 1;
}.dark\:border-zinc-700:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
}.dark\:border-zinc-800:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
}.dark\:border-zinc-800\/60:is(.dark *){
  border-color: rgb(39 39 42 / 0.6);
}.dark\:border-zinc-800\/80:is(.dark *){
  border-color: rgb(39 39 42 / 0.8);
}.dark\:bg-indigo-900\/60:is(.dark *){
  background-color: rgb(49 46 129 / 0.6);
}.dark\:bg-indigo-950\/40:is(.dark *){
  background-color: rgb(30 27 75 / 0.4);
}.dark\:bg-secondary-900:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-secondary-900) / var(--tw-bg-opacity, 1));
}.dark\:bg-zinc-800:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
}.dark\:bg-zinc-900:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
}.dark\:bg-zinc-950:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
}.dark\:text-gray-100:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}.dark\:text-gray-200:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}.dark\:text-gray-300:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}.dark\:text-gray-400:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}.dark\:text-gray-500:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}.dark\:text-green-400:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}.dark\:text-indigo-400:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(129 140 248 / var(--tw-text-opacity, 1));
}.dark\:text-white:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.dark\:shadow-none:is(.dark *){
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.dark\:hover\:border-zinc-600:hover:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
}.dark\:hover\:bg-zinc-700:hover:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
}.dark\:hover\:bg-zinc-800:hover:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
}.dark\:hover\:bg-zinc-900:hover:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
}.dark\:hover\:text-gray-200:hover:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}

