.vue-flow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  direction: ltr;
}

.vue-flow__container {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.vue-flow__pane {
  z-index: 1;
}

.vue-flow__pane.draggable {
    cursor: grab;
  }

.vue-flow__pane.selection {
    cursor: pointer;
  }

.vue-flow__pane.dragging {
    cursor: grabbing;
  }

.vue-flow__transformationpane {
  transform-origin: 0 0;
  z-index: 2;
  pointer-events: none;
}

.vue-flow__viewport {
  z-index: 4;
  overflow: clip;
}

.vue-flow__selection {
  z-index: 6;
}

.vue-flow__edge-labels {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.vue-flow__nodesselection-rect:focus,
.vue-flow__nodesselection-rect:focus-visible {
  outline: none;
}

.vue-flow .vue-flow__edges {
  pointer-events: none;
  overflow: visible;
}

.vue-flow__edge-path,
.vue-flow__connection-path {
  stroke: #b1b1b7;
  stroke-width: 1;
  fill: none;
}

.vue-flow__edge {
  pointer-events: visibleStroke;
  cursor: pointer;
}

.vue-flow__edge.animated path {
    stroke-dasharray: 5;
    animation: dashdraw 0.5s linear infinite;
  }

.vue-flow__edge.animated path.vue-flow__edge-interaction {
    stroke-dasharray: none;
    animation: none;
  }

.vue-flow__edge.inactive {
    pointer-events: none;
  }

.vue-flow__edge.selected,
  .vue-flow__edge:focus,
  .vue-flow__edge:focus-visible {
    outline: none;
  }

.vue-flow__edge.selected .vue-flow__edge-path,
  .vue-flow__edge:focus .vue-flow__edge-path,
  .vue-flow__edge:focus-visible .vue-flow__edge-path {
    stroke: #555;
  }

.vue-flow__edge-textwrapper {
    pointer-events: all;
  }

.vue-flow__edge-textbg {
    fill: white;
  }

.vue-flow__edge-text {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }

.vue-flow__connection {
  pointer-events: none;
}

.vue-flow__connection .animated {
    stroke-dasharray: 5;
    animation: dashdraw 0.5s linear infinite;
  }

.vue-flow__connectionline {
  z-index: 1001;
}

.vue-flow__nodes {
  pointer-events: none;
  transform-origin: 0 0;
}

.vue-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;
}

.vue-flow__node.draggable {
    cursor: grab;
    pointer-events: all;
  }

.vue-flow__node.draggable.dragging {
      cursor: grabbing;
    }

.vue-flow__nodesselection {
  z-index: 3;
  transform-origin: left top;
  pointer-events: none;
}

.vue-flow__nodesselection-rect {
    position: absolute;
    pointer-events: all;
    cursor: grab;
  }

.vue-flow__nodesselection-rect.dragging {
      cursor: grabbing;
    }

.vue-flow__handle {
  position: absolute;
  pointer-events: none;
  min-width: 5px;
  min-height: 5px;
}

.vue-flow__handle.connectable {
    pointer-events: all;
    cursor: crosshair;
  }

.vue-flow__handle-bottom {
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
  }

.vue-flow__handle-top {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }

.vue-flow__handle-left {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
  }

.vue-flow__handle-right {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
  }

.vue-flow__edgeupdater {
  cursor: move;
  pointer-events: all;
}

.vue-flow__panel {
  position: absolute;
  z-index: 5;
  margin: 15px;
}

.vue-flow__panel.top {
    top: 0;
  }

.vue-flow__panel.bottom {
    bottom: 0;
  }

.vue-flow__panel.left {
    left: 0;
  }

.vue-flow__panel.right {
    right: 0;
  }

.vue-flow__panel.center {
    left: 50%;
    transform: translateX(-50%);
  }

@keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}
:root {
  --vf-node-bg: #fff;
  --vf-node-text: #222;
  --vf-connection-path: #b1b1b7;
  --vf-handle: #555;
}

.vue-flow__edge.updating .vue-flow__edge-path {
      stroke: #777;
    }

.vue-flow__edge-text {
  font-size: 10px;
}

.vue-flow__edge-textbg {
  fill: #fff;
}

.vue-flow__connection-path {
  stroke: var(--vf-connection-path);
}

.vue-flow__node {
  cursor: grab;
}

.vue-flow__node.selectable:focus,
  .vue-flow__node.selectable:focus-visible {
    outline: none;
  }

.vue-flow__node-default,
.vue-flow__node-input,
.vue-flow__node-output {
  padding: 10px;
  border-radius: 3px;
  width: 150px;
  font-size: 12px;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  color: var(--vf-node-text);
  background-color: var(--vf-node-bg);
  border-color: var(--vf-node-color);
}

.vue-flow__node-default.selected,
  .vue-flow__node-default.selected:hover,
  .vue-flow__node-input.selected,
  .vue-flow__node-input.selected:hover,
  .vue-flow__node-output.selected,
  .vue-flow__node-output.selected:hover {
    box-shadow: 0 0 0 0.5px var(--vf-box-shadow);
  }

.vue-flow__node-default.selected,
  .vue-flow__node-default:focus,
  .vue-flow__node-default:focus-visible,
  .vue-flow__node-input.selected,
  .vue-flow__node-input:focus,
  .vue-flow__node-input:focus-visible,
  .vue-flow__node-output.selected,
  .vue-flow__node-output:focus,
  .vue-flow__node-output:focus-visible {
    outline: none;
    border: 1px solid #555;
  }

.vue-flow__node-default .vue-flow__handle, .vue-flow__node-input .vue-flow__handle, .vue-flow__node-output .vue-flow__handle {
    background: var(--vf-handle);
  }

.vue-flow__node-default.selectable:hover, .vue-flow__node-input.selectable:hover, .vue-flow__node-output.selectable:hover {
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
  }

.vue-flow__node-input {
  --vf-node-color: var(--vf-node-color, #0041d0);
  --vf-handle: var(--vf-node-color, #0041d0);
  --vf-box-shadow: var(--vf-node-color, #0041d0);

  background: var(--vf-node-bg);
  border-color: var(--vf-node-color, #0041d0);
}

.vue-flow__node-input.selected,
  .vue-flow__node-input:focus,
  .vue-flow__node-input:focus-visible {
    outline: none;
    border: 1px solid var(--vf-node-color, #0041d0);
  }

.vue-flow__node-default {
  --vf-handle: var(--vf-node-color, #1a192b);
  --vf-box-shadow: var(--vf-node-color, #1a192b);

  background: var(--vf-node-bg);
  border-color: var(--vf-node-color, #1a192b);
}

.vue-flow__node-default.selected,
  .vue-flow__node-default:focus,
  .vue-flow__node-default:focus-visible {
    outline: none;
    border: 1px solid var(--vf-node-color, #1a192b);
  }

.vue-flow__node-output {
  --vf-handle: var(--vf-node-color, #ff0072);
  --vf-box-shadow: var(--vf-node-color, #ff0072);

  background: var(--vf-node-bg);
  border-color: var(--vf-node-color, #ff0072);
}

.vue-flow__node-output.selected,
  .vue-flow__node-output:focus,
  .vue-flow__node-output:focus-visible {
    outline: none;
    border: 1px solid var(--vf-node-color, #ff0072);
  }

.vue-flow__nodesselection-rect,
.vue-flow__selection {
  background: rgba(0, 89, 220, 0.08);
  border: 1px dotted rgba(0, 89, 220, 0.8);
}

.vue-flow__nodesselection-rect:focus,
  .vue-flow__nodesselection-rect:focus-visible,
  .vue-flow__selection:focus,
  .vue-flow__selection:focus-visible {
    outline: none;
  }

.vue-flow__handle {
  width: 6px;
  height: 6px;
  background: var(--vf-handle);
  border: 1px solid #fff;
  border-radius: 100%;
}
.vue-flow__controls {
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);
}

.vue-flow__controls-button {
  background: #fefefe;
  border: none;
  border-bottom: 1px solid #eee;
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 5px;
}

.vue-flow__controls-button svg {
  width: 100%;
  max-width: 12px;
  max-height: 12px;
}

.vue-flow__controls-button:hover {
  background: #f4f4f4;
}

.vue-flow__controls-button:disabled {
  pointer-events: none;
}

.vue-flow__controls-button:disabled svg {
  fill-opacity: 0.4;
}
.vue-flow__minimap {
  background-color: #fff;
}

.vue-flow__minimap.pannable {
  cursor: grab;
}

.vue-flow__minimap.dragging {
  cursor: grabbing;
}

.vue-flow__minimap-mask.pannable {
  cursor: grab;
}

/* Add any component-specific styles here */

.fade-enter-active[data-v-8fa8e70e], .fade-leave-active[data-v-8fa8e70e] {
    transition: opacity 0.3s;
}
.fade-enter-from[data-v-8fa8e70e], .fade-leave-to[data-v-8fa8e70e] {
    opacity: 0;
}

.fade-enter-active[data-v-5492b599], .fade-leave-active[data-v-5492b599] {
    transition: opacity 0.3s;
}
.fade-enter-from[data-v-5492b599], .fade-leave-to[data-v-5492b599] {
    opacity: 0;
}
/* Fade in animation for waiting indicator icon */
@keyframes fade-in-5492b599 {
0%, 100% {
        opacity: 0.3;
}
50% {
        opacity: 1;
}
}
.animate-fade-in[data-v-5492b599] {
    animation: fade-in-5492b599 2s ease-in-out infinite;
}

/* Expand transition for Quick View */
.expand-enter-active[data-v-b7a62ac5], .expand-leave-active[data-v-b7a62ac5] {
    transition: all 0.3s ease;
    max-height: 500px;
    overflow: hidden;
}
.expand-enter-from[data-v-b7a62ac5], .expand-leave-to[data-v-b7a62ac5] {
    max-height: 0;
    opacity: 0;
}
/* Fade in animation for streaming tool indicator */
@keyframes fade-in-b7a62ac5 {
0%, 100% {
        opacity: 0.3;
}
50% {
        opacity: 1;
}
}
.animate-fade-in[data-v-b7a62ac5] {
    animation: fade-in-b7a62ac5 2s ease-in-out infinite;
}
/* Prose styles for markdown rendering */
.prose[data-v-b7a62ac5] h1,
.prose[data-v-b7a62ac5] h2,
.prose[data-v-b7a62ac5] h3 {
    font-weight: 600;
    margin-top: 1em;
    margin-bottom: 0.5em;
}
.prose[data-v-b7a62ac5] p {
    margin-bottom: 1em;
}
.prose[data-v-b7a62ac5] ul,
.prose[data-v-b7a62ac5] ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}
.prose[data-v-b7a62ac5] code {
    background: rgba(0, 0, 0, 0.05);
    padding: 0.2em 0.4em;
    border-radius: 0.25em;
    font-size: 0.875em;
}
.prose-invert[data-v-b7a62ac5] code {
    background: rgba(255, 255, 255, 0.1);
}
.prose[data-v-b7a62ac5] pre {
    background: rgba(0, 0, 0, 0.05);
    padding: 1em;
    border-radius: 0.5em;
    overflow-x: auto;
    margin-bottom: 1em;
}
.prose-invert[data-v-b7a62ac5] pre {
    background: rgba(255, 255, 255, 0.05);
}

.modal-enter-active[data-v-174ee3a3],
.modal-leave-active[data-v-174ee3a3] {
    transition: opacity 0.3s ease;
}
.modal-enter-from[data-v-174ee3a3],
.modal-leave-to[data-v-174ee3a3] {
    opacity: 0;
}

/* Animations handled by Tailwind classes */

/* Component-specific styles if needed */

/* Component-specific styles if needed */

/* Fade transition for overlay */
.fade-enter-active[data-v-322317d1],
.fade-leave-active[data-v-322317d1] {
    transition: opacity 0.2s ease;
}
.fade-enter-from[data-v-322317d1],
.fade-leave-to[data-v-322317d1] {
    opacity: 0;
}
/* Subtle bounce animation */
@keyframes bounce-subtle-322317d1 {
0%, 100% {
        transform: translateY(0);
}
50% {
        transform: translateY(-10px);
}
}
.animate-bounce-subtle[data-v-322317d1] {
    animation: bounce-subtle-322317d1 1.5s ease-in-out infinite;
}

/* Component-specific styles */

.line-clamp-3[data-v-45896ddd] {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Component-specific styles */

.line-clamp-1[data-v-8c91caa9] {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2[data-v-a8e93666] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Modal animations */
.fixed[data-v-17a45d22] {
    animation: fadeIn-17a45d22 0.2s ease-out;
}
@keyframes fadeIn-17a45d22 {
from {
        opacity: 0;
}
to {
        opacity: 1;
}
}
/* Smooth transitions */
.transition-all[data-v-17a45d22] {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-colors[data-v-17a45d22] {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
/* Scrollbar styling */
.overflow-y-auto[data-v-17a45d22]::-webkit-scrollbar {
    width: 8px;
}
.overflow-y-auto[data-v-17a45d22]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.overflow-y-auto[data-v-17a45d22]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
.overflow-y-auto[data-v-17a45d22]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Subtle pulse animation for AI Generate button */
@keyframes pulse-subtle-5fd76bef {
0%, 100% {
        opacity: 1;
}
50% {
        opacity: 0.95;
}
}
.animate-pulse-subtle[data-v-5fd76bef] {
    animation: pulse-subtle-5fd76bef 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Smooth transitions */
.transition-opacity[data-v-dbf46d27] {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}
.transition-colors[data-v-dbf46d27] {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
/* Custom scrollbar */
.overflow-y-auto[data-v-dbf46d27]::-webkit-scrollbar {
    width: 8px;
}
.overflow-y-auto[data-v-dbf46d27]::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.overflow-y-auto[data-v-dbf46d27]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
.overflow-y-auto[data-v-dbf46d27]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.transition-opacity[data-v-501dac14] {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

/* Custom scrollbar for JSON content */
pre[data-v-501dac14]::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}
pre[data-v-501dac14]::-webkit-scrollbar-track {
    background: #1a202c;
}
pre[data-v-501dac14]::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 4px;
}
pre[data-v-501dac14]::-webkit-scrollbar-thumb:hover {
    background: #718096;
}

.line-clamp-2[data-v-698ffa3d] { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.transition-shadow[data-v-698ffa3d] { transition: box-shadow 150ms;
}
.transition-colors[data-v-698ffa3d] { transition: color, background-color, border-color 150ms;
}

.modal-enter-active[data-v-7d13a538], .modal-leave-active[data-v-7d13a538] { transition: opacity 0.3s ease;
}
.modal-enter-from[data-v-7d13a538], .modal-leave-to[data-v-7d13a538] { opacity: 0;
}

.line-clamp-2[data-v-4cb1b4c1] { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.transition-shadow[data-v-4cb1b4c1] { transition: box-shadow 150ms;
}
.transition-colors[data-v-4cb1b4c1] { transition: color, background-color, border-color 150ms;
}
.modal-enter-active[data-v-4cb1b4c1],
.modal-leave-active[data-v-4cb1b4c1] {
    transition: opacity 0.3s ease;
}
.modal-enter-from[data-v-4cb1b4c1],
.modal-leave-to[data-v-4cb1b4c1] {
    opacity: 0;
}

.modal-enter-active[data-v-96f81e0e], .modal-leave-active[data-v-96f81e0e] { transition: opacity 0.3s ease;
}
.modal-enter-from[data-v-96f81e0e], .modal-leave-to[data-v-96f81e0e] { opacity: 0;
}

.line-clamp-2[data-v-f6022ae0] { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.transition-shadow[data-v-f6022ae0] { transition: box-shadow 150ms;
}
.transition-colors[data-v-f6022ae0] { transition: color, background-color, border-color 150ms;
}

/* Transitions */
.fade-enter-active[data-v-7b329917], .fade-leave-active[data-v-7b329917] {
    transition: opacity 0.3s ease;
}
.fade-enter-from[data-v-7b329917], .fade-leave-to[data-v-7b329917] {
    opacity: 0;
}
.slide-left-enter-active[data-v-7b329917], .slide-left-leave-active[data-v-7b329917] {
    transition: transform 0.3s ease;
}
.slide-left-enter-from[data-v-7b329917], .slide-left-leave-to[data-v-7b329917] {
    transform: translateX(100%);
}

input[type="range"][data-v-ce611362] {
    accent-color: #3b82f6;
}

/* Ensure modal appears on top of everything */
.fixed.inset-0[data-v-ce611362] {
    z-index: 9999 !important;
}

.config-section-item[data-v-39cf5982] {
@apply flex items-center gap-3 p-3 rounded-lg cursor-pointer transition-all;
@apply hover:bg-gray-100;
}
.config-section-item.active[data-v-39cf5982] {
@apply bg-blue-50 border border-blue-200;
}
.config-section-item i[data-v-39cf5982] {
@apply text-lg;
}
.line-clamp-3[data-v-39cf5982] {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.config-section-item[data-v-acb4c007] {
@apply flex items-center gap-3 p-3 rounded-lg cursor-pointer transition-all;
@apply hover:bg-gray-100;
}
.line-clamp-2[data-v-acb4c007] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3[data-v-acb4c007] {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.agent-node[data-v-416f2bfd] {
    background: white;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    min-width: 200px;
    max-width: 300px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}
.agent-node.selected[data-v-416f2bfd] {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.agent-node[data-v-416f2bfd]:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.node-header[data-v-416f2bfd] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 6px 6px 0 0;
}
.node-icon[data-v-416f2bfd] {
    font-size: 20px;
}
.node-title[data-v-416f2bfd] {
    flex: 1;
}
.node-label[data-v-416f2bfd] {
    font-weight: 600;
    font-size: 14px;
}
.node-type[data-v-416f2bfd] {
    font-size: 11px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.node-body[data-v-416f2bfd] {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}
.node-detail[data-v-416f2bfd] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #3b82f6;
    margin-bottom: 6px;
}
.node-description[data-v-416f2bfd] {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
}
.node-footer[data-v-416f2bfd] {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    padding: 8px;
    background: #f9fafb;
}
.node-action-btn[data-v-416f2bfd] {
    padding: 4px 8px;
    border: none;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    color: #6b7280;
    font-size: 12px;
    transition: all 0.2s;
}
.node-action-btn[data-v-416f2bfd]:hover {
    background: #3b82f6;
    color: white;
}
.node-action-btn.delete[data-v-416f2bfd]:hover {
    background: #ef4444;
}

.team-node[data-v-56646520] {
    background: white;
    border: 2px solid #10b981;
    border-radius: 8px;
    min-width: 200px;
    max-width: 300px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}
.team-node.selected[data-v-56646520] {
    border-color: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.team-node[data-v-56646520]:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.node-header[data-v-56646520] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 6px 6px 0 0;
}
.node-icon[data-v-56646520] {
    font-size: 20px;
}
.node-title[data-v-56646520] {
    flex: 1;
}
.node-label[data-v-56646520] {
    font-weight: 600;
    font-size: 14px;
}
.node-type[data-v-56646520] {
    font-size: 11px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.node-body[data-v-56646520] {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}
.node-detail[data-v-56646520] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #10b981;
    margin-bottom: 8px;
}
.node-members[data-v-56646520] {
    margin-bottom: 8px;
}
.members-count[data-v-56646520] {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.members-list[data-v-56646520] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.member-badge[data-v-56646520] {
    font-size: 10px;
    padding: 2px 6px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 4px;
    white-space: nowrap;
}
.member-badge.more[data-v-56646520] {
    background: #e5e7eb;
    color: #6b7280;
}
.node-description[data-v-56646520] {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
}
.node-footer[data-v-56646520] {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    padding: 8px;
    background: #f9fafb;
}
.node-action-btn[data-v-56646520] {
    padding: 4px 8px;
    border: none;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    color: #6b7280;
    font-size: 12px;
    transition: all 0.2s;
}
.node-action-btn[data-v-56646520]:hover {
    background: #10b981;
    color: white;
}
.node-action-btn.delete[data-v-56646520]:hover {
    background: #ef4444;
}

.start-node[data-v-264a4eac] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.node-content[data-v-264a4eac] {
    text-align: center;
    color: white;
}
.node-icon[data-v-264a4eac] {
    font-size: 24px;
    margin-bottom: 4px;
}
.node-label[data-v-264a4eac] {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.end-node[data-v-f4592589] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
.node-content[data-v-f4592589] {
    text-align: center;
    color: white;
}
.node-icon[data-v-f4592589] {
    font-size: 24px;
    margin-bottom: 4px;
}
.node-label[data-v-f4592589] {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vue-flow[data-v-cd9ff1ab] {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  direction: ltr;
}
.vue-flow__container[data-v-cd9ff1ab] {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.vue-flow__pane[data-v-cd9ff1ab] {
  z-index: 1;
}
.vue-flow__pane.draggable[data-v-cd9ff1ab] {
    cursor: grab;
}
.vue-flow__pane.selection[data-v-cd9ff1ab] {
    cursor: pointer;
}
.vue-flow__pane.dragging[data-v-cd9ff1ab] {
    cursor: grabbing;
}
.vue-flow__transformationpane[data-v-cd9ff1ab] {
  transform-origin: 0 0;
  z-index: 2;
  pointer-events: none;
}
.vue-flow__viewport[data-v-cd9ff1ab] {
  z-index: 4;
  overflow: clip;
}
.vue-flow__selection[data-v-cd9ff1ab] {
  z-index: 6;
}
.vue-flow__edge-labels[data-v-cd9ff1ab] {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.vue-flow__nodesselection-rect[data-v-cd9ff1ab]:focus,
.vue-flow__nodesselection-rect[data-v-cd9ff1ab]:focus-visible {
  outline: none;
}
.vue-flow .vue-flow__edges[data-v-cd9ff1ab] {
  pointer-events: none;
  overflow: visible;
}
.vue-flow__edge-path[data-v-cd9ff1ab],
.vue-flow__connection-path[data-v-cd9ff1ab] {
  stroke: #b1b1b7;
  stroke-width: 1;
  fill: none;
}
.vue-flow__edge[data-v-cd9ff1ab] {
  pointer-events: visibleStroke;
  cursor: pointer;
}
.vue-flow__edge.animated path[data-v-cd9ff1ab] {
    stroke-dasharray: 5;
    animation: dashdraw-cd9ff1ab 0.5s linear infinite;
}
.vue-flow__edge.animated path.vue-flow__edge-interaction[data-v-cd9ff1ab] {
    stroke-dasharray: none;
    animation: none;
}
.vue-flow__edge.inactive[data-v-cd9ff1ab] {
    pointer-events: none;
}
.vue-flow__edge.selected[data-v-cd9ff1ab],
  .vue-flow__edge[data-v-cd9ff1ab]:focus,
  .vue-flow__edge[data-v-cd9ff1ab]:focus-visible {
    outline: none;
}
.vue-flow__edge.selected .vue-flow__edge-path[data-v-cd9ff1ab],
  .vue-flow__edge:focus .vue-flow__edge-path[data-v-cd9ff1ab],
  .vue-flow__edge:focus-visible .vue-flow__edge-path[data-v-cd9ff1ab] {
    stroke: #555;
}
.vue-flow__edge-textwrapper[data-v-cd9ff1ab] {
    pointer-events: all;
}
.vue-flow__edge-textbg[data-v-cd9ff1ab] {
    fill: white;
}
.vue-flow__edge-text[data-v-cd9ff1ab] {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}
.vue-flow__connection[data-v-cd9ff1ab] {
  pointer-events: none;
}
.vue-flow__connection .animated[data-v-cd9ff1ab] {
    stroke-dasharray: 5;
    animation: dashdraw-cd9ff1ab 0.5s linear infinite;
}
.vue-flow__connectionline[data-v-cd9ff1ab] {
  z-index: 1001;
}
.vue-flow__nodes[data-v-cd9ff1ab] {
  pointer-events: none;
  transform-origin: 0 0;
}
.vue-flow__node[data-v-cd9ff1ab] {
  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;
}
.vue-flow__node.draggable[data-v-cd9ff1ab] {
    cursor: grab;
    pointer-events: all;
}
.vue-flow__node.draggable.dragging[data-v-cd9ff1ab] {
      cursor: grabbing;
}
.vue-flow__nodesselection[data-v-cd9ff1ab] {
  z-index: 3;
  transform-origin: left top;
  pointer-events: none;
}
.vue-flow__nodesselection-rect[data-v-cd9ff1ab] {
    position: absolute;
    pointer-events: all;
    cursor: grab;
}
.vue-flow__nodesselection-rect.dragging[data-v-cd9ff1ab] {
      cursor: grabbing;
}
.vue-flow__handle[data-v-cd9ff1ab] {
  position: absolute;
  pointer-events: none;
  min-width: 5px;
  min-height: 5px;
}
.vue-flow__handle.connectable[data-v-cd9ff1ab] {
    pointer-events: all;
    cursor: crosshair;
}
.vue-flow__handle-bottom[data-v-cd9ff1ab] {
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
}
.vue-flow__handle-top[data-v-cd9ff1ab] {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
}
.vue-flow__handle-left[data-v-cd9ff1ab] {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}
.vue-flow__handle-right[data-v-cd9ff1ab] {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}
.vue-flow__edgeupdater[data-v-cd9ff1ab] {
  cursor: move;
  pointer-events: all;
}
.vue-flow__panel[data-v-cd9ff1ab] {
  position: absolute;
  z-index: 5;
  margin: 15px;
}
.vue-flow__panel.top[data-v-cd9ff1ab] {
    top: 0;
}
.vue-flow__panel.bottom[data-v-cd9ff1ab] {
    bottom: 0;
}
.vue-flow__panel.left[data-v-cd9ff1ab] {
    left: 0;
}
.vue-flow__panel.right[data-v-cd9ff1ab] {
    right: 0;
}
.vue-flow__panel.center[data-v-cd9ff1ab] {
    left: 50%;
    transform: translateX(-50%);
}
@keyframes dashdraw-cd9ff1ab {
from {
    stroke-dashoffset: 10;
}
}
[data-v-cd9ff1ab]:root {
  --vf-node-bg: #fff;
  --vf-node-text: #222;
  --vf-connection-path: #b1b1b7;
  --vf-handle: #555;
}
.vue-flow__edge.updating .vue-flow__edge-path[data-v-cd9ff1ab] {
      stroke: #777;
}
.vue-flow__edge-text[data-v-cd9ff1ab] {
  font-size: 10px;
}
.vue-flow__edge-textbg[data-v-cd9ff1ab] {
  fill: #fff;
}
.vue-flow__connection-path[data-v-cd9ff1ab] {
  stroke: var(--vf-connection-path);
}
.vue-flow__node[data-v-cd9ff1ab] {
  cursor: grab;
}
.vue-flow__node.selectable[data-v-cd9ff1ab]:focus,
  .vue-flow__node.selectable[data-v-cd9ff1ab]:focus-visible {
    outline: none;
}
.vue-flow__node-default[data-v-cd9ff1ab],
.vue-flow__node-input[data-v-cd9ff1ab],
.vue-flow__node-output[data-v-cd9ff1ab] {
  padding: 10px;
  border-radius: 3px;
  width: 150px;
  font-size: 12px;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  color: var(--vf-node-text);
  background-color: var(--vf-node-bg);
  border-color: var(--vf-node-color);
}
.vue-flow__node-default.selected[data-v-cd9ff1ab],
  .vue-flow__node-default.selected[data-v-cd9ff1ab]:hover,
  .vue-flow__node-input.selected[data-v-cd9ff1ab],
  .vue-flow__node-input.selected[data-v-cd9ff1ab]:hover,
  .vue-flow__node-output.selected[data-v-cd9ff1ab],
  .vue-flow__node-output.selected[data-v-cd9ff1ab]:hover {
    box-shadow: 0 0 0 0.5px var(--vf-box-shadow);
}
.vue-flow__node-default.selected[data-v-cd9ff1ab],
  .vue-flow__node-default[data-v-cd9ff1ab]:focus,
  .vue-flow__node-default[data-v-cd9ff1ab]:focus-visible,
  .vue-flow__node-input.selected[data-v-cd9ff1ab],
  .vue-flow__node-input[data-v-cd9ff1ab]:focus,
  .vue-flow__node-input[data-v-cd9ff1ab]:focus-visible,
  .vue-flow__node-output.selected[data-v-cd9ff1ab],
  .vue-flow__node-output[data-v-cd9ff1ab]:focus,
  .vue-flow__node-output[data-v-cd9ff1ab]:focus-visible {
    outline: none;
    border: 1px solid #555;
}
.vue-flow__node-default .vue-flow__handle[data-v-cd9ff1ab], .vue-flow__node-input .vue-flow__handle[data-v-cd9ff1ab], .vue-flow__node-output .vue-flow__handle[data-v-cd9ff1ab] {
    background: var(--vf-handle);
}
.vue-flow__node-default.selectable[data-v-cd9ff1ab]:hover, .vue-flow__node-input.selectable[data-v-cd9ff1ab]:hover, .vue-flow__node-output.selectable[data-v-cd9ff1ab]:hover {
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
}
.vue-flow__node-input[data-v-cd9ff1ab] {
  --vf-node-color: var(--vf-node-color, #0041d0);
  --vf-handle: var(--vf-node-color, #0041d0);
  --vf-box-shadow: var(--vf-node-color, #0041d0);

  background: var(--vf-node-bg);
  border-color: var(--vf-node-color, #0041d0);
}
.vue-flow__node-input.selected[data-v-cd9ff1ab],
  .vue-flow__node-input[data-v-cd9ff1ab]:focus,
  .vue-flow__node-input[data-v-cd9ff1ab]:focus-visible {
    outline: none;
    border: 1px solid var(--vf-node-color, #0041d0);
}
.vue-flow__node-default[data-v-cd9ff1ab] {
  --vf-handle: var(--vf-node-color, #1a192b);
  --vf-box-shadow: var(--vf-node-color, #1a192b);

  background: var(--vf-node-bg);
  border-color: var(--vf-node-color, #1a192b);
}
.vue-flow__node-default.selected[data-v-cd9ff1ab],
  .vue-flow__node-default[data-v-cd9ff1ab]:focus,
  .vue-flow__node-default[data-v-cd9ff1ab]:focus-visible {
    outline: none;
    border: 1px solid var(--vf-node-color, #1a192b);
}
.vue-flow__node-output[data-v-cd9ff1ab] {
  --vf-handle: var(--vf-node-color, #ff0072);
  --vf-box-shadow: var(--vf-node-color, #ff0072);

  background: var(--vf-node-bg);
  border-color: var(--vf-node-color, #ff0072);
}
.vue-flow__node-output.selected[data-v-cd9ff1ab],
  .vue-flow__node-output[data-v-cd9ff1ab]:focus,
  .vue-flow__node-output[data-v-cd9ff1ab]:focus-visible {
    outline: none;
    border: 1px solid var(--vf-node-color, #ff0072);
}
.vue-flow__nodesselection-rect[data-v-cd9ff1ab],
.vue-flow__selection[data-v-cd9ff1ab] {
  background: rgba(0, 89, 220, 0.08);
  border: 1px dotted rgba(0, 89, 220, 0.8);
}
.vue-flow__nodesselection-rect[data-v-cd9ff1ab]:focus,
  .vue-flow__nodesselection-rect[data-v-cd9ff1ab]:focus-visible,
  .vue-flow__selection[data-v-cd9ff1ab]:focus,
  .vue-flow__selection[data-v-cd9ff1ab]:focus-visible {
    outline: none;
}
.vue-flow__handle[data-v-cd9ff1ab] {
  width: 6px;
  height: 6px;
  background: var(--vf-handle);
  border: 1px solid #fff;
  border-radius: 100%;
}
.vue-flow__controls[data-v-cd9ff1ab] {
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);
}
.vue-flow__controls-button[data-v-cd9ff1ab] {
  background: #fefefe;
  border: none;
  border-bottom: 1px solid #eee;
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 5px;
}
.vue-flow__controls-button svg[data-v-cd9ff1ab] {
  width: 100%;
  max-width: 12px;
  max-height: 12px;
}
.vue-flow__controls-button[data-v-cd9ff1ab]:hover {
  background: #f4f4f4;
}
.vue-flow__controls-button[data-v-cd9ff1ab]:disabled {
  pointer-events: none;
}
.vue-flow__controls-button:disabled svg[data-v-cd9ff1ab] {
  fill-opacity: 0.4;
}
.vue-flow__minimap[data-v-cd9ff1ab] {
  background-color: #fff;
}
.vue-flow__minimap.pannable[data-v-cd9ff1ab] {
  cursor: grab;
}
.vue-flow__minimap.dragging[data-v-cd9ff1ab] {
  cursor: grabbing;
}
.vue-flow__minimap-mask.pannable[data-v-cd9ff1ab] {
  cursor: grab;
}
.workflow-visual-builder[data-v-cd9ff1ab] {
    height: 100vh;
}
.node-palette-item[data-v-cd9ff1ab] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}
.node-palette-item[data-v-cd9ff1ab]:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-1px);
}
.node-palette-item i[data-v-cd9ff1ab] {
    font-size: 16px;
}
.vue-flow-container[data-v-cd9ff1ab] {
    background: #f9fafb;
}
.config-panel[data-v-cd9ff1ab] {
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.05);
}
.slide-enter-active[data-v-cd9ff1ab],
.slide-leave-active[data-v-cd9ff1ab] {
    transition: transform 0.3s ease;
}
.slide-enter-from[data-v-cd9ff1ab] {
    transform: translateX(100%);
}
.slide-leave-to[data-v-cd9ff1ab] {
    transform: translateX(100%);
}

/* Tab transition animations */
.transition-colors[data-v-467f9d23] {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors[data-v-3743ac41] {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-all[data-v-3743ac41] {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors[data-v-7985a573] {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-all[data-v-7985a573] {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Smooth transitions */
.transition-colors[data-v-46395c94] {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
