.dashboard-node {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid transparent;
  cursor: move;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.2s ease;
  --node-theme-color: #2196F3;
  --node-theme-color-light: rgba(33, 150, 243, 0.1);
}
.dashboard-node:hover {
  border-color: var(--node-theme-color);
}
.dashboard-node.selected, .dashboard-node[data-selected=true] {
  border-color: var(--node-theme-color);
}
.dashboard-node .connector-dot {
  background: var(--node-theme-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  cursor: crosshair;
}
.dashboard-node .connector-dot.connector-dot-left {
  left: -10px;
}
.dashboard-node .connector-dot.connector-dot-right {
  right: -10px;
}
.dashboard-node .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.dashboard-node:hover .connector-dot {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.base-node-v2-body {
  flex: 1;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  min-height: 40px;
}

.node-content-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.node-content-container .node-content-elements {
  flex: 1;
  overflow: auto;
  padding: 16px 26px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  min-height: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
}

/* Custom Dropdown Styling - Dashboard specific */
.custom-dropdown {
  position: relative;
  display: inline-block;
}

.custom-dropdown-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  width: max-content;
  min-width: 150px;
  color: #000000 !important;
}

.custom-dropdown-label {
  flex: 1;
  text-transform: capitalize;
  white-space: nowrap;
  color: #000000 !important;
}

.custom-dropdown-arrow {
  font-size: 18px;
  transition: transform 0.2s;
  flex-shrink: 0;
  color: #000000 !important;
}

.custom-dropdown.open .custom-dropdown-arrow {
  transform: rotate(180deg);
}

.custom-dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 100;
  max-height: 300px;
  overflow-y: auto;
  width: max-content;
  min-width: 100%;
}

.custom-dropdown.open .custom-dropdown-options {
  display: block;
}

.custom-dropdown-option {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.15s;
  white-space: nowrap;
  color: #000000 !important;
  background: #ffffff !important;
}

.custom-dropdown-option:hover {
  background: #f0f0f0 !important;
  color: #000000 !important;
}

.custom-dropdown-option.active {
  background: var(--accent-color) !important;
  color: white !important;
}

#cognitivePrimitivesCommandBar {
  display: none !important;
  position: fixed;
  top: 100px;
  left: 100px;
  z-index: 11000;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 20px 98px 30px;
  overflow: visible;
}
#cognitivePrimitivesCommandBar .draggableContainerGrabHandler {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: #2196F3;
  border-radius: 8px 0 4px;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#cognitivePrimitivesCommandBar .draggableContainerGrabHandler:hover {
  background: rgb(11.5384615385, 124.0384615385, 213.4615384615);
}
#cognitivePrimitivesCommandBar .draggableContainerGrabHandler:active {
  cursor: grabbing;
}
#cognitivePrimitivesCommandBar .draggableContainerGrabHandler span.material-symbols-outlined {
  font-size: 16px;
  color: white;
  user-select: none;
}

#topRightCognitiveButtonContainer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 8px;
  overflow: visible;
}

.cognitive-icon-toolbar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-left: auto;
  margin-right: 12px;
  overflow: visible;
}

.cognitive-toolbar-section-wrapper[data-category=global] {
  border-left: 1px solid #ddd;
  padding-left: 15px;
}

.cognitive-toolbar-section-wrapper[data-category=rules] {
  border-left: 1px solid #ddd;
  padding-left: 15px;
}

.cognitive-toolbar-section-wrapper[data-category=system] {
  padding-left: 5px;
}

.cognitive-toolbar-section-wrapper[data-category=content] {
  border-right: 1px solid #ddd;
  padding-right: 15px;
}

.cognitive-toolbar-section-wrapper[data-category=actions] {
  border-right: 1px solid #ddd;
  padding-right: 15px;
}

.cognitive-toolbar-section-wrapper[data-category=TrustClient] {
  border-left: 1px solid #ddd;
  padding-left: 15px;
}

.cognitive-toolbar-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 140px;
  height: auto;
  overflow: visible;
}
.cognitive-toolbar-section-wrapper .cognitive-section-label {
  font-size: 9px;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.8px;
  text-align: center;
  margin-bottom: 10px;
  border-radius: 25px;
  width: fit-content;
  padding: 2px 16px;
  background-color: #f5f5f5;
}

.cognitive-toolbar-section-container {
  display: flex;
  align-items: center;
  gap: 12px 4px;
  flex-wrap: wrap;
  max-width: 200px;
  overflow: visible;
}

.cognitive-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 64px;
}
.cognitive-button-wrapper button.cognitive-panel-icon {
  width: 32px;
  height: 32px;
  border: 2px solid;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  padding: 0;
  position: relative;
  pointer-events: all;
}
.cognitive-button-wrapper button.cognitive-panel-icon span.material-symbols-outlined {
  font-size: 18px;
  pointer-events: none;
}
.cognitive-button-wrapper button.cognitive-panel-icon div {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid white;
  pointer-events: none;
}
.cognitive-button-wrapper .cognitive-button-label {
  color: #666;
  font-weight: 500;
  text-align: center;
  user-select: none;
  letter-spacing: 0.5px;
  pointer-events: none;
  font-size: 10px;
}

#cognitive-icon-add-json {
  border-color: #FFC107;
}
#cognitive-icon-add-json span.material-symbols-outlined {
  color: #FFC107;
}
#cognitive-icon-add-json div {
  background: #FFC107;
}

#cognitive-icon-add-md {
  border-color: #9C27B0;
}
#cognitive-icon-add-md span.material-symbols-outlined {
  color: #9C27B0;
}
#cognitive-icon-add-md div {
  background: #9C27B0;
}

#cognitive-icon-add-csv {
  border-color: #00BCD4;
}
#cognitive-icon-add-csv span.material-symbols-outlined {
  color: #00BCD4;
}
#cognitive-icon-add-csv div {
  background: #00BCD4;
}

#cognitive-icon-add-note {
  border-color: #FF9800;
}
#cognitive-icon-add-note span.material-symbols-outlined {
  color: #FF9800;
}
#cognitive-icon-add-note div {
  background: #FF9800;
}

#cognitive-icon-add-editor {
  border-color: #4CAF50;
}
#cognitive-icon-add-editor span.material-symbols-outlined {
  color: #4CAF50;
}
#cognitive-icon-add-editor div {
  background: #4CAF50;
}

#cognitive-icon-add-arrow {
  border-color: #2196F3;
}
#cognitive-icon-add-arrow span.material-symbols-outlined {
  color: #2196F3;
}
#cognitive-icon-add-arrow div {
  background: #2196F3;
}

#cognitive-icon-add-assert {
  border-color: #E91E63;
}
#cognitive-icon-add-assert span.material-symbols-outlined {
  color: #E91E63;
}
#cognitive-icon-add-assert div {
  background: #E91E63;
}

#cognitive-icon-add-request {
  border-color: #03A9F4;
}
#cognitive-icon-add-request span.material-symbols-outlined {
  color: #03A9F4;
}
#cognitive-icon-add-request div {
  background: #03A9F4;
}

#cognitive-icon-add-response {
  border-color: #AB47BC;
}
#cognitive-icon-add-response span.material-symbols-outlined {
  color: #AB47BC;
}
#cognitive-icon-add-response div {
  background: #AB47BC;
}

#cognitive-icon-add-llm {
  border-color: #FF6B6B;
}
#cognitive-icon-add-llm span.material-symbols-outlined {
  color: #FF6B6B;
}
#cognitive-icon-add-llm div {
  background: #FF6B6B;
}

#cognitive-icon-add-ffm {
  border-color: #009688;
}
#cognitive-icon-add-ffm span.material-symbols-outlined {
  color: #009688;
}
#cognitive-icon-add-ffm div {
  background: #009688;
}

#cognitive-icon-add-events {
  border-color: #673AB7;
}
#cognitive-icon-add-events span.material-symbols-outlined {
  color: #673AB7;
}
#cognitive-icon-add-events div {
  background: #673AB7;
}

#cognitive-icon-add-ui {
  border-color: #607D8B;
}
#cognitive-icon-add-ui span.material-symbols-outlined {
  color: #607D8B;
}
#cognitive-icon-add-ui div {
  background: #607D8B;
}

#cognitive-icon-clear {
  border-color: #F44336;
}
#cognitive-icon-clear span.material-symbols-outlined {
  color: #F44336;
}

#cognitiveCommandBar {
  position: absolute;
  min-width: 120px;
  width: auto;
  height: fit-content;
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
  border: 2px solid transparent;
  cursor: move;
  transition: width 0.3s ease, height 0.3s ease, background 0.2s ease, border 0.2s ease;
}
#cognitiveCommandBar.drag-over {
  background: rgba(33, 150, 243, 0.1);
  border: 2px solid #2196F3;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
}
#cognitiveCommandBar .commandbar-header {
  padding: 12px 16px;
  border-bottom: none;
  background: transparent;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#cognitiveCommandBar .commandbar-header .commandbar-header-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
#cognitiveCommandBar .commandbar-header .commandbar-header-content .material-symbols-outlined {
  font-size: 20px;
  color: #222;
}
#cognitiveCommandBar .commandbar-header .commandbar-header-content .commandbar-title {
  font-size: 11px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.5px;
}
#cognitiveCommandBar .commandbar-header .commandbar-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
#cognitiveCommandBar .commandbar-header .commandbar-header-actions .node-side-pane-btn {
  background: transparent;
  border: none;
  color: #222;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}
#cognitiveCommandBar .commandbar-header .commandbar-header-actions .node-side-pane-btn .material-symbols-outlined {
  font-size: 18px;
}
#cognitiveCommandBar .commandbar-header .commandbar-header-actions .node-side-pane-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
#cognitiveCommandBar > div:not(.connector-dot):not(.commandbar-header) {
  flex: 1;
  display: flex;
  overflow: hidden;
  min-height: 40px;
}
#cognitiveCommandBar .commandbar-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  overflow: auto;
  min-height: 40px;
}
#cognitiveCommandBar .commandbar-content .commandbar-sections-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
#cognitiveCommandBar .commandbar-sidebar {
  width: 0;
  overflow: hidden;
  background: #f5f5f5;
  border-left: none;
  transition: width 0.3s ease;
  display: flex;
  flex-direction: column;
}
#cognitiveCommandBar .commandbar-sidebar.open {
  width: 300px;
}

.cognitive-command-bar-section-wrapper {
  padding: 12px;
  background: #f5f5f5;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.cognitive-command-bar-section-wrapper .section-header {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cognitive-command-bar-section-wrapper .section-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-node-content-section {
  position: absolute;
  min-width: 220px;
  width: auto;
  background: white;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #e0e0e0;
  cursor: move;
}
.dashboard-node-content-section .content-section-header {
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
  background: white;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-node-content-section .content-section-header .content-section-header-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-node-content-section .content-section-header .content-section-header-content .material-symbols-outlined {
  font-size: 20px;
  color: #666;
}
.dashboard-node-content-section .content-section-header .content-section-header-content .content-section-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
}
.dashboard-node-content-section .content-section-header .content-section-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-node-content-section .content-section-header .content-section-header-actions .node-side-pane-btn,
.dashboard-node-content-section .content-section-header .content-section-header-actions .node-close-btn {
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}
.dashboard-node-content-section .content-section-header .content-section-header-actions .node-side-pane-btn .material-symbols-outlined,
.dashboard-node-content-section .content-section-header .content-section-header-actions .node-close-btn .material-symbols-outlined {
  font-size: 18px;
}
.dashboard-node-content-section .content-section-header .content-section-header-actions .node-side-pane-btn:hover,
.dashboard-node-content-section .content-section-header .content-section-header-actions .node-close-btn:hover {
  background: #f5f5f5;
}
.dashboard-node-content-section .content-section-content {
  padding: 16px;
}
.dashboard-node-content-section .content-section-content .section-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-node-help .help-viz-content {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  position: relative;
}
.dashboard-node-help .help-viz-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.dashboard-node[data-node-type=command-bar][data-background-transparent=true] {
  background: transparent !important;
  box-shadow: none !important;
}
.dashboard-node[data-node-type=command-bar][data-background-transparent=true] .base-node-v2-body,
.dashboard-node[data-node-type=command-bar][data-background-transparent=true] .node-content-container,
.dashboard-node[data-node-type=command-bar][data-background-transparent=true] .node-content-elements {
  background: transparent !important;
}
.dashboard-node[data-node-type=command-bar][data-background-transparent=true] .cmd-group {
  background: transparent !important;
  backdrop-filter: none !important;
  border: none !important;
}
.dashboard-node[data-node-type=command-bar][data-background-transparent=true] .cmd-group__buttons {
  background: transparent !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

.cmd-group {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  gap: 12px;
  position: relative;
  width: fit-content;
  --group-theme-color: #2196F3;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: perspective(1000px) translateZ(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}
.cmd-group__label {
  font-size: 10px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  transition: color 0.2s ease;
  cursor: pointer;
}
.cmd-group__label:hover {
  color: #000;
}
.cmd-group__label[data-group-active=true] {
  color: #222;
}
.cmd-group__label--inactive {
  color: #999;
}
.cmd-group__toggle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #333;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.cmd-group__toggle--off {
  background-color: #333;
  border-color: #666;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.cmd-group__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 170px;
  transition: opacity 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
  backdrop-filter: blur(5px);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08), inset 0 -1px 1px rgba(255, 255, 255, 0.6), 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cmd-group__buttons .node-container-primary-button {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  position: relative;
}
.cmd-group__buttons .node-container-primary-button div {
  background-color: var(--group-theme-color) !important;
}

.dashboard-node[data-compressed=true] .commandbar-header {
  background-color: #f5f5f5;
}
.dashboard-node[data-compressed=true][data-docked=true]:hover {
  border-color: transparent !important;
}
.dashboard-node[data-compressed=true][data-docked=true] .connector-dot {
  display: none !important;
}
.dashboard-node[data-compressed=true][data-docked=true] .node-container-primary-button .node-container-primary-button-label {
  display: block !important;
}
.dashboard-node[data-compressed=true] .cmd-group {
  margin-bottom: 0;
  padding: 0;
  gap: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
}
.dashboard-node[data-compressed=true] .cmd-group .cmd-group__wrapper {
  display: none !important;
  padding: 0 !important;
}
.dashboard-node[data-compressed=true] .cmd-group__buttons {
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  gap: 0;
  max-width: none;
  width: 100%;
}
.dashboard-node[data-compressed=true] .button-groups-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  padding-bottom: 30px;
}
.dashboard-node[data-compressed=true] .node-container-primary-button {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.dashboard-node[data-compressed=true] .node-container-primary-button .node-container-primary-button-label {
  display: none !important;
}

.button-groups-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
  min-height: fit-content;
  height: auto;
  flex: 0 0 auto;
}

.flat-button-container {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  padding-bottom: 40px;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}
.flat-button-container .node-container-primary-button {
  margin: 0 5px !important;
}

.chat-input-container {
  width: 100%;
  flex: 0 0 100%;
  order: 9999;
  padding: 12px;
  background: #ffffff;
  display: none;
}
.chat-input-container .chat-input-grid-container {
  position: relative;
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  overflow: hidden;
  transition: border-color 0.2s, background-color 0.2s;
}
.chat-input-container .chat-input-grid-container:focus-within {
  border-color: #2196F3;
  background: #ffffff;
}
.chat-input-container .chat-input-textarea {
  position: absolute;
  top: 10px;
  left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 20px);
  min-height: 40px;
  padding: 0;
  margin: 0;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  word-spacing: 0;
  border: 0;
  outline: 0;
  resize: none;
  overflow: hidden;
  background: transparent;
  color: transparent;
  caret-color: #000;
  z-index: 1;
  white-space: pre;
  cursor: text;
  -webkit-text-size-adjust: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.chat-input-container .chat-input-textarea::selection {
  background: transparent !important;
  color: transparent !important;
}
.chat-input-container .chat-input-textarea::-moz-selection {
  background: transparent !important;
  color: transparent !important;
}
.chat-input-container .chat-input-textarea::placeholder {
  color: #999;
}
.chat-input-container .chat-input-grid-overlay {
  position: absolute;
  top: 10px;
  left: 12px;
  padding: 0;
  pointer-events: none;
  z-index: 2;
  color: #000;
}
.chat-input-container .chat-grid-cell {
  position: absolute;
  width: 7.2px;
  height: 18px;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  overflow: hidden;
  color: inherit;
}

@media (prefers-color-scheme: dark) {
  .chat-input-container {
    background: #2d2d2d;
    border-top-color: #444;
  }
  .chat-input-container .chat-input-grid-container {
    background: #1e1e1e;
    border-color: #444;
  }
  .chat-input-container .chat-input-grid-container:focus-within {
    border-color: #64b5f6;
    background: #252525;
  }
  .chat-input-container .chat-input-textarea {
    caret-color: #d4d4d4;
  }
  .chat-input-container .chat-input-textarea::placeholder {
    color: #666;
  }
  .chat-input-container .chat-input-grid-overlay {
    color: #d4d4d4;
  }
}
@media (prefers-color-scheme: dark) {
  .cmd-group {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95), rgba(30, 30, 30, 0.85));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cmd-group__buttons {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.7), rgba(40, 40, 40, 0.6));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3), inset 0 -1px 1px rgba(255, 255, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  .cmd-group__label {
    color: #aaa;
  }
  .cmd-group__label:hover {
    color: #fff;
  }
  .cmd-group__label--inactive {
    color: #666;
  }
  .cmd-group__toggle {
    background-color: #fff;
    border-color: #ccc;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  .cmd-group__toggle--off {
    background-color: #555;
    border-color: #888;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  }
}
.base-node-v2 {
  position: absolute;
  background: transparent;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 32px;
  border: none;
  cursor: move;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease, height 0.3s ease;
}
.base-node-v2.no-shadow {
  box-shadow: none;
}

.dashboard-node {
  padding: 10px;
  background-color: white;
}
.dashboard-node > div:not(.connector-dot):not(.base-node-v2-header):not(.commandbar-header) {
  display: flex;
  overflow: hidden;
  min-height: 40px;
}
.dashboard-node .node-content-container {
  flex-shrink: 0;
}
.dashboard-node.is-dragging {
  pointer-events: none;
  cursor: grabbing !important;
}
.dashboard-node.is-dragging * {
  transition: none !important;
}
.dashboard-node.is-dragging .node-content-elements {
  pointer-events: none;
}
.dashboard-node .connector-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  cursor: crosshair;
}
.dashboard-node .connector-dot.connector-dot-left {
  left: -10px;
}
.dashboard-node .connector-dot.connector-dot-right {
  right: -10px;
}
.dashboard-node:hover .connector-dot {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.base-node-v2-connector-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  width: 20px;
  height: 20px;
  background: var(--connector-color, #2196F3);
  border: 2px solid white;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  cursor: crosshair;
}
.base-node-v2-connector-dot.left {
  left: -10px;
}
.base-node-v2-connector-dot.right {
  right: -10px;
}

.commandbar-header {
  padding: 12px 16px;
  border-bottom: none;
  background: transparent;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.commandbar-header .commandbar-header-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.commandbar-header .commandbar-header-content .material-symbols-outlined {
  font-size: 20px;
  color: #222;
}
.commandbar-header .commandbar-header-content .commandbar-title {
  font-size: 11px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.5px;
}
.commandbar-header .commandbar-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.commandbar-header .commandbar-header-actions button {
  background: transparent;
  border: none;
  color: #222;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}
.commandbar-header .commandbar-header-actions button .material-symbols-outlined {
  font-size: 18px;
}
.commandbar-header .commandbar-header-actions button:hover {
  background: rgba(0, 0, 0, 0.05);
}

.base-node-v2-header {
  padding: 12px 16px;
  border-bottom: none;
  background: transparent;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.base-node-v2-header.theme-light {
  background: #ffffff;
  color: #222;
}
.base-node-v2-header.theme-light .drag-handle,
.base-node-v2-header.theme-light button {
  color: #222;
}
.base-node-v2-header.theme-light button:hover {
  background: rgba(0, 0, 0, 0.05);
}
.base-node-v2-header.theme-dark {
  background: #2d2d2d;
  color: #e0e0e0;
}
.base-node-v2-header.theme-dark .drag-handle,
.base-node-v2-header.theme-dark button {
  color: #e0e0e0;
}
.base-node-v2-header.theme-dark button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.base-node-v2-header.theme-dark .title-container .type {
  color: #b0b0b0;
}
.base-node-v2-header .header-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.base-node-v2-header .header-content .drag-handle {
  font-size: 20px;
  color: #222;
}
.base-node-v2-header .header-content .title-container {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.base-node-v2-header .header-content .title-container .node-id {
  font-weight: 600;
}
.base-node-v2-header .header-content .title-container .separator {
  opacity: 0.5;
}
.base-node-v2-header .header-content .title-container .category {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.base-node-v2-header .header-content .title-container .type {
  font-weight: 500;
  font-family: "Fira Code", monospace;
  font-size: 12px;
  margin-right: 30px;
  opacity: 0.8;
  color: #444;
}
.base-node-v2-header .header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.base-node-v2-header .header-actions button {
  background: transparent;
  border: none;
  color: #222;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}
.base-node-v2-header .header-actions button .material-symbols-outlined {
  font-size: 18px;
}
.base-node-v2-header .header-actions button:hover {
  background: rgba(0, 0, 0, 0.05);
}

.base-node-v2-content-wrapper {
  flex: 1;
  display: flex;
  overflow: hidden;
  min-height: 40px;
}

.base-node-v2-content {
  flex: 1;
  overflow: auto;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 40px;
  align-items: center;
  justify-content: center;
}
.base-node-v2-content.theme-light {
  background: #ffffff;
  color: #222;
}
.base-node-v2-content.theme-dark {
  background: #1e1e1e;
  color: #e0e0e0;
}

.node-container-sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 0;
  opacity: 0;
  background: #f5f5f5;
  padding: 0;
  font-size: 14px;
  color: #333;
  flex-shrink: 0;
  overflow: hidden;
  transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.dashboard-node[data-sidebar_visible=true] .node-container-sidebar-wrapper {
  width: 300px;
  opacity: 1;
  padding: 16px;
}

.base-node-v2-sidebar {
  width: 0;
  overflow: hidden;
  background: #f5f5f5;
  border-left: none;
  transition: width 0.3s ease;
  display: flex;
  flex-direction: column;
}
.base-node-v2-sidebar.open {
  width: 300px;
}
.base-node-v2-sidebar.theme-light {
  background: #f5f5f5;
}
.base-node-v2-sidebar.theme-light .sidebar-content {
  color: #222;
}
.base-node-v2-sidebar.theme-light .settings-btn {
  background: white;
  border: 1px solid #ddd;
  color: #222;
}
.base-node-v2-sidebar.theme-light .settings-btn:hover {
  background: #f5f5f5;
  border-color: #4CAF50;
}
.base-node-v2-sidebar.theme-light .settings-panel {
  background: white;
  border: 1px solid #ddd;
}
.base-node-v2-sidebar.theme-light .settings-panel .settings-section .label {
  color: #666;
}
.base-node-v2-sidebar.theme-light .settings-panel .settings-section .value {
  color: #333;
}
.base-node-v2-sidebar.theme-dark {
  background: #2d2d2d;
}
.base-node-v2-sidebar.theme-dark .sidebar-content {
  color: #e0e0e0;
}
.base-node-v2-sidebar.theme-dark .settings-btn {
  background: #1e1e1e;
  border: 1px solid #444;
  color: #e0e0e0;
}
.base-node-v2-sidebar.theme-dark .settings-btn .material-symbols-outlined {
  color: #66BB6A;
}
.base-node-v2-sidebar.theme-dark .settings-btn:hover {
  background: #333;
  border-color: #66BB6A;
}
.base-node-v2-sidebar.theme-dark .settings-panel {
  background: #1e1e1e;
  border: 1px solid #444;
}
.base-node-v2-sidebar.theme-dark .settings-panel .settings-section .label {
  color: #999;
}
.base-node-v2-sidebar.theme-dark .settings-panel .settings-section .value {
  color: #ccc;
}
.base-node-v2-sidebar .sidebar-content {
  flex: 1;
  overflow: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.base-node-v2-sidebar .settings-btn {
  padding: 12px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.base-node-v2-sidebar .settings-btn .material-symbols-outlined {
  font-size: 18px;
  color: #4CAF50;
}
.base-node-v2-sidebar .settings-btn span:last-child {
  font-weight: 500;
}
.base-node-v2-sidebar .settings-btn:hover {
  background: #f5f5f5;
  border-color: #4CAF50;
}
.base-node-v2-sidebar .settings-btn.expanded {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}
.base-node-v2-sidebar .settings-panel {
  display: none;
  padding: 12px;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 6px 6px;
  margin-top: -12px;
}
.base-node-v2-sidebar .settings-panel.expanded {
  display: block;
}
.base-node-v2-sidebar .settings-panel .settings-section {
  margin-bottom: 12px;
}
.base-node-v2-sidebar .settings-panel .settings-section:last-child {
  margin-bottom: 0;
}
.base-node-v2-sidebar .settings-panel .settings-section .label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.base-node-v2-sidebar .settings-panel .settings-section .value {
  font-size: 12px;
  color: #333;
  font-family: "Courier New", monospace;
  word-break: break-all;
}

.node-container-primary-button {
  position: relative;
  width: 40px;
  height: 40px;
  border: 2px solid;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(8px);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  pointer-events: all;
  overflow: visible;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), inset 0 -1px 2px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.6);
  border-color: var(--btn-color, #ccc);
}
.node-container-primary-button .material-symbols-outlined,
.node-container-primary-button .node-container-primary-button-icon {
  font-size: 20px;
}
.node-container-primary-button .node-container-primary-button-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  font-size: 8px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  color: #444;
}
.node-container-primary-button:hover {
  transform: scale(1.05) translateZ(2px);
  box-shadow: inset 0 1px 2px rgb(255, 255, 255), inset 0 -1px 2px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8);
}
.node-container-primary-button .material-symbols-outlined,
.node-container-primary-button .node-container-primary-button-icon {
  color: var(--btn-color, #666);
}
.node-container-primary-button[data-type=json] {
  border-color: #FFC107;
}
.node-container-primary-button[data-type=json] .material-symbols-outlined,
.node-container-primary-button[data-type=json] .node-container-primary-button-icon {
  color: #FFC107;
}
.node-container-primary-button[data-type=md] {
  border-color: #9C27B0;
}
.node-container-primary-button[data-type=md] .material-symbols-outlined,
.node-container-primary-button[data-type=md] .node-container-primary-button-icon {
  color: #9C27B0;
}
.node-container-primary-button[data-type=csv] {
  border-color: #00BCD4;
}
.node-container-primary-button[data-type=csv] .material-symbols-outlined,
.node-container-primary-button[data-type=csv] .node-container-primary-button-icon {
  color: #00BCD4;
}
.node-container-primary-button[data-type=note] {
  border-color: #FF9800;
}
.node-container-primary-button[data-type=note] .material-symbols-outlined,
.node-container-primary-button[data-type=note] .node-container-primary-button-icon {
  color: #FF9800;
}
.node-container-primary-button[data-type=arrow] {
  border-color: #2196F3;
}
.node-container-primary-button[data-type=arrow] .material-symbols-outlined,
.node-container-primary-button[data-type=arrow] .node-container-primary-button-icon {
  color: #2196F3;
}
.node-container-primary-button[data-type=ffm] {
  border-color: #009688;
}
.node-container-primary-button[data-type=ffm] .material-symbols-outlined,
.node-container-primary-button[data-type=ffm] .node-container-primary-button-icon {
  color: #009688;
}
.node-container-primary-button[data-type=memory] {
  border-color: #795548;
}
.node-container-primary-button[data-type=memory] .material-symbols-outlined,
.node-container-primary-button[data-type=memory] .node-container-primary-button-icon {
  color: #795548;
}
.node-container-primary-button[data-type=llm] {
  border-color: #FF6B6B;
}
.node-container-primary-button[data-type=llm] .material-symbols-outlined,
.node-container-primary-button[data-type=llm] .node-container-primary-button-icon {
  color: #FF6B6B;
}
.node-container-primary-button[data-type=assert] {
  border-color: #E91E63;
}
.node-container-primary-button[data-type=assert] .material-symbols-outlined,
.node-container-primary-button[data-type=assert] .node-container-primary-button-icon {
  color: #E91E63;
}
.node-container-primary-button[data-type=start] {
  border-color: #4CAF50;
}
.node-container-primary-button[data-type=start] .material-symbols-outlined,
.node-container-primary-button[data-type=start] .node-container-primary-button-icon {
  color: #4CAF50;
}
.node-container-primary-button[data-type=start] div {
  background: #4CAF50;
}
.node-container-primary-button[data-type=search] {
  border-color: #673AB7;
}
.node-container-primary-button[data-type=search] .material-symbols-outlined,
.node-container-primary-button[data-type=search] .node-container-primary-button-icon {
  color: #673AB7;
}
.node-container-primary-button[data-type=search] div {
  background: #673AB7;
}
.node-container-primary-button[data-type=help] {
  border-color: #03A9F4;
}
.node-container-primary-button[data-type=help] .material-symbols-outlined,
.node-container-primary-button[data-type=help] .node-container-primary-button-icon {
  color: #03A9F4;
}
.node-container-primary-button[data-type=help] div {
  background: #03A9F4;
}
.node-container-primary-button div {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid white;
  background: var(--btn-color, transparent);
  pointer-events: none;
}

.node-timestamp-display {
  font-size: 24px;
  font-family: "Fira Code", monospace;
  background-color: #151515;
  color: rgb(120, 200, 255);
  padding: 10px 30px;
  border-radius: 8px;
  width: 100%;
}

.dashboard-node[data-node_collapsed=true] > div:not(.connector-dot):not(.base-node-v2-header):not(.commandbar-header) {
  display: none;
}
.dashboard-node[data-node_collapsed=true] .commandbar-header .node-header-category,
.dashboard-node[data-node_collapsed=true] .commandbar-header .node-header-separator {
  display: none;
}
.dashboard-node[data-node_collapsed=true] .commandbar-header .commandbar-header-actions .node-play-btn,
.dashboard-node[data-node_collapsed=true] .commandbar-header .commandbar-header-actions .node-side-pane-btn,
.dashboard-node[data-node_collapsed=true] .commandbar-header .commandbar-header-actions .node-close-btn {
  display: none;
}
.dashboard-node[data-node_collapsed=true] .connector-dot {
  display: none;
}
.dashboard-node[data-node_collapsed=true] .commandbar-header {
  padding: 8px 12px;
}

.dashboard-node[data-node-type=connect][data-node_collapsed=true] .node-header-type {
  display: none;
}
.dashboard-node[data-node-type=connect][data-node_collapsed=true] .node-copy-uri-btn {
  display: none;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  overflow: hidden;
}

.sidebar-section-header {
  width: 100%;
  padding: 10px 12px;
  background: white;
  border: none;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}
.sidebar-section-header:hover {
  background: #f9f9f9;
}
.sidebar-section-header .sidebar-section-icon {
  font-size: 18px;
  color: #333;
  transition: transform 0.2s;
}
.sidebar-section-header .sidebar-section-title {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sidebar-section-header[data-expanded=true] {
  border-bottom: 1px solid #ddd;
}
.sidebar-section-header[data-expanded=true] .sidebar-section-icon {
  transform: rotate(0deg);
}
.sidebar-section-header[data-expanded=false] {
  border-bottom: none;
}
.sidebar-section-header[data-expanded=false] .sidebar-section-icon {
  transform: rotate(0deg);
}

.sidebar-section-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.sidebar-section-content[data-expanded=true] {
  max-height: 500px;
  padding: 12px;
}
.sidebar-section-content[data-expanded=false] {
  max-height: 0;
  padding: 0;
}

.sidebar-metadata-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.sidebar-metadata-item:last-child {
  margin-bottom: 0;
}
.sidebar-metadata-item .sidebar-metadata-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.5px;
}
.sidebar-metadata-item .sidebar-metadata-value {
  font-size: 12px;
  color: #333;
  font-family: "Courier New", monospace;
  word-break: break-all;
  background: #f9f9f9;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

@media (prefers-color-scheme: dark) {
  .sidebar-section {
    border-color: #444;
    background: #2d2d2d;
  }
  .sidebar-section-header {
    background: #2d2d2d;
    border-bottom-color: #444;
  }
  .sidebar-section-header:hover {
    background: #333;
  }
  .sidebar-section-header .sidebar-section-icon,
  .sidebar-section-header .sidebar-section-title {
    color: #e0e0e0;
  }
  .sidebar-metadata-item .sidebar-metadata-label {
    color: #999;
  }
  .sidebar-metadata-item .sidebar-metadata-value {
    color: #e0e0e0;
    background: #1e1e1e;
    border-color: #444;
  }
}
.dashboard-node[data-node-type=test] {
  position: absolute;
  min-width: 120px;
  width: fit-content;
  height: fit-content;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #e0e0e0;
  cursor: move;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.2s ease;
}
.dashboard-node[data-node-type=test]:hover {
  border-color: var(--node-theme-color, #2196F3);
}
.dashboard-node[data-node-type=test].selected, .dashboard-node[data-node-type=test][data-selected=true] {
  border-color: var(--node-theme-color, #2196F3);
}
.dashboard-node[data-node-type=test] .connector-dot {
  background: var(--node-theme-color, #2196F3);
}
.dashboard-node[data-node-type=test] .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.dashboard-node[data-node-type=test] .node-content-container {
  min-width: 400px;
}
.dashboard-node[data-node-type=test] .node-content-container {
  border-radius: 0 0 10px 10px;
}
.dashboard-node[data-node-type=test] .node-content-container h3 {
  margin: 0 0 8px 0;
  color: #666;
  font-size: 16px;
  font-weight: 600;
}
.dashboard-node[data-node-type=test] .node-content-container p {
  margin: 0 0 16px 0;
  font-size: 12px;
  color: #999;
  line-height: 1.4;
}
.dashboard-node[data-node-type=test] .node-content-container .test-execute-btn {
  padding: 8px 16px;
  background: #2196F3;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
}
.dashboard-node[data-node-type=test] .node-content-container .test-execute-btn:hover {
  background: #1976D2;
  box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
  transform: translateY(-1px);
}
.dashboard-node[data-node-type=test] .node-content-container .test-execute-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
}
.dashboard-node[data-node-type=test] .node-content-container .test-execute-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}
.dashboard-node[data-node-type=test] .node-content-container .test-result {
  margin-top: 16px;
  padding: 8px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 11px;
  color: #666;
  font-family: "Courier New", monospace;
  border-left: 3px solid #2196F3;
  transition: all 0.2s;
}
.dashboard-node[data-node-type=test] .node-content-container .test-result.success {
  background: #E8F5E9;
  border-left-color: #4CAF50;
  color: #2E7D32;
}
.dashboard-node[data-node-type=test] .node-content-container .test-result.error {
  background: #FFEBEE;
  border-left-color: #F44336;
  color: #C62828;
}
.dashboard-node[data-node-type=test] .node-content-container .test-result.warning {
  background: #FFF3E0;
  border-left-color: #FF9800;
  color: #E65100;
}
.dashboard-node[data-node-type=test] .base-node-v2-header {
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}
.dashboard-node[data-node-type=test] .base-node-v2-header .node-header-category {
  color: #2196F3;
}
.dashboard-node[data-node-type=test] .base-node-v2-header .node-header-type {
  color: #666;
}
.dashboard-node[data-node-type=test] .base-node-v2-header button:hover {
  background: rgba(33, 150, 243, 0.1);
}

@keyframes testPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}
.dashboard-node[data-node-type=test].executing {
  animation: testPulse 1s ease-in-out infinite;
}
.dashboard-node[data-node-type=test].executing .test-execute-btn {
  background: #FFC107;
  cursor: wait;
  pointer-events: none;
}

@media (prefers-color-scheme: dark) {
  .dashboard-node[data-node-type=test] {
    background: #2d2d2d;
    border-color: #444;
  }
  .dashboard-node[data-node-type=test]:hover {
    border-color: var(--node-theme-color, #2196F3);
  }
  .dashboard-node[data-node-type=test] .node-content-container {
    background: #2d2d2d;
  }
  .dashboard-node[data-node-type=test] .node-content-container h3 {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=test] .node-content-container p {
    color: #999;
  }
  .dashboard-node[data-node-type=test] .node-content-container .test-result {
    background: #1e1e1e;
    color: #ccc;
  }
  .dashboard-node[data-node-type=test] .node-content-container .test-result.success {
    background: #1b3a1b;
    color: #81C784;
  }
  .dashboard-node[data-node-type=test] .node-content-container .test-result.error {
    background: #3a1b1b;
    color: #E57373;
  }
  .dashboard-node[data-node-type=test] .node-content-container .test-result.warning {
    background: #3a2f1b;
    color: #FFB74D;
  }
  .dashboard-node[data-node-type=test] .base-node-v2-header {
    background: #2d2d2d;
    border-bottom-color: #444;
  }
  .dashboard-node[data-node-type=test] .base-node-v2-header .node-header-id,
  .dashboard-node[data-node-type=test] .base-node-v2-header .node-header-category,
  .dashboard-node[data-node-type=test] .base-node-v2-header .node-header-type {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=test] .base-node-v2-header .drag-handle,
  .dashboard-node[data-node-type=test] .base-node-v2-header button {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=test] .base-node-v2-header .drag-handle:hover,
  .dashboard-node[data-node-type=test] .base-node-v2-header button:hover {
    background: rgba(33, 150, 243, 0.2);
  }
}
.dashboard-node[data-node-type=slider] {
  position: absolute;
  min-width: 120px;
  width: fit-content;
  height: fit-content;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #e0e0e0;
  cursor: move;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.2s ease;
}
.dashboard-node[data-node-type=slider]:hover {
  border-color: var(--node-theme-color, #8b5cf6);
}
.dashboard-node[data-node-type=slider].selected, .dashboard-node[data-node-type=slider][data-selected=true] {
  border-color: var(--node-theme-color, #8b5cf6);
}
.dashboard-node[data-node-type=slider] .connector-dot {
  background: var(--node-theme-color, #8b5cf6);
}
.dashboard-node[data-node-type=slider] .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.dashboard-node[data-node-type=slider] .node-content-container {
  min-width: 300px;
}
.dashboard-node[data-node-type=slider] .node-content-container {
  border-radius: 0 0 10px 10px;
}
.dashboard-node[data-node-type=slider] .node-slider-display-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  border: 1px solid #dee2e6;
  width: 100%;
}
.dashboard-node[data-node-type=slider] .node-slider-channel-label {
  font-size: 13px;
  font-weight: 600;
  color: #495057;
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
}
.dashboard-node[data-node-type=slider] .node-slider-fader-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-node[data-node-type=slider] .node-slider-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.dashboard-node[data-node-type=slider] .node-slider-min-label,
.dashboard-node[data-node-type=slider] .node-slider-max-label {
  font-size: 11px;
  color: #6c757d;
  font-weight: 600;
  min-width: 35px;
}
.dashboard-node[data-node-type=slider] .node-slider-max-label {
  text-align: right;
}
.dashboard-node[data-node-type=slider] .node-slider-input-element {
  flex: 1;
  cursor: pointer;
}
.dashboard-node[data-node-type=slider] .node-slider-value-display {
  font-size: 16px;
  font-weight: 700;
  color: #2196F3;
  font-family: "Fira Code", monospace;
  text-align: center;
}
.dashboard-node[data-node-type=slider] .commandbar-header .node-header-category {
  color: var(--node-theme-color, #8b5cf6);
}
.dashboard-node[data-node-type=slider] .commandbar-header .node-header-type {
  color: #666;
}
.dashboard-node[data-node-type=slider] .commandbar-header button:hover {
  background: rgba(139, 92, 246, 0.1);
}

@media (prefers-color-scheme: dark) {
  .dashboard-node[data-node-type=slider] {
    background: #2d2d2d;
    border-color: #444;
  }
  .dashboard-node[data-node-type=slider]:hover {
    border-color: var(--node-theme-color, #8b5cf6);
  }
  .dashboard-node[data-node-type=slider] .node-content-container {
    background: #2d2d2d;
  }
  .dashboard-node[data-node-type=slider] .commandbar-header {
    background: #2d2d2d;
    border-bottom-color: #444;
  }
  .dashboard-node[data-node-type=slider] .commandbar-header .node-header-id,
  .dashboard-node[data-node-type=slider] .commandbar-header .node-header-category,
  .dashboard-node[data-node-type=slider] .commandbar-header .node-header-type {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=slider] .commandbar-header .drag-handle,
  .dashboard-node[data-node-type=slider] .commandbar-header button {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=slider] .commandbar-header .drag-handle:hover,
  .dashboard-node[data-node-type=slider] .commandbar-header button:hover {
    background: rgba(139, 92, 246, 0.2);
  }
}
.dashboard-node[data-node-type=editor] {
  position: absolute;
  min-width: 300px;
  width: auto;
  height: fit-content;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #e0e0e0;
  cursor: move;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.2s ease;
}
.dashboard-node[data-node-type=editor]:hover {
  border-color: var(--node-theme-color, #2196F3);
}
.dashboard-node[data-node-type=editor].selected, .dashboard-node[data-node-type=editor][data-selected=true] {
  border-color: var(--node-theme-color, #2196F3);
}
.dashboard-node[data-node-type=editor] .connector-dot {
  background: var(--node-theme-color, #2196F3);
}
.dashboard-node[data-node-type=editor] .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.dashboard-node[data-node-type=editor] .node-content-container {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
}
.dashboard-node[data-node-type=editor] .node-content-elements {
  position: relative;
  overflow: hidden;
  min-height: 100px;
}
.dashboard-node[data-node-type=editor] .editor-grid-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.dashboard-node[data-node-type=editor] .editor-grid-textarea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  word-spacing: 0;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  resize: none;
  overflow: hidden;
  background: transparent;
  color: transparent;
  caret-color: #000;
  z-index: 1;
  white-space: pre;
  cursor: text;
  -webkit-text-size-adjust: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.dashboard-node[data-node-type=editor] .grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  color: #000;
}
.dashboard-node[data-node-type=editor] .grid-cell {
  position: absolute;
  width: 7.2px;
  height: 18px;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  overflow: hidden;
  color: inherit;
}
.dashboard-node[data-node-type=editor] .grid-overlay.show-grid-borders .grid-cell {
  border: 0.5px solid #e0e0e0;
}
.dashboard-node[data-node-type=editor] .grid-cell.selection-highlight {
  background-color: rgba(144, 202, 249, 0.4);
}
.dashboard-node[data-node-type=editor] .editor-resize-handle {
  position: absolute;
  bottom: -5px;
  right: 9px;
  width: 20px;
  height: 20px;
  cursor: nwse-resize;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
  color: #555;
}
.dashboard-node[data-node-type=editor] .editor-resize-handle:hover .material-symbols-outlined {
  opacity: 1;
}
.dashboard-node[data-node-type=editor] .editor-resize-handle .material-symbols-outlined {
  font-size: 14px;
  color: #000;
  opacity: 0.6;
  transition: opacity 0.2s;
  pointer-events: none;
  user-select: none;
}
.dashboard-node[data-node-type=editor] .base-node-v2-header {
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}
.dashboard-node[data-node-type=editor] .base-node-v2-header .node-header-category {
  color: #2196F3;
}
.dashboard-node[data-node-type=editor] .base-node-v2-header .node-header-type {
  color: #666;
}
.dashboard-node[data-node-type=editor] .base-node-v2-header button:hover {
  background: rgba(33, 150, 243, 0.1);
}

@media (prefers-color-scheme: dark) {
  .dashboard-node[data-node-type=editor] {
    background: #2d2d2d;
    border-color: #444;
  }
  .dashboard-node[data-node-type=editor]:hover {
    border-color: var(--node-theme-color, #2196F3);
  }
  .dashboard-node[data-node-type=editor] .editor-grid-textarea {
    caret-color: #d4d4d4;
  }
  .dashboard-node[data-node-type=editor] .grid-overlay {
    color: #d4d4d4;
  }
  .dashboard-node[data-node-type=editor] .grid-overlay.show-grid-borders .grid-cell {
    border-color: #3a3a3a;
  }
  .dashboard-node[data-node-type=editor] .node-content-container {
    background: #2d2d2d;
  }
  .dashboard-node[data-node-type=editor] .base-node-v2-header {
    background: #2d2d2d;
    border-bottom-color: #444;
  }
  .dashboard-node[data-node-type=editor] .base-node-v2-header .node-header-id,
  .dashboard-node[data-node-type=editor] .base-node-v2-header .node-header-category,
  .dashboard-node[data-node-type=editor] .base-node-v2-header .node-header-type {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=editor] .base-node-v2-header .drag-handle,
  .dashboard-node[data-node-type=editor] .base-node-v2-header button {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=editor] .base-node-v2-header .drag-handle:hover,
  .dashboard-node[data-node-type=editor] .base-node-v2-header button:hover {
    background: rgba(33, 150, 243, 0.2);
  }
}
.dashboard-node[data-node-type=echo] {
  position: absolute;
  min-width: 120px;
  width: fit-content;
  height: fit-content;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #e0e0e0;
  cursor: move;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.2s ease;
}
.dashboard-node[data-node-type=echo]:hover {
  border-color: var(--node-theme-color, #06b6d4);
}
.dashboard-node[data-node-type=echo].selected, .dashboard-node[data-node-type=echo][data-selected=true] {
  border-color: var(--node-theme-color, #06b6d4);
}
.dashboard-node[data-node-type=echo] .connector-dot {
  background: var(--node-theme-color, #06b6d4);
}
.dashboard-node[data-node-type=echo] .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.dashboard-node[data-node-type=echo] .node-content-container {
  min-width: 400px;
}
.dashboard-node[data-node-type=echo] .node-content-container {
  border-radius: 0 0 10px 10px;
}
.dashboard-node[data-node-type=echo] .node-echo-display-container {
  padding: 20px;
  width: 100%;
}
.dashboard-node[data-node-type=echo] .node-echo-output-element {
  width: 100%;
  min-height: 200px;
  max-height: 600px;
  font-family: "Fira Code", monospace;
  font-size: 12px;
  padding: 12px;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #f5f5f5;
  color: #333;
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  line-height: 1.5;
}
.dashboard-node[data-node-type=echo] .node-echo-output-element:empty::before {
  content: attr(data-placeholder);
  color: #999;
  font-style: italic;
}
.dashboard-node[data-node-type=echo] .base-node-v2-header {
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}
.dashboard-node[data-node-type=echo] .base-node-v2-header .node-header-category {
  color: #06b6d4;
}
.dashboard-node[data-node-type=echo] .base-node-v2-header .node-header-type {
  color: #666;
}
.dashboard-node[data-node-type=echo] .base-node-v2-header button:hover {
  background: rgba(6, 182, 212, 0.1);
}

@media (prefers-color-scheme: dark) {
  .dashboard-node[data-node-type=echo] {
    background: #2d2d2d;
    border-color: #444;
  }
  .dashboard-node[data-node-type=echo]:hover {
    border-color: var(--node-theme-color, #06b6d4);
  }
  .dashboard-node[data-node-type=echo] .node-content-container {
    background: #2d2d2d;
  }
  .dashboard-node[data-node-type=echo] .node-echo-output-element {
    background: #1e1e1e;
    border-color: #444;
    color: #d4d4d4;
  }
  .dashboard-node[data-node-type=echo] .node-echo-output-element:empty::before {
    color: #666;
  }
  .dashboard-node[data-node-type=echo] .base-node-v2-header {
    background: #2d2d2d;
    border-bottom-color: #444;
  }
  .dashboard-node[data-node-type=echo] .base-node-v2-header .node-header-id,
  .dashboard-node[data-node-type=echo] .base-node-v2-header .node-header-category,
  .dashboard-node[data-node-type=echo] .base-node-v2-header .node-header-type {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=echo] .base-node-v2-header .drag-handle,
  .dashboard-node[data-node-type=echo] .base-node-v2-header button {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=echo] .base-node-v2-header .drag-handle:hover,
  .dashboard-node[data-node-type=echo] .base-node-v2-header button:hover {
    background: rgba(6, 182, 212, 0.2);
  }
}
.dashboard-node[data-node-type=md] {
  position: absolute;
  min-width: 400px;
  width: fit-content;
  height: fit-content;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #e0e0e0;
  cursor: move;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.2s ease;
}
.dashboard-node[data-node-type=md]:hover {
  border-color: var(--node-theme-color, #9C27B0);
}
.dashboard-node[data-node-type=md].selected, .dashboard-node[data-node-type=md][data-selected=true] {
  border-color: var(--node-theme-color, #9C27B0);
}
.dashboard-node[data-node-type=md] .connector-dot {
  background: var(--node-theme-color, #9C27B0);
}
.dashboard-node[data-node-type=md] .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.dashboard-node[data-node-type=md] .editor-resize-handle {
  position: absolute;
  bottom: -5px;
  right: 9px;
  width: 20px;
  height: 20px;
  cursor: nwse-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s;
  z-index: 10;
}
.dashboard-node[data-node-type=md] .editor-resize-handle:hover {
  opacity: 1;
}
.dashboard-node[data-node-type=md] .editor-resize-handle .material-symbols-outlined {
  font-size: 16px;
  color: #999;
}
.dashboard-node[data-node-type=md] .node-content-container {
  min-width: 500px;
  min-height: 300px;
}
.dashboard-node[data-node-type=md] .node-content-container {
  border-radius: 0 0 10px 10px;
}
.dashboard-node[data-node-type=md] .node-md-editor-wrapper {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}
.dashboard-node[data-node-type=md] .node-md-editor-wrapper .cm-editor {
  height: 100%;
  font-family: Monaco, Menlo, "Courier New", monospace;
  font-size: 13px;
}
.dashboard-node[data-node-type=md] .node-md-error {
  padding: 20px;
  color: #999;
  text-align: center;
}
.dashboard-node[data-node-type=md] .base-node-v2-header {
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}
.dashboard-node[data-node-type=md] .base-node-v2-header .node-header-category {
  color: #9C27B0;
}
.dashboard-node[data-node-type=md] .base-node-v2-header .node-header-type {
  color: #666;
}
.dashboard-node[data-node-type=md] .base-node-v2-header button:hover {
  background: rgba(156, 39, 176, 0.1);
}

.dashboard-node[data-node-type=md].editor-focused .connector-dot {
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (prefers-color-scheme: dark) {
  .dashboard-node[data-node-type=md] {
    background: #2d2d2d;
    border-color: #444;
  }
  .dashboard-node[data-node-type=md]:hover {
    border-color: var(--node-theme-color, #9C27B0);
  }
  .dashboard-node[data-node-type=md] .node-content-container {
    background: #2d2d2d;
  }
  .dashboard-node[data-node-type=md] .base-node-v2-header {
    background: #2d2d2d;
    border-bottom-color: #444;
  }
  .dashboard-node[data-node-type=md] .base-node-v2-header .node-header-id,
  .dashboard-node[data-node-type=md] .base-node-v2-header .node-header-category,
  .dashboard-node[data-node-type=md] .base-node-v2-header .node-header-type {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=md] .base-node-v2-header .drag-handle,
  .dashboard-node[data-node-type=md] .base-node-v2-header button {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=md] .base-node-v2-header .drag-handle:hover,
  .dashboard-node[data-node-type=md] .base-node-v2-header button:hover {
    background: rgba(156, 39, 176, 0.2);
  }
}
.dashboard-node[data-node-type=json] {
  position: absolute;
  min-width: 400px;
  width: fit-content;
  height: fit-content;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #e0e0e0;
  cursor: move;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.2s ease;
}
.dashboard-node[data-node-type=json]:hover {
  border-color: var(--node-theme-color, #FFC107);
}
.dashboard-node[data-node-type=json].selected, .dashboard-node[data-node-type=json][data-selected=true] {
  border-color: var(--node-theme-color, #FFC107);
}
.dashboard-node[data-node-type=json] .connector-dot {
  background: var(--node-theme-color, #FFC107);
}
.dashboard-node[data-node-type=json] .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.dashboard-node[data-node-type=json] .editor-resize-handle {
  position: absolute;
  bottom: -5px;
  right: 9px;
  width: 20px;
  height: 20px;
  cursor: nwse-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s;
  z-index: 10;
}
.dashboard-node[data-node-type=json] .editor-resize-handle:hover {
  opacity: 1;
}
.dashboard-node[data-node-type=json] .editor-resize-handle .material-symbols-outlined {
  font-size: 16px;
  color: #999;
}
.dashboard-node[data-node-type=json] .node-content-container {
  min-width: 500px;
  min-height: 300px;
}
.dashboard-node[data-node-type=json] .node-content-container {
  border-radius: 0 0 10px 10px;
}
.dashboard-node[data-node-type=json] .node-json-editor-wrapper {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}
.dashboard-node[data-node-type=json] .node-json-editor-wrapper .cm-editor {
  height: 100%;
  font-family: Monaco, Menlo, "Courier New", monospace;
  font-size: 13px;
}
.dashboard-node[data-node-type=json] .node-json-error {
  padding: 20px;
  color: #999;
  text-align: center;
}
.dashboard-node[data-node-type=json] .base-node-v2-header {
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}
.dashboard-node[data-node-type=json] .base-node-v2-header .node-header-category {
  color: #FFC107;
}
.dashboard-node[data-node-type=json] .base-node-v2-header .node-header-type {
  color: #666;
}
.dashboard-node[data-node-type=json] .base-node-v2-header button:hover {
  background: rgba(255, 193, 7, 0.1);
}

.dashboard-node[data-node-type=json].editor-focused .connector-dot {
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (prefers-color-scheme: dark) {
  .dashboard-node[data-node-type=json] {
    background: #2d2d2d;
    border-color: #444;
  }
  .dashboard-node[data-node-type=json]:hover {
    border-color: var(--node-theme-color, #FFC107);
  }
  .dashboard-node[data-node-type=json] .node-content-container {
    background: #2d2d2d;
  }
  .dashboard-node[data-node-type=json] .base-node-v2-header {
    background: #2d2d2d;
    border-bottom-color: #444;
  }
  .dashboard-node[data-node-type=json] .base-node-v2-header .node-header-id,
  .dashboard-node[data-node-type=json] .base-node-v2-header .node-header-category,
  .dashboard-node[data-node-type=json] .base-node-v2-header .node-header-type {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=json] .base-node-v2-header .drag-handle,
  .dashboard-node[data-node-type=json] .base-node-v2-header button {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=json] .base-node-v2-header .drag-handle:hover,
  .dashboard-node[data-node-type=json] .base-node-v2-header button:hover {
    background: rgba(255, 193, 7, 0.2);
  }
}
.dashboard-node[data-node-type=api] {
  position: absolute;
  min-width: 400px;
  max-width: 1200px;
  width: fit-content;
  height: fit-content;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #e0e0e0;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.2s ease;
}
.dashboard-node[data-node-type=api]:hover {
  border-color: var(--node-theme-color, #22c55e);
}
.dashboard-node[data-node-type=api].selected, .dashboard-node[data-node-type=api][data-selected=true] {
  border-color: var(--node-theme-color, #22c55e);
}
.dashboard-node[data-node-type=api] .connector-dot {
  background: var(--node-theme-color, #22c55e);
}
.dashboard-node[data-node-type=api] .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.dashboard-node[data-node-type=api] .node-content-container {
  min-width: 500px;
  max-width: 1200px;
}
.dashboard-node[data-node-type=api] .node-content-elements {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: auto;
}
.dashboard-node[data-node-type=api] .api-method-url-row {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}
.dashboard-node[data-node-type=api] .query-canvas-node-select[data-field=api-method] {
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  font-family: monospace;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dashboard-node[data-node-type=api] .query-canvas-node-select[data-field=api-method]:hover {
  border-color: #22c55e;
}
.dashboard-node[data-node-type=api] .query-canvas-node-select[data-field=api-method]:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=api-url] {
  flex: 1;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  font-family: "Fira Code", monospace;
  color: rgb(25, 50, 250);
  cursor: text;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=api-url]:hover {
  border-color: #22c55e;
}
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=api-url]:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
  white-space: normal;
}
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=api-url]::placeholder {
  color: #999;
}
.dashboard-node[data-node-type=api] .api-section-label {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  color: #333;
}
.dashboard-node[data-node-type=api] .api-headers-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dashboard-node[data-node-type=api] .api-header-row {
  display: flex;
  gap: 6px;
  align-items: center;
}
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-key],
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-value] {
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px;
  font-family: monospace;
  cursor: text;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-key]:hover,
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-value]:hover {
  border-color: #22c55e;
}
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-key]:focus,
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-value]:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-key]::placeholder,
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-value]::placeholder {
  color: #aaa;
}
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-key] {
  flex: 1;
}
.dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-value] {
  flex: 2;
}
.dashboard-node[data-node-type=api] .api-header-remove-btn {
  padding: 4px 8px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fee;
  cursor: pointer;
  color: #c00;
  transition: all 0.2s;
}
.dashboard-node[data-node-type=api] .api-header-remove-btn:hover {
  background-color: #fcc;
  border-color: #c00;
}
.dashboard-node[data-node-type=api] .api-add-header-btn {
  padding: 4px 8px;
  font-size: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
}
.dashboard-node[data-node-type=api] .api-add-header-btn:hover {
  background-color: #e9ecef;
  border-color: #22c55e;
}
.dashboard-node[data-node-type=api] .api-body-section {
  display: block;
}
.dashboard-node[data-node-type=api] .api-body-section[data-hidden=true] {
  display: none;
}
.dashboard-node[data-node-type=api] .query-canvas-node-textarea[data-field=api-body] {
  width: 100%;
  min-height: 80px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px;
  font-family: monospace;
  resize: vertical;
  cursor: text;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dashboard-node[data-node-type=api] .query-canvas-node-textarea[data-field=api-body]:hover {
  border-color: #22c55e;
}
.dashboard-node[data-node-type=api] .query-canvas-node-textarea[data-field=api-body]:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
.dashboard-node[data-node-type=api] .query-canvas-node-textarea[data-field=api-body]::placeholder {
  color: #999;
}
.dashboard-node[data-node-type=api] .api-response-container {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f8f9fa;
  font-size: 12px;
  font-family: monospace;
  min-height: 60px;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
  transition: background-color 0.3s;
  max-width: 100%;
}
.dashboard-node[data-node-type=api] .api-response-container[data-status=loading] {
  background-color: #fff3cd;
}
.dashboard-node[data-node-type=api] .api-response-container[data-status=success] {
  background-color: #d4edda;
}
.dashboard-node[data-node-type=api] .api-response-container[data-status=error] {
  background-color: #f8d7da;
}
.dashboard-node[data-node-type=api] .api-response-container::-webkit-scrollbar {
  width: 8px;
}
.dashboard-node[data-node-type=api] .api-response-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.dashboard-node[data-node-type=api] .api-response-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.dashboard-node[data-node-type=api] .api-response-container::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.dashboard-node[data-node-type=api] .base-node-v2-header {
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
  cursor: move;
}
.dashboard-node[data-node-type=api] .base-node-v2-header .node-header-category {
  color: #22c55e;
}
.dashboard-node[data-node-type=api] .base-node-v2-header .node-header-type {
  color: #666;
}
.dashboard-node[data-node-type=api] .base-node-v2-header button {
  cursor: pointer;
}
.dashboard-node[data-node-type=api] .base-node-v2-header button:hover {
  background: rgba(34, 197, 94, 0.1);
}

@media (prefers-color-scheme: dark) {
  .dashboard-node[data-node-type=api] {
    background: #2d2d2d;
    border-color: #444;
  }
  .dashboard-node[data-node-type=api]:hover {
    border-color: var(--node-theme-color, #22c55e);
  }
  .dashboard-node[data-node-type=api] .node-content-container {
    background: #2d2d2d;
  }
  .dashboard-node[data-node-type=api] .api-section-label {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=api] .query-canvas-node-select[data-field=api-method],
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=api-url],
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-key],
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-value],
  .dashboard-node[data-node-type=api] .query-canvas-node-textarea[data-field=api-body] {
    background-color: #1e1e1e;
    border-color: #555;
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=api] .query-canvas-node-select[data-field=api-method]::placeholder,
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=api-url]::placeholder,
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-key]::placeholder,
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-value]::placeholder,
  .dashboard-node[data-node-type=api] .query-canvas-node-textarea[data-field=api-body]::placeholder {
    color: #666;
  }
  .dashboard-node[data-node-type=api] .query-canvas-node-select[data-field=api-method]:hover,
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=api-url]:hover,
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-key]:hover,
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-value]:hover,
  .dashboard-node[data-node-type=api] .query-canvas-node-textarea[data-field=api-body]:hover {
    border-color: #22c55e;
  }
  .dashboard-node[data-node-type=api] .query-canvas-node-select[data-field=api-method]:focus,
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=api-url]:focus,
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-key]:focus,
  .dashboard-node[data-node-type=api] .query-canvas-node-input[data-field=header-value]:focus,
  .dashboard-node[data-node-type=api] .query-canvas-node-textarea[data-field=api-body]:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  }
  .dashboard-node[data-node-type=api] .api-add-header-btn {
    background-color: #3a3a3a;
    border-color: #555;
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=api] .api-add-header-btn:hover {
    background-color: #4a4a4a;
    border-color: #22c55e;
  }
  .dashboard-node[data-node-type=api] .api-header-remove-btn {
    background-color: #3a1b1b;
    border-color: #555;
  }
  .dashboard-node[data-node-type=api] .api-header-remove-btn:hover {
    background-color: #4a2b2b;
    border-color: #c00;
  }
  .dashboard-node[data-node-type=api] .api-response-container {
    background-color: #1e1e1e;
    border-color: #555;
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=api] .api-response-container[data-status=loading] {
    background-color: #3a2f1b;
  }
  .dashboard-node[data-node-type=api] .api-response-container[data-status=success] {
    background-color: #1b3a1b;
  }
  .dashboard-node[data-node-type=api] .api-response-container[data-status=error] {
    background-color: #3a1b1b;
  }
  .dashboard-node[data-node-type=api] .api-response-container::-webkit-scrollbar-track {
    background: #1e1e1e;
  }
  .dashboard-node[data-node-type=api] .api-response-container::-webkit-scrollbar-thumb {
    background: #555;
  }
  .dashboard-node[data-node-type=api] .api-response-container::-webkit-scrollbar-thumb:hover {
    background: #777;
  }
  .dashboard-node[data-node-type=api] .base-node-v2-header {
    background: #2d2d2d;
    border-bottom-color: #444;
  }
  .dashboard-node[data-node-type=api] .base-node-v2-header .node-header-id,
  .dashboard-node[data-node-type=api] .base-node-v2-header .node-header-category,
  .dashboard-node[data-node-type=api] .base-node-v2-header .node-header-type {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=api] .base-node-v2-header .drag-handle,
  .dashboard-node[data-node-type=api] .base-node-v2-header button {
    color: #e0e0e0;
  }
  .dashboard-node[data-node-type=api] .base-node-v2-header .drag-handle:hover,
  .dashboard-node[data-node-type=api] .base-node-v2-header button:hover {
    background: rgba(34, 197, 94, 0.2);
  }
}
.dashboard-node[data-node-type=llm] .node-content-elements {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 500px;
}
.dashboard-node[data-node-type=llm] .llm-controls-section {
  display: flex;
  gap: 10px;
  align-items: center;
}
.dashboard-node[data-node-type=llm] .llm-controls-section label {
  font-weight: 600;
  font-size: 13px;
  color: #333;
}
.dashboard-node[data-node-type=llm] .llm-controls-section label.provider-label {
  margin-left: 0;
}
.dashboard-node[data-node-type=llm] .llm-controls-section label.model-label {
  margin-left: 10px;
}
.dashboard-node[data-node-type=llm] .llm-controls-section select {
  padding: 6px 10px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
}
.dashboard-node[data-node-type=llm] .llm-controls-section select.provider-dropdown {
  min-width: 120px;
}
.dashboard-node[data-node-type=llm] .llm-controls-section select.model-dropdown {
  flex: 1;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section label {
  font-weight: 600;
  font-size: 13px;
  color: #333;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section textarea {
  padding: 10px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  resize: vertical;
  min-height: 60px;
  transition: border-color 0.2s;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section textarea:focus {
  outline: none;
  border-color: #3b82f6;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section textarea::placeholder {
  color: #9ca3af;
  font-style: italic;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section .button-container {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section .button-container button {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section .button-container button.send-button {
  color: white;
  background-color: #3b82f6;
  border: none;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section .button-container button.send-button:hover:not(:disabled) {
  background-color: #2563eb;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section .button-container button.send-button:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section .button-container button.clear-button {
  color: #374151;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
}
.dashboard-node[data-node-type=llm] .llm-node-input-section .button-container button.clear-button:hover {
  background-color: #e5e7eb;
}
.dashboard-node[data-node-type=llm] .llm-response-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
.dashboard-node[data-node-type=llm] .llm-response-section label {
  font-weight: 600;
  font-size: 13px;
  color: #333;
}
.dashboard-node[data-node-type=llm] .llm-response-section .response-container {
  padding: 12px;
  font-size: 13px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  min-height: 100px;
  max-height: 300px;
  overflow-y: auto;
  line-height: 1.6;
  color: #374151;
  white-space: pre-wrap;
}
.dashboard-node[data-node-type=llm] .llm-response-section .response-container.error {
  color: #dc2626;
}

.dashboard-node[data-node-type=prompts] .prompts-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 12px;
  height: 100%;
  box-sizing: border-box;
}
.dashboard-node[data-node-type=prompts] .prompt-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  min-height: 0;
}
.dashboard-node[data-node-type=prompts] .prompt-section .prompt-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.dashboard-node[data-node-type=prompts] .prompt-section .prompt-header {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.dashboard-node[data-node-type=prompts] .prompt-section .edited-flag {
  display: none;
  font-size: 10px;
  font-weight: 700;
  color: #ff9800;
  background-color: #fff3e0;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.dashboard-node[data-node-type=prompts] .prompt-section .edited-flag.visible {
  display: inline-block;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(2) {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(2) label {
  font-size: 12px;
  font-weight: 500;
  min-width: 70px;
  color: #555;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(2) select {
  flex: 1;
  padding: 6px 8px;
  font-size: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(2) select:focus {
  outline: none;
  border-color: #2196F3;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(2) select:hover {
  border-color: #bbb;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(3) {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(3) label {
  font-size: 12px;
  font-weight: 500;
  min-width: 70px;
  color: #555;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(3) input {
  flex: 1;
  padding: 6px 8px;
  font-size: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(3) input:focus {
  outline: none;
  border-color: #2196F3;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(3) input::placeholder {
  color: #999;
  font-style: italic;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(3) button {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  background-color: #2196F3;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(3) button:hover:not(:disabled) {
  background-color: #1976D2;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(3) button:disabled {
  cursor: not-allowed;
  background-color: #9E9E9E;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(3) button.success {
  background-color: #4CAF50;
}
.dashboard-node[data-node-type=prompts] .prompt-section > div:nth-child(3) button.error {
  background-color: #f44336;
}
.dashboard-node[data-node-type=prompts] .prompt-section .prompt-display {
  flex: 1;
  padding: 10px;
  font-size: 13px;
  font-family: monospace;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  overflow-y: auto;
  white-space: pre-wrap;
  color: #333;
  line-height: 1.5;
  min-height: 100px;
  resize: none;
  transition: border-color 0.2s, background-color 0.2s;
}
.dashboard-node[data-node-type=prompts] .prompt-section .prompt-display::placeholder {
  color: #999;
  font-style: italic;
}
.dashboard-node[data-node-type=prompts] .prompt-section .prompt-display:focus {
  outline: none;
  border-color: #2196F3;
  background-color: #fff;
}
.dashboard-node[data-node-type=prompts] .prompt-section .prompt-display.edited {
  background-color: #fffaf0;
  border-color: #ff9800;
}

.dashboard-node[data-node-type=note] {
  position: absolute;
  min-width: 200px;
  width: fit-content;
  height: fit-content;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #f59e0b;
  background: #fef3c7;
  cursor: move;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.2s ease, transform 0.2s ease;
}
.dashboard-node[data-node-type=note]:hover {
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 32px;
}
.dashboard-node[data-node-type=note].selected, .dashboard-node[data-node-type=note][data-selected=true] {
  border-color: #fbbf24;
  box-shadow: rgba(251, 191, 36, 0.3) 0px 12px 32px;
}
.dashboard-node[data-node-type=note] .connector-dot {
  background: #fbbf24;
}
.dashboard-node[data-node-type=note] .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.dashboard-node[data-node-type=note] .node-content-container {
  min-width: 250px;
  background: transparent;
}
.dashboard-node[data-node-type=note] .node-content-elements {
  position: relative;
  overflow: hidden;
  min-height: 100px;
}
.dashboard-node[data-node-type=note] .editor-grid-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.dashboard-node[data-node-type=note] .editor-grid-textarea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  word-spacing: 0;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  resize: none;
  overflow: hidden;
  background: transparent;
  color: transparent;
  caret-color: #92400e;
  z-index: 1;
  white-space: pre;
  cursor: text;
  -webkit-text-size-adjust: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.dashboard-node[data-node-type=note] .grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  color: #422006;
}
.dashboard-node[data-node-type=note] .grid-cell {
  position: absolute;
  width: 7.2px;
  height: 18px;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  overflow: hidden;
  color: inherit;
}
.dashboard-node[data-node-type=note] .grid-overlay.show-grid-borders .grid-cell {
  border: 0.5px solid rgba(251, 191, 36, 0.2);
}
.dashboard-node[data-node-type=note] .grid-cell.selection-highlight {
  background-color: rgba(251, 191, 36, 0.3);
}
.dashboard-node[data-node-type=note] .note-resize-handle {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  cursor: nwse-resize;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.dashboard-node[data-node-type=note] .note-resize-handle:hover {
  opacity: 1;
}
.dashboard-node[data-node-type=note] .note-resize-handle .material-symbols-outlined {
  font-size: 16px;
  color: #92400e;
  pointer-events: none;
  user-select: none;
}
.dashboard-node[data-node-type=note] .note-mention-dropdown {
  position: absolute;
  background: #fff;
  border: 2px solid #fbbf24;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 200px;
  max-width: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #422006;
  transition: background 0.15s;
}
.dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option[data-selected=true] {
  background: #e3f2fd;
  font-weight: 600;
}
.dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option[data-selected=true] img {
  border-color: #2196f3;
  box-shadow: 0 0 0 1px #64b5f6;
}
.dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option:hover {
  background: #e3f2fd !important;
}
.dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option:active {
  background: #bbdefb !important;
}
.dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fbbf24;
  transition: all 0.15s ease;
}
.dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option span {
  flex: 1;
  user-select: none;
}
.dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option:first-child {
  border-radius: 6px 6px 0 0;
}
.dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option:last-child {
  border-radius: 0 0 6px 6px;
}
.dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option:only-child {
  border-radius: 6px;
}
.dashboard-node[data-node-type=note] .base-node-v2-header {
  background: #fde68a;
  border-bottom: 1px solid #fbbf24;
}
.dashboard-node[data-node-type=note] .base-node-v2-header .node-header-category {
  color: #92400e;
  font-weight: 700;
}
.dashboard-node[data-node-type=note] .base-node-v2-header .node-header-type {
  color: #78350f;
}
.dashboard-node[data-node-type=note] .base-node-v2-header .node-header-id {
  color: #92400e;
}
.dashboard-node[data-node-type=note] .base-node-v2-header button {
  color: #92400e;
}
.dashboard-node[data-node-type=note] .base-node-v2-header button:hover {
  background: rgba(251, 191, 36, 0.2);
}

@keyframes noteAppear {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }
  50% {
    transform: scale(1.05) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.dashboard-node[data-node-type=note].just-created {
  animation: noteAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-color-scheme: dark) {
  .dashboard-node[data-node-type=note] {
    background: #854d0e;
    border-color: #a16207;
  }
  .dashboard-node[data-node-type=note]:hover {
    border-color: #ca8a04;
    box-shadow: rgba(251, 191, 36, 0.2) 0px 12px 32px;
  }
  .dashboard-node[data-node-type=note] .editor-grid-textarea {
    caret-color: #fde68a;
  }
  .dashboard-node[data-node-type=note] .grid-overlay {
    color: #fef3c7;
  }
  .dashboard-node[data-node-type=note] .grid-overlay.show-grid-borders .grid-cell {
    border-color: rgba(251, 191, 36, 0.1);
  }
  .dashboard-node[data-node-type=note] .grid-cell.selection-highlight {
    background-color: rgba(251, 191, 36, 0.2);
  }
  .dashboard-node[data-node-type=note] .note-mention-dropdown {
    background: #1e293b !important;
    border-color: #3b82f6 !important;
  }
  .dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option {
    color: #e2e8f0 !important;
  }
  .dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option[data-selected=true] {
    background: #1e3a8a !important;
  }
  .dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option[data-selected=true] img {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #60a5fa;
  }
  .dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option:hover {
    background: #1e3a8a !important;
  }
  .dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option:active {
    background: #1e40af !important;
  }
  .dashboard-node[data-node-type=note] .note-mention-dropdown .mention-option img {
    border-color: #475569;
  }
  .dashboard-node[data-node-type=note] .base-node-v2-header {
    background: #713f12;
    border-bottom-color: #a16207;
  }
  .dashboard-node[data-node-type=note] .base-node-v2-header .node-header-id,
  .dashboard-node[data-node-type=note] .base-node-v2-header .node-header-category,
  .dashboard-node[data-node-type=note] .base-node-v2-header .node-header-type {
    color: #fde68a;
  }
  .dashboard-node[data-node-type=note] .base-node-v2-header button {
    color: #fde68a;
  }
  .dashboard-node[data-node-type=note] .base-node-v2-header button:hover {
    background: rgba(251, 191, 36, 0.2);
  }
}
.dashboard-node[data-node-type=assert] {
  position: absolute;
  min-width: 400px;
  width: fit-content;
  height: fit-content;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #6366f1;
  background: #fff;
  cursor: move;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.dashboard-node[data-node-type=assert]:hover {
  border-color: #818cf8;
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 32px;
}
.dashboard-node[data-node-type=assert].selected, .dashboard-node[data-node-type=assert][data-selected=true] {
  border-color: #818cf8;
  box-shadow: rgba(99, 102, 241, 0.3) 0px 12px 32px;
}
.dashboard-node[data-node-type=assert] .connector-dot {
  background: #6366f1;
}
.dashboard-node[data-node-type=assert] .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.dashboard-node[data-node-type=assert] .node-content-container {
  min-width: 450px;
  background: transparent;
}
.dashboard-node[data-node-type=assert] .base-node-v2-header {
  background: #c7d2fe;
  border-bottom: 1px solid #818cf8;
}
.dashboard-node[data-node-type=assert] .base-node-v2-header .node-header-category {
  color: #312e81;
  font-weight: 700;
}
.dashboard-node[data-node-type=assert] .base-node-v2-header .node-header-type {
  color: #4338ca;
}
.dashboard-node[data-node-type=assert] .base-node-v2-header .node-header-id {
  color: #312e81;
}
.dashboard-node[data-node-type=assert] .base-node-v2-header button {
  color: #312e81;
}
.dashboard-node[data-node-type=assert] .base-node-v2-header button:hover {
  background: rgba(129, 140, 248, 0.2);
}
.dashboard-node[data-node-type=assert] .assert-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}
.dashboard-node[data-node-type=assert] .assert-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 6px;
  background: white;
  border: 1px solid #e0e7ff;
}
.dashboard-node[data-node-type=assert] .assert-section-header {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #4338ca;
  letter-spacing: 0.5px;
}
.dashboard-node[data-node-type=assert] .received-section .received-display {
  font-family: "Fira Code", "Courier New", monospace;
  font-size: 12px;
  color: #1e1b4b;
  background: #f5f5f5;
  padding: 12px;
  max-height: 150px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
}
.dashboard-node[data-node-type=assert] .assertion-section .assertion-help-text {
  font-size: 11px;
  font-style: italic;
}
.dashboard-node[data-node-type=assert] .assertion-section .assertion-input {
  font-family: "Fira Code", "Courier New", monospace;
  font-size: 13px;
  color: #1e1b4b;
  background: #faf5ff;
  padding: 10px;
  border: 1px solid #c4b5fd;
  resize: vertical;
  min-height: 60px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dashboard-node[data-node-type=assert] .assertion-section .assertion-input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.dashboard-node[data-node-type=assert] .assertion-section .assertion-input::placeholder {
  color: #9ca3af;
  font-style: italic;
}
.dashboard-node[data-node-type=assert] .result-section .result-display {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #f8fafc;
  border: 2px solid #cbd5e1;
  transition: all 0.3s ease;
}
.dashboard-node[data-node-type=assert] .result-section .result-display .result-icon {
  font-size: 28px;
  color: #64748b;
}
.dashboard-node[data-node-type=assert] .result-section .result-display .result-text {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}
.dashboard-node[data-node-type=assert] .result-section .result-display.result-pass {
  background: #dcfce7;
  border-color: #22c55e;
}
.dashboard-node[data-node-type=assert] .result-section .result-display.result-pass .result-icon {
  color: #16a34a;
}
.dashboard-node[data-node-type=assert] .result-section .result-display.result-pass .result-text {
  color: #15803d;
}
.dashboard-node[data-node-type=assert] .result-section .result-display.result-fail {
  background: #fee2e2;
  border-color: #ef4444;
}
.dashboard-node[data-node-type=assert] .result-section .result-display.result-fail .result-icon {
  color: #dc2626;
}
.dashboard-node[data-node-type=assert] .result-section .result-display.result-fail .result-text {
  color: #b91c1c;
}
.dashboard-node[data-node-type=assert] .result-section .result-display.result-error {
  background: #fef3c7;
  border-color: #f59e0b;
}
.dashboard-node[data-node-type=assert] .result-section .result-display.result-error .result-icon {
  color: #d97706;
}
.dashboard-node[data-node-type=assert] .result-section .result-display.result-error .result-text {
  color: #92400e;
}
.dashboard-node[data-node-type=assert] .result-section .result-message {
  font-size: 12px;
  color: #64748b;
  padding: 8px;
  background: #f8fafc;
  border-radius: 4px;
  font-family: "Fira Code", "Courier New", monospace;
  min-height: 20px;
}

@keyframes assertAppear {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.dashboard-node[data-node-type=assert].just-created {
  animation: assertAppear 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-color-scheme: dark) {
  .dashboard-node[data-node-type=assert] {
    background: #1e1b4b;
    border-color: #4338ca;
  }
  .dashboard-node[data-node-type=assert]:hover {
    border-color: #6366f1;
    box-shadow: rgba(99, 102, 241, 0.2) 0px 12px 32px;
  }
  .dashboard-node[data-node-type=assert] .base-node-v2-header {
    background: #312e81;
    border-bottom-color: #4338ca;
  }
  .dashboard-node[data-node-type=assert] .base-node-v2-header .node-header-id,
  .dashboard-node[data-node-type=assert] .base-node-v2-header .node-header-category,
  .dashboard-node[data-node-type=assert] .base-node-v2-header .node-header-type {
    color: #c7d2fe;
  }
  .dashboard-node[data-node-type=assert] .base-node-v2-header button {
    color: #c7d2fe;
  }
  .dashboard-node[data-node-type=assert] .base-node-v2-header button:hover {
    background: rgba(99, 102, 241, 0.2);
  }
  .dashboard-node[data-node-type=assert] .assert-section {
    background: #1f2937;
    border-color: #374151;
  }
  .dashboard-node[data-node-type=assert] .assert-section-header {
    color: #818cf8;
  }
  .dashboard-node[data-node-type=assert] .received-section .received-display {
    background: #111827;
    color: #e5e7eb;
  }
  .dashboard-node[data-node-type=assert] .assertion-section .assertion-help-text {
    color: #a78bfa;
  }
  .dashboard-node[data-node-type=assert] .assertion-section .assertion-input {
    background: #1f2937;
    color: #e5e7eb;
    border-color: #4b5563;
  }
  .dashboard-node[data-node-type=assert] .assertion-section .assertion-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
  }
  .dashboard-node[data-node-type=assert] .result-section .result-display {
    background: #111827;
    border-color: #4b5563;
  }
  .dashboard-node[data-node-type=assert] .result-section .result-display .result-icon {
    color: #9ca3af;
  }
  .dashboard-node[data-node-type=assert] .result-section .result-display .result-text {
    color: #d1d5db;
  }
  .dashboard-node[data-node-type=assert] .result-section .result-display.result-pass {
    background: #14532d;
    border-color: #22c55e;
  }
  .dashboard-node[data-node-type=assert] .result-section .result-display.result-fail {
    background: #7f1d1d;
    border-color: #ef4444;
  }
  .dashboard-node[data-node-type=assert] .result-section .result-display.result-error {
    background: #78350f;
    border-color: #f59e0b;
  }
  .dashboard-node[data-node-type=assert] .result-section .result-message {
    background: #111827;
    color: #9ca3af;
  }
}
.dashboard-node[data-node-type=totals] {
  position: absolute;
  min-width: 400px;
  width: fit-content;
  height: fit-content;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #10b981;
  background: #f0fdf4;
  cursor: move;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.dashboard-node[data-node-type=totals]:hover {
  border-color: #34d399;
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 32px;
}
.dashboard-node[data-node-type=totals].selected, .dashboard-node[data-node-type=totals][data-selected=true] {
  border-color: #34d399;
  box-shadow: rgba(16, 185, 129, 0.3) 0px 12px 32px;
}
.dashboard-node[data-node-type=totals] .connector-dot {
  background: #10b981;
}
.dashboard-node[data-node-type=totals] .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.dashboard-node[data-node-type=totals] .node-content-container {
  min-width: 450px;
  background: transparent;
}
.dashboard-node[data-node-type=totals] .base-node-v2-header {
  background: #d1fae5;
  border-bottom: 1px solid #34d399;
}
.dashboard-node[data-node-type=totals] .base-node-v2-header .node-header-category {
  color: #065f46;
  font-weight: 700;
}
.dashboard-node[data-node-type=totals] .base-node-v2-header .node-header-type {
  color: #047857;
}
.dashboard-node[data-node-type=totals] .base-node-v2-header .node-header-id {
  color: #065f46;
}
.dashboard-node[data-node-type=totals] .base-node-v2-header button {
  color: #065f46;
}
.dashboard-node[data-node-type=totals] .base-node-v2-header button:hover {
  background: rgba(52, 211, 153, 0.2);
}
.dashboard-node[data-node-type=totals] .totals-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}
.dashboard-node[data-node-type=totals] .totals-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background: white;
  border: 1px solid #d1fae5;
}
.dashboard-node[data-node-type=totals] .totals-section-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #047857;
  letter-spacing: 0.5px;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row {
  display: grid;
  grid-template-columns: 60px 40px 1fr 50px;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row .stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row .stat-count {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  font-family: "Fira Code", monospace;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row .stat-bar-container {
  position: relative;
  height: 20px;
  background: #f3f4f6;
  border-radius: 10px;
  overflow: hidden;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row .stat-bar-container .stat-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.3s ease;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row .stat-percent {
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  font-family: "Fira Code", monospace;
  color: #6b7280;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row.stat-row-passes .stat-label {
  color: #059669;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row.stat-row-passes .stat-count {
  color: #059669;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row.stat-row-passes .stat-bar-fill {
  background: linear-gradient(90deg, #10b981, #34d399);
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row.stat-row-fails .stat-label {
  color: #dc2626;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row.stat-row-fails .stat-count {
  color: #dc2626;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row.stat-row-fails .stat-bar-fill {
  background: linear-gradient(90deg, #ef4444, #f87171);
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row.stat-row-errors .stat-label {
  color: #d97706;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row.stat-row-errors .stat-count {
  color: #d97706;
}
.dashboard-node[data-node-type=totals] .stats-section .stat-row.stat-row-errors .stat-bar-fill {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}
.dashboard-node[data-node-type=totals] .iteration-section .iteration-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-node[data-node-type=totals] .iteration-section .iteration-info .iteration-label {
  font-size: 13px;
  color: #374151;
}
.dashboard-node[data-node-type=totals] .iteration-section .iteration-info .iteration-label strong {
  color: #047857;
}
.dashboard-node[data-node-type=totals] .iteration-section .iteration-info .iteration-label .iteration-number,
.dashboard-node[data-node-type=totals] .iteration-section .iteration-info .iteration-label .total-assertions {
  font-family: "Fira Code", monospace;
  font-weight: 600;
  color: #10b981;
}
.dashboard-node[data-node-type=totals] .history-section .totals-controls {
  display: flex;
  gap: 10px;
}
.dashboard-node[data-node-type=totals] .history-section .totals-controls .totals-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dashboard-node[data-node-type=totals] .history-section .totals-controls .totals-btn.reset-btn {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.dashboard-node[data-node-type=totals] .history-section .totals-controls .totals-btn.reset-btn:hover {
  background: #fee2e2;
  border-color: #fca5a5;
}
.dashboard-node[data-node-type=totals] .history-section .totals-controls .totals-btn.reset-btn:active {
  transform: scale(0.98);
}
.dashboard-node[data-node-type=totals] .history-section .totals-controls .totals-btn.export-btn {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #dbeafe;
}
.dashboard-node[data-node-type=totals] .history-section .totals-controls .totals-btn.export-btn:hover {
  background: #dbeafe;
  border-color: #93c5fd;
}
.dashboard-node[data-node-type=totals] .history-section .totals-controls .totals-btn.export-btn:active {
  transform: scale(0.98);
}

@keyframes totalsAppear {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.dashboard-node[data-node-type=totals].just-created {
  animation: totalsAppear 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-color-scheme: dark) {
  .dashboard-node[data-node-type=totals] {
    background: #064e3b;
    border-color: #059669;
  }
  .dashboard-node[data-node-type=totals]:hover {
    border-color: #10b981;
    box-shadow: rgba(16, 185, 129, 0.2) 0px 12px 32px;
  }
  .dashboard-node[data-node-type=totals] .base-node-v2-header {
    background: #065f46;
    border-bottom-color: #059669;
  }
  .dashboard-node[data-node-type=totals] .base-node-v2-header .node-header-id,
  .dashboard-node[data-node-type=totals] .base-node-v2-header .node-header-category,
  .dashboard-node[data-node-type=totals] .base-node-v2-header .node-header-type {
    color: #d1fae5;
  }
  .dashboard-node[data-node-type=totals] .base-node-v2-header button {
    color: #d1fae5;
  }
  .dashboard-node[data-node-type=totals] .base-node-v2-header button:hover {
    background: rgba(16, 185, 129, 0.2);
  }
  .dashboard-node[data-node-type=totals] .totals-section {
    background: #1f2937;
    border-color: #374151;
  }
  .dashboard-node[data-node-type=totals] .totals-section-header {
    color: #34d399;
  }
  .dashboard-node[data-node-type=totals] .stats-section .stat-row .stat-bar-container {
    background: #111827;
  }
  .dashboard-node[data-node-type=totals] .stats-section .stat-row .stat-percent {
    color: #9ca3af;
  }
  .dashboard-node[data-node-type=totals] .iteration-section .iteration-label {
    color: #d1d5db;
  }
  .dashboard-node[data-node-type=totals] .iteration-section .iteration-label strong {
    color: #34d399;
  }
  .dashboard-node[data-node-type=totals] .iteration-section .iteration-label .iteration-number,
  .dashboard-node[data-node-type=totals] .iteration-section .iteration-label .total-assertions {
    color: #10b981;
  }
  .dashboard-node[data-node-type=totals] .history-section .totals-controls .totals-btn.reset-btn {
    background: #7f1d1d;
    border-color: #991b1b;
    color: #fecaca;
  }
  .dashboard-node[data-node-type=totals] .history-section .totals-controls .totals-btn.reset-btn:hover {
    background: #991b1b;
  }
  .dashboard-node[data-node-type=totals] .history-section .totals-controls .totals-btn.export-btn {
    background: #1e3a8a;
    border-color: #1e40af;
    color: #dbeafe;
  }
  .dashboard-node[data-node-type=totals] .history-section .totals-controls .totals-btn.export-btn:hover {
    background: #1e40af;
  }
}
.dashboard-node[data-node-type=iterate] {
  position: absolute;
  min-width: 400px;
  width: fit-content;
  height: fit-content;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
  border: 2px solid #0ea5e9;
  background: white;
  cursor: move;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.dashboard-node[data-node-type=iterate]:hover {
  border-color: #38bdf8;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 32px;
}
.dashboard-node[data-node-type=iterate].selected, .dashboard-node[data-node-type=iterate][data-selected=true] {
  border-color: #38bdf8;
  box-shadow: rgba(14, 165, 233, 0.3) 0px 12px 32px;
}
.dashboard-node[data-node-type=iterate] .connector-dot {
  background: #0ea5e9;
}
.dashboard-node[data-node-type=iterate] .connector-dot:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.dashboard-node[data-node-type=iterate] .node-content-container {
  min-width: 450px;
  background: transparent;
}
.dashboard-node[data-node-type=iterate] .base-node-v2-header {
  background: #e0f2fe;
  border-bottom: 1px solid #38bdf8;
}
.dashboard-node[data-node-type=iterate] .base-node-v2-header .node-header-category {
  color: #075985;
  font-weight: 700;
}
.dashboard-node[data-node-type=iterate] .base-node-v2-header .node-header-type {
  color: #0369a1;
}
.dashboard-node[data-node-type=iterate] .base-node-v2-header .node-header-id {
  color: #075985;
}
.dashboard-node[data-node-type=iterate] .base-node-v2-header button {
  color: #075985;
}
.dashboard-node[data-node-type=iterate] .base-node-v2-header button:hover {
  background: rgba(56, 189, 248, 0.2);
}
.dashboard-node[data-node-type=iterate] .iterate-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}
.dashboard-node[data-node-type=iterate] .iterate-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background: white;
  border: 1px solid #e0f2fe;
}
.dashboard-node[data-node-type=iterate] .iterate-section-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0369a1;
  letter-spacing: 0.5px;
}
.dashboard-node[data-node-type=iterate] .config-section .config-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.dashboard-node[data-node-type=iterate] .config-section .config-row label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  min-width: 100px;
}
.dashboard-node[data-node-type=iterate] .config-section .config-row .config-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Fira Code", monospace;
  transition: border-color 0.2s ease;
}
.dashboard-node[data-node-type=iterate] .config-section .config-row .config-input:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
.dashboard-node[data-node-type=iterate] .config-section .config-row .config-input:hover {
  border-color: #94a3b8;
}
.dashboard-node[data-node-type=iterate] .progress-section .current-iteration {
  font-size: 13px;
  color: #374151;
}
.dashboard-node[data-node-type=iterate] .progress-section .current-iteration strong {
  color: #0369a1;
}
.dashboard-node[data-node-type=iterate] .progress-section .current-iteration .iteration-count {
  font-family: "Fira Code", monospace;
  font-weight: 600;
  color: #0ea5e9;
}
.dashboard-node[data-node-type=iterate] .progress-section .progress-bar-container {
  position: relative;
  height: 24px;
  background: #f3f4f6;
  border-radius: 12px;
  overflow: hidden;
}
.dashboard-node[data-node-type=iterate] .progress-section .progress-bar-container .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  border-radius: 12px;
  transition: width 0.3s ease;
}
.dashboard-node[data-node-type=iterate] .progress-section .progress-percent {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  font-family: "Fira Code", monospace;
  color: #0369a1;
}
.dashboard-node[data-node-type=iterate] .progress-section .status-display {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  padding: 8px;
  background: #f9fafb;
  border-radius: 4px;
  font-style: italic;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls {
  display: flex;
  gap: 10px;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn .material-symbols-outlined {
  font-size: 18px;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.start-btn {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.start-btn:hover:not(:disabled) {
  background: #a7f3d0;
  border-color: #34d399;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.start-btn:active {
  transform: scale(0.98);
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.start-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.pause-btn {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.pause-btn:hover:not(:disabled) {
  background: #fde68a;
  border-color: #fbbf24;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.pause-btn:active {
  transform: scale(0.98);
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.pause-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.stop-btn {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.stop-btn:hover:not(:disabled) {
  background: #fecaca;
  border-color: #f87171;
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.stop-btn:active {
  transform: scale(0.98);
}
.dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.stop-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@keyframes iterateAppear {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.dashboard-node[data-node-type=iterate].just-created {
  animation: iterateAppear 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-color-scheme: dark) {
  .dashboard-node[data-node-type=iterate] {
    background: #0c4a6e;
    border-color: #0284c7;
  }
  .dashboard-node[data-node-type=iterate]:hover {
    border-color: #0ea5e9;
    box-shadow: rgba(14, 165, 233, 0.2) 0px 12px 32px;
  }
  .dashboard-node[data-node-type=iterate] .base-node-v2-header {
    background: #075985;
    border-bottom-color: #0284c7;
  }
  .dashboard-node[data-node-type=iterate] .base-node-v2-header .node-header-id,
  .dashboard-node[data-node-type=iterate] .base-node-v2-header .node-header-category,
  .dashboard-node[data-node-type=iterate] .base-node-v2-header .node-header-type {
    color: #e0f2fe;
  }
  .dashboard-node[data-node-type=iterate] .base-node-v2-header button {
    color: #e0f2fe;
  }
  .dashboard-node[data-node-type=iterate] .base-node-v2-header button:hover {
    background: rgba(14, 165, 233, 0.2);
  }
  .dashboard-node[data-node-type=iterate] .iterate-section {
    background: #1f2937;
    border-color: #374151;
  }
  .dashboard-node[data-node-type=iterate] .iterate-section-header {
    color: #38bdf8;
  }
  .dashboard-node[data-node-type=iterate] .config-section .config-row label {
    color: #d1d5db;
  }
  .dashboard-node[data-node-type=iterate] .config-section .config-row .config-input {
    background: #111827;
    border-color: #374151;
    color: #e5e7eb;
  }
  .dashboard-node[data-node-type=iterate] .config-section .config-row .config-input:focus {
    border-color: #0ea5e9;
  }
  .dashboard-node[data-node-type=iterate] .config-section .config-row .config-input:hover {
    border-color: #6b7280;
  }
  .dashboard-node[data-node-type=iterate] .progress-section .current-iteration {
    color: #d1d5db;
  }
  .dashboard-node[data-node-type=iterate] .progress-section .current-iteration strong {
    color: #38bdf8;
  }
  .dashboard-node[data-node-type=iterate] .progress-section .current-iteration .iteration-count {
    color: #0ea5e9;
  }
  .dashboard-node[data-node-type=iterate] .progress-section .progress-bar-container {
    background: #111827;
  }
  .dashboard-node[data-node-type=iterate] .progress-section .progress-percent {
    color: #38bdf8;
  }
  .dashboard-node[data-node-type=iterate] .progress-section .status-display {
    background: #111827;
    color: #9ca3af;
  }
  .dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.start-btn {
    background: #065f46;
    border-color: #047857;
    color: #d1fae5;
  }
  .dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.start-btn:hover:not(:disabled) {
    background: #047857;
  }
  .dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.pause-btn {
    background: #78350f;
    border-color: #92400e;
    color: #fef3c7;
  }
  .dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.pause-btn:hover:not(:disabled) {
    background: #92400e;
  }
  .dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.stop-btn {
    background: #7f1d1d;
    border-color: #991b1b;
    color: #fecaca;
  }
  .dashboard-node[data-node-type=iterate] .controls-section .iterate-controls .iterate-btn.stop-btn:hover:not(:disabled) {
    background: #991b1b;
  }
}
.node-copy-uri-btn {
  margin-left: 0px;
  padding: 0px;
  background: transparent;
  border: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.cmd-group__wrapper {
  display: flex;
  border: none;
  background-color: #f5f5f5;
  padding: 3px 16px;
  width: fit-content;
  border-radius: 25px;
}
.cmd-group__wrapper:hover {
  cursor: default;
}
.cmd-group__wrapper .cmd-group__label {
  display: flex;
}

#dashboard-left-column-toggle {
  position: fixed;
  top: 40px;
  left: 10px;
  z-index: 10000;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background-color: transparent;
  border: none;
}

/* Dashboard Layout */
#dashboard-middle-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px;
  height: 100%;
  overflow-y: auto;
}

/* Dashboard Cards */
.dashboard-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}
.dashboard-card[data-state=if] {
  border-left: 4px solid #10b981;
}
.dashboard-card[data-state=else] {
  border-left: 4px solid #f59e0b;
}
.dashboard-card[data-state=error] {
  border-left: 4px solid #ef4444;
}

.dashboard-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  background: var(--background-color);
  gap: 16px;
  flex-wrap: wrap;
}

.dashboard-card-grabber {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: grab;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--surface-color);
  transition: all 0.2s;
  user-select: none;
}
.dashboard-card-grabber:active {
  cursor: grabbing;
}
.dashboard-card-grabber:hover {
  background: var(--hover-color);
  border-color: var(--accent-color);
}
.dashboard-card-grabber .material-symbols-outlined {
  font-size: 20px;
  color: var(--text-secondary);
}
.dashboard-card-grabber .grabber-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.dashboard-card.dragging {
  opacity: 0.4;
}
.dashboard-card.drag-over {
  border-top: 3px solid var(--accent-color);
}

.dashboard-card-state-selector {
  display: flex;
  align-items: center;
}

.dashboard-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.dashboard-card-viz-selector {
  display: flex;
  align-items: center;
}

.dashboard-card-content {
  flex: 1;
  position: relative;
  min-height: 350px;
}

#dashboard-viz-top,
#dashboard-viz-middle,
#dashboard-viz-bottom {
  width: 100%;
  height: 100%;
  position: relative;
}

#dashboard-svg-top,
#dashboard-svg-middle,
#dashboard-svg-bottom {
  width: 100%;
  height: 100%;
  display: block;
}

/* Loading Spinner */
.viz-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.viz-loading .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.viz-loading p {
  margin-top: 12px;
  color: var(--text-secondary);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Dashboard Right Column - uses standard right-column structure */
/* The dashboard inherits styles from the main right-column SCSS */
/* CodeMirror Wrapper for JSON STATE */
#dashboard-json-state-container,
#dashboard-json-state-codemirror-wrapper {
  height: 100%;
  overflow: auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .dashboard-card {
    min-height: 300px;
  }
}
@media (max-width: 768px) {
  #dashboard-middle-column {
    gap: 15px;
    padding: 15px;
  }
  .dashboard-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/* Dashboard Left Column Styles */
#dashboard-left-column {
  /* Node and Arrow item selection animation */
}
#dashboard-left-column .dashboard-left-header {
  flex-shrink: 0;
}
#dashboard-left-column .dashboard-left-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  /* Scrollbar styling */
}
#dashboard-left-column .dashboard-left-content::-webkit-scrollbar {
  width: 8px;
}
#dashboard-left-column .dashboard-left-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}
#dashboard-left-column .dashboard-left-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
#dashboard-left-column .dashboard-left-content::-webkit-scrollbar-thumb:hover {
  background: #999;
}
#dashboard-left-column .left-column-section {
  border-bottom: 1px solid #e0e0e0;
}
#dashboard-left-column .left-column-section:last-child {
  border-bottom: none;
}
#dashboard-left-column .node-item,
#dashboard-left-column .arrow-item {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#dashboard-left-column .node-item[data-selected=true],
#dashboard-left-column .arrow-item[data-selected=true] {
  animation: blueBorderFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
#dashboard-left-column .node-item:hover,
#dashboard-left-column .arrow-item:hover {
  transform: translateX(2px);
}

/* Blue border fade-in animation */
@keyframes blueBorderFadeIn {
  0% {
    border-left-color: transparent;
    background: white;
  }
  100% {
    border-left-color: #2196f3;
    background: #e3f2fd;
  }
}
/* Hide connector dots when editor is focused */
.dashboard-node.editor-focused .connector-dot {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Drag over state for all dashboard nodes */
.dashboard-node.drag-over {
  background: rgba(33, 150, 243, 0.1) !important;
  border: 2px solid #2196f3 !important;
  transition: background 0.2s ease, border 0.2s ease;
}

/* Editor Node - Grid-based editor styling moved to node-types/_editorNode.scss */
/* ===== NODE HEADER METADATA SPANS STYLING ===== */
.node-header-label-container {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.node-header-id {
  font-weight: 600;
  transition: color 0.2s;
}
.node-header-id:hover {
  opacity: 0.8;
}

.node-header-separator {
  opacity: 0.5;
}

.node-header-category {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.node-header-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.node-header-type {
  font-weight: 500;
  font-family: "Fira Code", monospace;
  font-size: 12px;
  margin-right: 5px;
  opacity: 0.8;
  color: #444;
  transition: opacity 0.2s;
}
.node-header-type:hover {
  opacity: 1;
}

span[data-type]::before {
  content: "";
}

/* ===== START NODE STYLING ===== */
.dashboard-node[data-node-type=start] {
  position: absolute;
  background: transparent;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 32px;
  border: none;
  cursor: move;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease, height 0.3s ease;
}
.dashboard-node[data-node-type=start] .connector-dot {
  background: #4caf50;
}
.dashboard-node[data-node-type=start] .commandbar-header {
  padding: 12px 16px;
  border-bottom: none;
  background: transparent;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-node[data-node-type=start] .commandbar-header .commandbar-header-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-node[data-node-type=start] .commandbar-header .commandbar-header-content .material-symbols-outlined {
  font-size: 20px;
  color: #222;
}
.dashboard-node[data-node-type=start] .commandbar-header .commandbar-header-content .commandbar-title {
  font-size: 11px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.5px;
}
.dashboard-node[data-node-type=start] .commandbar-header .commandbar-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-node[data-node-type=start] .commandbar-header .commandbar-header-actions button {
  background: transparent;
  border: none;
  color: #222;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}
.dashboard-node[data-node-type=start] .commandbar-header .commandbar-header-actions button .material-symbols-outlined {
  font-size: 18px;
}
.dashboard-node[data-node-type=start] .commandbar-header .commandbar-header-actions button:hover {
  background: rgba(0, 0, 0, 0.05);
}
.dashboard-node[data-node-type=start] > div:not(.connector-dot):not(.commandbar-header) {
  flex: 1;
  display: flex;
  overflow: hidden;
  min-height: 40px;
}
.dashboard-node[data-node-type=start] .start-content {
  flex: 1;
  overflow: auto;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 40px;
  align-items: center;
  justify-content: center;
}
.dashboard-node[data-node-type=start] .start-sidebar {
  width: 0;
  overflow: hidden;
  background: #f5f5f5;
  border-left: none;
  transition: width 0.3s ease;
  display: flex;
  flex-direction: column;
}
.dashboard-node[data-node-type=start] .start-sidebar > div:first-child {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  background: white;
}
.dashboard-node[data-node-type=start] .start-sidebar > div:first-child > div {
  font-weight: 600;
  font-size: 13px;
  color: #4caf50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dashboard-node[data-node-type=start] .start-sidebar > div:last-child {
  flex: 1;
  overflow: auto;
  padding: 16px;
}
.dashboard-node[data-node-type=start] .start-sidebar > div:last-child > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-node[data-node-type=start] .start-sidebar > div:last-child > div button {
  padding: 12px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-node[data-node-type=start] .start-sidebar > div:last-child > div button .material-symbols-outlined {
  font-size: 18px;
  color: #4caf50;
}
.dashboard-node[data-node-type=start] .start-sidebar > div:last-child > div button span:last-child {
  font-weight: 500;
}
.dashboard-node[data-node-type=start] .start-sidebar > div:last-child > div button:hover {
  background: #f5f5f5;
  border-color: #4caf50;
}

.start-timestamp {
  font-size: 10px;
  color: #666;
  font-family: "Courier New", monospace;
}

#test-summary-tables {
  padding: 20px;
}
#test-summary-tables .summary-table {
  display: none;
}
#test-summary-tables .summary-table.active {
  display: block;
}
#test-summary-tables .summary-table .summary-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4CAF50;
}
#test-summary-tables .summary-table .summary-table-content {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 6px;
  color: #666;
  font-size: 14px;
  min-height: 200px;
}
