/*
 * Graph Node connector visibility override.
 * Kept CSS-only so the existing graph data, routing, scan, and workspace
 * behaviour remain untouched across desktop and mobile renderers.
 */
.react-flow__edge-path {
  stroke: var(--accent);
  stroke-width: 2.8px;
  stroke-opacity: 0.96;
}

.react-flow__edge.selected .react-flow__edge-path,
.react-flow__edge:focus .react-flow__edge-path,
.react-flow__edge:focus-visible .react-flow__edge-path,
.react-flow__edge:hover .react-flow__edge-path {
  stroke: var(--accent-hover);
  stroke-width: 3.4px;
  stroke-opacity: 1;
}

.react-flow__connectionline {
  stroke: var(--accent);
  stroke-width: 2.8px;
  stroke-opacity: 0.96;
}
