ui-sniper 3.2.0 → 3.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3706,7 +3706,7 @@ var styles_module_default4 = classNames5;
3706
3706
 
3707
3707
  // src/components/xray-overlay/index.tsx
3708
3708
  var import_jsx_runtime7 = require("react/jsx-runtime");
3709
- function XRayOverlay({ isActive, isDarkMode }) {
3709
+ function XRayOverlay({ isActive, isDarkMode, isFrozen }) {
3710
3710
  const [hoveredNode, setHoveredNode] = (0, import_react4.useState)(null);
3711
3711
  const [stylesData, setStylesData] = (0, import_react4.useState)({});
3712
3712
  const [cursorPos, setCursorPos] = (0, import_react4.useState)({ x: 0, y: 0 });
@@ -3716,6 +3716,7 @@ function XRayOverlay({ isActive, isDarkMode }) {
3716
3716
  return;
3717
3717
  }
3718
3718
  const onMouseMove = (e) => {
3719
+ if (isFrozen) return;
3719
3720
  setCursorPos({ x: e.clientX, y: e.clientY });
3720
3721
  const target = e.target;
3721
3722
  if (target.closest("[data-ui-sniper-toolbar]") || target.closest("[data-ui-sniper-root]") || target.closest("[data-review-panel]")) {
@@ -3739,7 +3740,7 @@ function XRayOverlay({ isActive, isDarkMode }) {
3739
3740
  };
3740
3741
  window.addEventListener("mousemove", onMouseMove);
3741
3742
  return () => window.removeEventListener("mousemove", onMouseMove);
3742
- }, [isActive]);
3743
+ }, [isActive, isFrozen]);
3743
3744
  if (!isActive || !hoveredNode) return null;
3744
3745
  const rect = hoveredNode.getBoundingClientRect();
3745
3746
  return (0, import_react_dom2.createPortal)(
@@ -7879,20 +7880,6 @@ async function getDomCapture() {
7879
7880
  }
7880
7881
  }
7881
7882
  function findCaptureTarget(captureX, captureY, captureW, captureH) {
7882
- const cx = captureX + captureW / 2;
7883
- const cy = captureY + captureH / 2;
7884
- const elements = document.elementsFromPoint(cx, cy);
7885
- for (const el of elements) {
7886
- if (!(el instanceof HTMLElement)) continue;
7887
- if (el.hasAttribute("data-ui-sniper-root")) continue;
7888
- if (el.closest?.("[data-ui-sniper-root]")) continue;
7889
- if (el.tagName === "CANVAS") continue;
7890
- if (el === document.documentElement || el === document.body) continue;
7891
- const rect = el.getBoundingClientRect();
7892
- if (rect.left <= captureX + captureW * 0.1 && rect.top <= captureY + captureH * 0.1 && rect.right >= captureX + captureW * 0.9 && rect.bottom >= captureY + captureH * 0.9) {
7893
- return el;
7894
- }
7895
- }
7896
7883
  return document.body;
7897
7884
  }
7898
7885
  async function captureDomRegion(regionX, regionY, regionW, regionH, strokes, padding = 32, quality = 0.85, piiConfig) {
@@ -7908,8 +7895,6 @@ async function captureDomRegion(regionX, regionY, regionW, regionH, strokes, pad
7908
7895
  const outH = Math.round(captureH * outScale);
7909
7896
  if (outW < 1 || outH < 1) return null;
7910
7897
  const uiSniperRoot = document.querySelector("[data-ui-sniper-root]");
7911
- const prevVisibility = uiSniperRoot?.style.visibility;
7912
- if (uiSniperRoot) uiSniperRoot.style.visibility = "hidden";
7913
7898
  let restorePII;
7914
7899
  if (piiConfig?.enabled) {
7915
7900
  const { applyDOMRedaction: applyDOMRedaction2 } = await Promise.resolve().then(() => (init_pii_redaction(), pii_redaction_exports));
@@ -7971,13 +7956,28 @@ async function captureDomRegion(regionX, regionY, regionW, regionH, strokes, pad
7971
7956
  if (strokes && strokes.length > 0) {
7972
7957
  drawStrokesOnCanvas(ctx, strokes, captureX, captureY, outScale);
7973
7958
  }
7959
+ const borderX = (regionX - captureX) * outScale;
7960
+ const borderY = (regionY - captureY) * outScale;
7961
+ const borderW = regionW * outScale;
7962
+ const borderH = regionH * outScale;
7963
+ ctx.fillStyle = "rgba(0, 0, 0, 0.4)";
7964
+ ctx.fillRect(0, 0, outW, outH);
7965
+ ctx.clearRect(borderX, borderY, borderW, borderH);
7966
+ ctx.save();
7967
+ ctx.strokeStyle = "#8B5CF6";
7968
+ ctx.lineWidth = Math.max(3, 4 * outScale);
7969
+ ctx.strokeRect(borderX, borderY, borderW, borderH);
7970
+ ctx.shadowColor = "rgba(139, 92, 246, 0.8)";
7971
+ ctx.shadowBlur = Math.max(10, 20 * outScale);
7972
+ ctx.strokeRect(borderX, borderY, borderW, borderH);
7973
+ ctx.restore();
7974
7974
  return canvas.toDataURL("image/jpeg", quality);
7975
7975
  } catch (err) {
7976
7976
  console.warn("[UI Sniper] DOM capture failed:", err);
7977
7977
  return null;
7978
7978
  } finally {
7979
7979
  restorePII?.();
7980
- if (uiSniperRoot) uiSniperRoot.style.visibility = prevVisibility ?? "";
7980
+ if (uiSniperRoot) uiSniperRoot.style.visibility = "";
7981
7981
  }
7982
7982
  }
7983
7983
  function drawStrokesOnCanvas(ctx, strokes, originX, originY, scale) {
@@ -8122,8 +8122,8 @@ function useUISniper() {
8122
8122
  var import_react9 = require("react");
8123
8123
 
8124
8124
  // src/components/review-panel/styles.module.scss
8125
- var css6 = '@keyframes styles-module__reviewPanelIn___1sNcb {\n from {\n opacity: 0;\n transform: translateY(12px) scale(0.97);\n }\n to {\n opacity: 1;\n transform: translateY(0) scale(1);\n }\n}\n@keyframes styles-module__reviewPanelOut___7C-Bb {\n from {\n opacity: 1;\n transform: translateY(0) scale(1);\n }\n to {\n opacity: 0;\n transform: translateY(12px) scale(0.97);\n }\n}\n@keyframes styles-module__cardFlipIn___XU-cU {\n from {\n opacity: 0;\n transform: translateY(6px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n@keyframes styles-module__reviewPulse___rIvyF {\n 0%, 100% {\n transform: scale(1);\n }\n 50% {\n transform: scale(1.15);\n }\n}\n.styles-module__reviewPanel___z4gdL {\n position: fixed;\n bottom: 80px;\n right: 1.25rem;\n width: 360px;\n max-height: calc(100vh - 120px);\n background: #141414;\n border-radius: 20px;\n border: 1px solid rgba(255, 255, 255, 0.08);\n box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);\n display: flex;\n flex-direction: column;\n overflow: hidden;\n z-index: 99999;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n animation: styles-module__reviewPanelIn___1sNcb 0.28s cubic-bezier(0.19, 1, 0.22, 1) forwards;\n}\n.styles-module__reviewPanel___z4gdL.styles-module__exiting___l4pmU {\n animation: styles-module__reviewPanelOut___7C-Bb 0.2s cubic-bezier(0.4, 0, 1, 1) forwards;\n pointer-events: none;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewPanel___z4gdL {\n background: #ffffff;\n border-color: rgba(0, 0, 0, 0.08);\n box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);\n}\n\n.styles-module__panelHeader___r8Uv9 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 14px 16px 12px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n flex-shrink: 0;\n}\n[data-ui-sniper-theme=light] .styles-module__panelHeader___r8Uv9 {\n border-bottom-color: rgba(0, 0, 0, 0.07);\n}\n\n.styles-module__panelTitle___8rA2H {\n display: flex;\n align-items: center;\n gap: 8px;\n color: rgba(255, 255, 255, 0.9);\n font-size: 13px;\n font-weight: 600;\n letter-spacing: -0.01em;\n}\n[data-ui-sniper-theme=light] .styles-module__panelTitle___8rA2H {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__panelTitleIcon___IODxi {\n width: 22px;\n height: 22px;\n border-radius: 6px;\n background: rgba(255, 255, 255, 0.08);\n display: flex;\n align-items: center;\n justify-content: center;\n color: rgba(255, 255, 255, 0.7);\n}\n[data-ui-sniper-theme=light] .styles-module__panelTitleIcon___IODxi {\n background: rgba(0, 0, 0, 0.06);\n color: rgba(0, 0, 0, 0.6);\n}\n\n.styles-module__panelCount___lV7Px {\n font-size: 11px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n background: rgba(255, 255, 255, 0.06);\n padding: 2px 8px;\n border-radius: 100px;\n margin-left: 2px;\n}\n[data-ui-sniper-theme=light] .styles-module__panelCount___lV7Px {\n color: rgba(0, 0, 0, 0.4);\n background: rgba(0, 0, 0, 0.06);\n}\n\n.styles-module__panelHeaderActions___CcGKX {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n\n.styles-module__panelIconBtn___GsW4v {\n width: 28px;\n height: 28px;\n border-radius: 50%;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.5);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__panelIconBtn___GsW4v:hover {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__panelIconBtn___GsW4v {\n color: rgba(0, 0, 0, 0.4);\n}\n[data-ui-sniper-theme=light] .styles-module__panelIconBtn___GsW4v:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__modeToggle___CYve- {\n display: flex;\n align-items: center;\n gap: 2px;\n padding: 10px 16px 2px;\n flex-shrink: 0;\n}\n\n.styles-module__modeBtn___Awpty {\n flex: 1;\n height: 28px;\n border: none;\n border-radius: 8px;\n background: transparent;\n color: rgba(255, 255, 255, 0.35);\n font-size: 11.5px;\n font-weight: 500;\n cursor: pointer;\n transition: background 0.15s ease, color 0.15s ease;\n letter-spacing: 0.01em;\n}\n.styles-module__modeBtn___Awpty:hover {\n color: rgba(255, 255, 255, 0.6);\n background: rgba(255, 255, 255, 0.04);\n}\n.styles-module__modeBtn___Awpty.styles-module__active___gLEBm {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty {\n color: rgba(0, 0, 0, 0.35);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty:hover {\n color: rgba(0, 0, 0, 0.6);\n background: rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty.styles-module__active___gLEBm {\n background: rgba(0, 0, 0, 0.08);\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__emptyState___qSyQN {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 40px 24px;\n gap: 10px;\n text-align: center;\n}\n\n.styles-module__emptyIcon___OBMKU {\n width: 40px;\n height: 40px;\n border-radius: 12px;\n background: rgba(255, 255, 255, 0.05);\n display: flex;\n align-items: center;\n justify-content: center;\n color: rgba(255, 255, 255, 0.2);\n margin-bottom: 4px;\n}\n[data-ui-sniper-theme=light] .styles-module__emptyIcon___OBMKU {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.2);\n}\n\n.styles-module__emptyText___u5Rr1 {\n font-size: 13px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n}\n[data-ui-sniper-theme=light] .styles-module__emptyText___u5Rr1 {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__emptySubtext___loWrs {\n font-size: 11.5px;\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__emptySubtext___loWrs {\n color: rgba(0, 0, 0, 0.25);\n}\n\n.styles-module__cardList___UMVAa {\n flex: 1;\n overflow-y: auto;\n padding: 10px 12px 12px;\n display: flex;\n flex-direction: column;\n gap: 8px;\n scrollbar-width: thin;\n scrollbar-color: rgba(255, 255, 255, 0.12) transparent;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar {\n width: 4px;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar-track {\n background: transparent;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar-thumb {\n background: rgba(255, 255, 255, 0.12);\n border-radius: 2px;\n}\n[data-ui-sniper-theme=light] .styles-module__cardList___UMVAa {\n scrollbar-color: rgba(0, 0, 0, 0.1) transparent;\n}\n[data-ui-sniper-theme=light] .styles-module__cardList___UMVAa::-webkit-scrollbar-thumb {\n background: rgba(0, 0, 0, 0.1);\n}\n\n.styles-module__reviewCard___LEbPO {\n background: rgba(255, 255, 255, 0.04);\n border: 1px solid rgba(255, 255, 255, 0.07);\n border-radius: 12px;\n padding: 12px;\n cursor: pointer;\n transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;\n animation: styles-module__cardFlipIn___XU-cU 0.2s ease-out both;\n}\n.styles-module__reviewCard___LEbPO:hover {\n background: rgba(255, 255, 255, 0.07);\n border-color: rgba(255, 255, 255, 0.12);\n}\n.styles-module__reviewCard___LEbPO:active {\n transform: scale(0.985);\n}\n.styles-module__reviewCard___LEbPO.styles-module__reviewed___aXsqh {\n opacity: 0.45;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCard___LEbPO {\n background: rgba(0, 0, 0, 0.02);\n border-color: rgba(0, 0, 0, 0.07);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCard___LEbPO:hover {\n background: rgba(0, 0, 0, 0.04);\n border-color: rgba(0, 0, 0, 0.12);\n}\n\n.styles-module__cardTop___FRDLH {\n display: flex;\n align-items: flex-start;\n gap: 10px;\n}\n\n.styles-module__cardBadge___EZIAJ {\n flex-shrink: 0;\n width: 22px;\n height: 22px;\n border-radius: 50%;\n background: var(--ui-sniper-color-accent, #3c82f7);\n color: #fff;\n font-size: 10px;\n font-weight: 700;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-top: 1px;\n}\n\n.styles-module__cardContent___LYk3n {\n flex: 1;\n min-width: 0;\n}\n\n.styles-module__cardElement___XJpXk {\n font-size: 11px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.4);\n margin-bottom: 3px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__cardElement___XJpXk {\n color: rgba(0, 0, 0, 0.4);\n}\n\n.styles-module__cardComment___w0trE {\n font-size: 13px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.85);\n line-height: 1.45;\n word-break: break-word;\n}\n[data-ui-sniper-theme=light] .styles-module__cardComment___w0trE {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__cardScreenshot___rv0u5 {\n margin-top: 10px;\n border-radius: 8px;\n overflow: hidden;\n border: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__cardScreenshot___rv0u5 img {\n display: block;\n width: 100%;\n height: auto;\n max-height: 120px;\n object-fit: cover;\n}\n[data-ui-sniper-theme=light] .styles-module__cardScreenshot___rv0u5 {\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__cardSelectedText___8GX1g {\n margin-top: 8px;\n padding: 6px 8px;\n background: rgba(255, 255, 255, 0.04);\n border-left: 2px solid rgba(255, 255, 255, 0.15);\n border-radius: 0 6px 6px 0;\n font-size: 11.5px;\n color: rgba(255, 255, 255, 0.45);\n font-style: italic;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__cardSelectedText___8GX1g {\n background: rgba(0, 0, 0, 0.03);\n border-left-color: rgba(0, 0, 0, 0.15);\n color: rgba(0, 0, 0, 0.45);\n}\n\n.styles-module__cardActions___Macsz {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-top: 10px;\n padding-top: 8px;\n border-top: 1px solid rgba(255, 255, 255, 0.06);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActions___Macsz {\n border-top-color: rgba(0, 0, 0, 0.06);\n}\n\n.styles-module__cardMeta___9ptB7 {\n font-size: 10.5px;\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__cardMeta___9ptB7 {\n color: rgba(0, 0, 0, 0.25);\n}\n\n.styles-module__cardActionBtns___dMPFQ {\n display: flex;\n gap: 4px;\n}\n\n.styles-module__cardActionBtn___2sVfv {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.3);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__cardActionBtn___2sVfv:hover {\n background: rgba(255, 255, 255, 0.08);\n color: rgba(255, 255, 255, 0.75);\n}\n.styles-module__cardActionBtn___2sVfv.styles-module__reviewedBtn___0ZT6J {\n color: var(--ui-sniper-color-green, #22c55e);\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv {\n color: rgba(0, 0, 0, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.7);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv.styles-module__reviewedBtn___0ZT6J {\n color: #16a34a;\n background: rgba(22, 163, 74, 0.12);\n}\n\n.styles-module__flashcardArea___mDFIj {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n padding: 12px 16px 16px;\n gap: 12px;\n overflow: hidden;\n}\n\n.styles-module__flashcard___Cczc5 {\n width: 100%;\n flex: 1;\n background: rgba(255, 255, 255, 0.04);\n border: 1px solid rgba(255, 255, 255, 0.09);\n border-radius: 16px;\n display: flex;\n flex-direction: column;\n overflow: hidden;\n animation: styles-module__cardFlipIn___XU-cU 0.22s ease-out both;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcard___Cczc5 {\n background: rgba(0, 0, 0, 0.02);\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__flashcardHeader___jQA9j {\n display: flex;\n align-items: center;\n gap: 8px;\n padding: 12px 14px 0;\n}\n\n.styles-module__flashcardBadge___oxj9N {\n width: 26px;\n height: 26px;\n border-radius: 50%;\n background: var(--ui-sniper-color-accent, #3c82f7);\n color: #fff;\n font-size: 11px;\n font-weight: 700;\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n}\n\n.styles-module__flashcardElement___LRiIM {\n font-size: 11.5px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardElement___LRiIM {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__flashcardBody___7OpWs {\n flex: 1;\n padding: 12px 14px;\n display: flex;\n flex-direction: column;\n gap: 10px;\n overflow-y: auto;\n scrollbar-width: thin;\n scrollbar-color: rgba(255, 255, 255, 0.1) transparent;\n}\n\n.styles-module__flashcardComment___V9CyW {\n font-size: 15px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.9);\n line-height: 1.55;\n word-break: break-word;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardComment___V9CyW {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__flashcardScreenshot___TA8ev {\n border-radius: 10px;\n overflow: hidden;\n border: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__flashcardScreenshot___TA8ev img {\n display: block;\n width: 100%;\n height: auto;\n max-height: 160px;\n object-fit: cover;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardScreenshot___TA8ev {\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__flashcardSelectedText___qTc-g {\n padding: 8px 10px;\n background: rgba(255, 255, 255, 0.04);\n border-left: 2px solid rgba(255, 255, 255, 0.15);\n border-radius: 0 8px 8px 0;\n font-size: 12px;\n color: rgba(255, 255, 255, 0.45);\n font-style: italic;\n line-height: 1.5;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardSelectedText___qTc-g {\n background: rgba(0, 0, 0, 0.03);\n border-left-color: rgba(0, 0, 0, 0.15);\n color: rgba(0, 0, 0, 0.45);\n}\n\n.styles-module__flashcardNav___VJss5 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n flex-shrink: 0;\n padding: 0 2px;\n}\n\n.styles-module__flashcardNavBtn___6ETeG {\n width: 34px;\n height: 34px;\n border-radius: 50%;\n border: 1px solid rgba(255, 255, 255, 0.1);\n background: rgba(255, 255, 255, 0.04);\n color: rgba(255, 255, 255, 0.6);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;\n}\n.styles-module__flashcardNavBtn___6ETeG:hover:not(:disabled) {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n border-color: rgba(255, 255, 255, 0.18);\n}\n.styles-module__flashcardNavBtn___6ETeG:active:not(:disabled) {\n transform: scale(0.9);\n}\n.styles-module__flashcardNavBtn___6ETeG:disabled {\n opacity: 0.25;\n cursor: not-allowed;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardNavBtn___6ETeG {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardNavBtn___6ETeG:hover:not(:disabled) {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__flashcardProgress___Sfspj {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.styles-module__progressDots___Pf-WJ {\n display: flex;\n gap: 5px;\n}\n\n.styles-module__progressDot___Jpqcs {\n width: 6px;\n height: 6px;\n border-radius: 50%;\n background: rgba(255, 255, 255, 0.15);\n transition: background 0.2s ease, transform 0.2s ease;\n}\n.styles-module__progressDot___Jpqcs.styles-module__active___gLEBm {\n background: var(--ui-sniper-color-accent, #3c82f7);\n transform: scale(1.2);\n}\n.styles-module__progressDot___Jpqcs.styles-module__reviewed___aXsqh {\n background: var(--ui-sniper-color-green, #22c55e);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs {\n background: rgba(0, 0, 0, 0.12);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs.styles-module__active___gLEBm {\n background: var(--ui-sniper-color-accent, #3c82f7);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs.styles-module__reviewed___aXsqh {\n background: #16a34a;\n}\n\n.styles-module__progressText___ydmHE {\n font-size: 11.5px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.3);\n min-width: 36px;\n text-align: center;\n}\n[data-ui-sniper-theme=light] .styles-module__progressText___ydmHE {\n color: rgba(0, 0, 0, 0.3);\n}\n\n.styles-module__flashcardBottomActions___7C6rZ {\n display: flex;\n gap: 6px;\n width: 100%;\n flex-shrink: 0;\n}\n\n.styles-module__flashcardActionBtn___-2Zat {\n flex: 1;\n height: 34px;\n border: 1px solid rgba(255, 255, 255, 0.08);\n border-radius: 10px;\n background: rgba(255, 255, 255, 0.04);\n color: rgba(255, 255, 255, 0.6);\n font-size: 12px;\n font-weight: 500;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 5px;\n transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;\n}\n.styles-module__flashcardActionBtn___-2Zat:hover {\n background: rgba(255, 255, 255, 0.09);\n color: rgba(255, 255, 255, 0.9);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx {\n color: var(--ui-sniper-color-green, #22c55e);\n border-color: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 25%, transparent);\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 8%, transparent);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx:hover {\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 16%, transparent);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__jumpBtn___EzLcP {\n max-width: 40px;\n flex: none;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat {\n border-color: rgba(0, 0, 0, 0.08);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx {\n color: #16a34a;\n border-color: rgba(22, 163, 74, 0.2);\n background: rgba(22, 163, 74, 0.07);\n}\n\n.styles-module__reviewComplete___MCWa9 {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 28px 20px;\n gap: 10px;\n text-align: center;\n}\n\n.styles-module__reviewCompleteIcon___unw0x {\n width: 48px;\n height: 48px;\n border-radius: 50%;\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 15%, transparent);\n color: var(--ui-sniper-color-green, #22c55e);\n display: flex;\n align-items: center;\n justify-content: center;\n animation: styles-module__reviewPulse___rIvyF 0.6s ease-out both;\n margin-bottom: 4px;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteIcon___unw0x {\n background: rgba(22, 163, 74, 0.1);\n color: #16a34a;\n}\n\n.styles-module__reviewCompleteTitle___MeHeA {\n font-size: 14px;\n font-weight: 600;\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteTitle___MeHeA {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__reviewCompleteSubtitle___9fJNK {\n font-size: 12px;\n color: rgba(255, 255, 255, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteSubtitle___9fJNK {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__resetReviewBtn___06LuY {\n margin-top: 8px;\n height: 30px;\n padding: 0 14px;\n border-radius: 8px;\n border: 1px solid rgba(255, 255, 255, 0.1);\n background: rgba(255, 255, 255, 0.05);\n color: rgba(255, 255, 255, 0.5);\n font-size: 12px;\n font-weight: 500;\n cursor: pointer;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__resetReviewBtn___06LuY:hover {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__resetReviewBtn___06LuY {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.04);\n color: rgba(0, 0, 0, 0.45);\n}\n[data-ui-sniper-theme=light] .styles-module__resetReviewBtn___06LuY:hover {\n background: rgba(0, 0, 0, 0.08);\n color: rgba(0, 0, 0, 0.8);\n}';
8126
- var classNames6 = { "reviewPanel": "styles-module__reviewPanel___z4gdL", "reviewPanelIn": "styles-module__reviewPanelIn___1sNcb", "exiting": "styles-module__exiting___l4pmU", "reviewPanelOut": "styles-module__reviewPanelOut___7C-Bb", "panelHeader": "styles-module__panelHeader___r8Uv9", "panelTitle": "styles-module__panelTitle___8rA2H", "panelTitleIcon": "styles-module__panelTitleIcon___IODxi", "panelCount": "styles-module__panelCount___lV7Px", "panelHeaderActions": "styles-module__panelHeaderActions___CcGKX", "panelIconBtn": "styles-module__panelIconBtn___GsW4v", "modeToggle": "styles-module__modeToggle___CYve-", "modeBtn": "styles-module__modeBtn___Awpty", "active": "styles-module__active___gLEBm", "emptyState": "styles-module__emptyState___qSyQN", "emptyIcon": "styles-module__emptyIcon___OBMKU", "emptyText": "styles-module__emptyText___u5Rr1", "emptySubtext": "styles-module__emptySubtext___loWrs", "cardList": "styles-module__cardList___UMVAa", "reviewCard": "styles-module__reviewCard___LEbPO", "cardFlipIn": "styles-module__cardFlipIn___XU-cU", "reviewed": "styles-module__reviewed___aXsqh", "cardTop": "styles-module__cardTop___FRDLH", "cardBadge": "styles-module__cardBadge___EZIAJ", "cardContent": "styles-module__cardContent___LYk3n", "cardElement": "styles-module__cardElement___XJpXk", "cardComment": "styles-module__cardComment___w0trE", "cardScreenshot": "styles-module__cardScreenshot___rv0u5", "cardSelectedText": "styles-module__cardSelectedText___8GX1g", "cardActions": "styles-module__cardActions___Macsz", "cardMeta": "styles-module__cardMeta___9ptB7", "cardActionBtns": "styles-module__cardActionBtns___dMPFQ", "cardActionBtn": "styles-module__cardActionBtn___2sVfv", "reviewedBtn": "styles-module__reviewedBtn___0ZT6J", "flashcardArea": "styles-module__flashcardArea___mDFIj", "flashcard": "styles-module__flashcard___Cczc5", "flashcardHeader": "styles-module__flashcardHeader___jQA9j", "flashcardBadge": "styles-module__flashcardBadge___oxj9N", "flashcardElement": "styles-module__flashcardElement___LRiIM", "flashcardBody": "styles-module__flashcardBody___7OpWs", "flashcardComment": "styles-module__flashcardComment___V9CyW", "flashcardScreenshot": "styles-module__flashcardScreenshot___TA8ev", "flashcardSelectedText": "styles-module__flashcardSelectedText___qTc-g", "flashcardNav": "styles-module__flashcardNav___VJss5", "flashcardNavBtn": "styles-module__flashcardNavBtn___6ETeG", "flashcardProgress": "styles-module__flashcardProgress___Sfspj", "progressDots": "styles-module__progressDots___Pf-WJ", "progressDot": "styles-module__progressDot___Jpqcs", "progressText": "styles-module__progressText___ydmHE", "flashcardBottomActions": "styles-module__flashcardBottomActions___7C6rZ", "flashcardActionBtn": "styles-module__flashcardActionBtn___-2Zat", "markDoneBtn": "styles-module__markDoneBtn___8KSUx", "jumpBtn": "styles-module__jumpBtn___EzLcP", "reviewComplete": "styles-module__reviewComplete___MCWa9", "reviewCompleteIcon": "styles-module__reviewCompleteIcon___unw0x", "reviewPulse": "styles-module__reviewPulse___rIvyF", "reviewCompleteTitle": "styles-module__reviewCompleteTitle___MeHeA", "reviewCompleteSubtitle": "styles-module__reviewCompleteSubtitle___9fJNK", "resetReviewBtn": "styles-module__resetReviewBtn___06LuY" };
8125
+ var css6 = '@keyframes styles-module__reviewPanelIn___1sNcb {\n from {\n opacity: 0;\n transform: translateY(12px) scale(0.97);\n }\n to {\n opacity: 1;\n transform: translateY(0) scale(1);\n }\n}\n@keyframes styles-module__reviewPanelOut___7C-Bb {\n from {\n opacity: 1;\n transform: translateY(0) scale(1);\n }\n to {\n opacity: 0;\n transform: translateY(12px) scale(0.97);\n }\n}\n@keyframes styles-module__cardFlipIn___XU-cU {\n from {\n opacity: 0;\n transform: translateY(6px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n@keyframes styles-module__reviewPulse___rIvyF {\n 0%, 100% {\n transform: scale(1);\n }\n 50% {\n transform: scale(1.15);\n }\n}\n.styles-module__reviewPanel___z4gdL {\n position: fixed;\n bottom: 80px;\n right: 1.25rem;\n width: 360px;\n max-height: calc(100vh - 120px);\n background: #141414;\n border-radius: 20px;\n border: 1px solid rgba(255, 255, 255, 0.08);\n box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);\n display: flex;\n flex-direction: column;\n overflow: hidden;\n z-index: 99999;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n animation: styles-module__reviewPanelIn___1sNcb 0.28s cubic-bezier(0.19, 1, 0.22, 1) forwards;\n}\n.styles-module__reviewPanel___z4gdL.styles-module__exiting___l4pmU {\n animation: styles-module__reviewPanelOut___7C-Bb 0.2s cubic-bezier(0.4, 0, 1, 1) forwards;\n pointer-events: none;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewPanel___z4gdL {\n background: #ffffff;\n border-color: rgba(0, 0, 0, 0.08);\n box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);\n}\n\n.styles-module__panelHeader___r8Uv9 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 14px 16px 12px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n flex-shrink: 0;\n}\n[data-ui-sniper-theme=light] .styles-module__panelHeader___r8Uv9 {\n border-bottom-color: rgba(0, 0, 0, 0.07);\n}\n\n.styles-module__panelTitle___8rA2H {\n display: flex;\n align-items: center;\n gap: 8px;\n color: rgba(255, 255, 255, 0.9);\n font-size: 13px;\n font-weight: 600;\n letter-spacing: -0.01em;\n}\n[data-ui-sniper-theme=light] .styles-module__panelTitle___8rA2H {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__panelTitleIcon___IODxi {\n width: 22px;\n height: 22px;\n border-radius: 6px;\n background: rgba(255, 255, 255, 0.08);\n display: flex;\n align-items: center;\n justify-content: center;\n color: rgba(255, 255, 255, 0.7);\n}\n[data-ui-sniper-theme=light] .styles-module__panelTitleIcon___IODxi {\n background: rgba(0, 0, 0, 0.06);\n color: rgba(0, 0, 0, 0.6);\n}\n\n.styles-module__panelCount___lV7Px {\n font-size: 11px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n background: rgba(255, 255, 255, 0.06);\n padding: 2px 8px;\n border-radius: 100px;\n margin-left: 2px;\n}\n[data-ui-sniper-theme=light] .styles-module__panelCount___lV7Px {\n color: rgba(0, 0, 0, 0.4);\n background: rgba(0, 0, 0, 0.06);\n}\n\n.styles-module__panelHeaderActions___CcGKX {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n\n.styles-module__panelIconBtn___GsW4v {\n width: 28px;\n height: 28px;\n border-radius: 50%;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.5);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__panelIconBtn___GsW4v:hover {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__panelIconBtn___GsW4v {\n color: rgba(0, 0, 0, 0.4);\n}\n[data-ui-sniper-theme=light] .styles-module__panelIconBtn___GsW4v:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__modeToggle___CYve- {\n display: flex;\n align-items: center;\n gap: 2px;\n padding: 10px 16px 2px;\n flex-shrink: 0;\n}\n\n.styles-module__modeBtn___Awpty {\n flex: 1;\n height: 28px;\n border: none;\n border-radius: 8px;\n background: transparent;\n color: rgba(255, 255, 255, 0.35);\n font-size: 11.5px;\n font-weight: 500;\n cursor: pointer;\n transition: background 0.15s ease, color 0.15s ease;\n letter-spacing: 0.01em;\n}\n.styles-module__modeBtn___Awpty:hover {\n color: rgba(255, 255, 255, 0.6);\n background: rgba(255, 255, 255, 0.04);\n}\n.styles-module__modeBtn___Awpty.styles-module__active___gLEBm {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty {\n color: rgba(0, 0, 0, 0.35);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty:hover {\n color: rgba(0, 0, 0, 0.6);\n background: rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty.styles-module__active___gLEBm {\n background: rgba(0, 0, 0, 0.08);\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__emptyState___qSyQN {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 40px 24px;\n gap: 10px;\n text-align: center;\n}\n\n.styles-module__emptyIcon___OBMKU {\n width: 40px;\n height: 40px;\n border-radius: 12px;\n background: rgba(255, 255, 255, 0.05);\n display: flex;\n align-items: center;\n justify-content: center;\n color: rgba(255, 255, 255, 0.2);\n margin-bottom: 4px;\n}\n[data-ui-sniper-theme=light] .styles-module__emptyIcon___OBMKU {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.2);\n}\n\n.styles-module__emptyText___u5Rr1 {\n font-size: 13px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n}\n[data-ui-sniper-theme=light] .styles-module__emptyText___u5Rr1 {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__emptySubtext___loWrs {\n font-size: 11.5px;\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__emptySubtext___loWrs {\n color: rgba(0, 0, 0, 0.25);\n}\n\n.styles-module__cardList___UMVAa {\n flex: 1;\n overflow-y: auto;\n padding: 10px 12px 12px;\n display: flex;\n flex-direction: column;\n gap: 8px;\n scrollbar-width: thin;\n scrollbar-color: rgba(255, 255, 255, 0.12) transparent;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar {\n width: 4px;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar-track {\n background: transparent;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar-thumb {\n background: rgba(255, 255, 255, 0.12);\n border-radius: 2px;\n}\n[data-ui-sniper-theme=light] .styles-module__cardList___UMVAa {\n scrollbar-color: rgba(0, 0, 0, 0.1) transparent;\n}\n[data-ui-sniper-theme=light] .styles-module__cardList___UMVAa::-webkit-scrollbar-thumb {\n background: rgba(0, 0, 0, 0.1);\n}\n\n.styles-module__reviewCard___LEbPO {\n background: rgba(255, 255, 255, 0.04);\n border: 1px solid rgba(255, 255, 255, 0.07);\n border-radius: 12px;\n padding: 12px;\n cursor: pointer;\n flex-shrink: 0;\n transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;\n animation: styles-module__cardFlipIn___XU-cU 0.2s ease-out both;\n}\n.styles-module__reviewCard___LEbPO:hover {\n background: rgba(255, 255, 255, 0.07);\n border-color: rgba(255, 255, 255, 0.12);\n}\n.styles-module__reviewCard___LEbPO:active {\n transform: scale(0.985);\n}\n.styles-module__reviewCard___LEbPO.styles-module__reviewed___aXsqh {\n opacity: 0.45;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCard___LEbPO {\n background: rgba(0, 0, 0, 0.02);\n border-color: rgba(0, 0, 0, 0.07);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCard___LEbPO:hover {\n background: rgba(0, 0, 0, 0.04);\n border-color: rgba(0, 0, 0, 0.12);\n}\n\n.styles-module__cardTop___FRDLH {\n display: flex;\n align-items: flex-start;\n gap: 10px;\n}\n\n.styles-module__cardBadge___EZIAJ {\n flex-shrink: 0;\n width: 22px;\n height: 22px;\n border-radius: 50%;\n background: var(--ui-sniper-color-accent, #3c82f7);\n color: #fff;\n font-size: 10px;\n font-weight: 700;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-top: 1px;\n}\n\n.styles-module__cardContent___LYk3n {\n flex: 1;\n min-width: 0;\n}\n\n.styles-module__cardElement___XJpXk {\n font-size: 11px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.4);\n margin-bottom: 3px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__cardElement___XJpXk {\n color: rgba(0, 0, 0, 0.4);\n}\n\n.styles-module__cardComment___w0trE {\n font-size: 13px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.85);\n line-height: 1.45;\n word-break: break-word;\n}\n[data-ui-sniper-theme=light] .styles-module__cardComment___w0trE {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__cardScreenshot___rv0u5 {\n margin-top: 10px;\n border-radius: 8px;\n overflow: hidden;\n border: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__cardScreenshot___rv0u5 img {\n display: block;\n width: 100%;\n height: auto;\n max-height: 120px;\n object-fit: cover;\n}\n[data-ui-sniper-theme=light] .styles-module__cardScreenshot___rv0u5 {\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__cardSelectedText___8GX1g {\n margin-top: 8px;\n padding: 6px 8px;\n background: rgba(255, 255, 255, 0.04);\n border-left: 2px solid rgba(255, 255, 255, 0.15);\n border-radius: 0 6px 6px 0;\n font-size: 11.5px;\n color: rgba(255, 255, 255, 0.45);\n font-style: italic;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__cardSelectedText___8GX1g {\n background: rgba(0, 0, 0, 0.03);\n border-left-color: rgba(0, 0, 0, 0.15);\n color: rgba(0, 0, 0, 0.45);\n}\n\n.styles-module__cardActions___Macsz {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-top: 10px;\n padding-top: 8px;\n border-top: 1px solid rgba(255, 255, 255, 0.06);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActions___Macsz {\n border-top-color: rgba(0, 0, 0, 0.06);\n}\n\n.styles-module__cardMeta___9ptB7 {\n font-size: 10.5px;\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__cardMeta___9ptB7 {\n color: rgba(0, 0, 0, 0.25);\n}\n\n.styles-module__cardActionBtns___dMPFQ {\n display: flex;\n gap: 4px;\n}\n\n.styles-module__cardActionBtn___2sVfv {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.3);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__cardActionBtn___2sVfv:hover {\n background: rgba(255, 255, 255, 0.08);\n color: rgba(255, 255, 255, 0.75);\n}\n.styles-module__cardActionBtn___2sVfv.styles-module__reviewedBtn___0ZT6J {\n color: var(--ui-sniper-color-green, #22c55e);\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 15%, transparent);\n}\n.styles-module__cardActionBtn___2sVfv.styles-module__deleteBtn___CoPUF:hover {\n color: var(--ui-sniper-color-red, #ef4444);\n background: color-mix(in srgb, var(--ui-sniper-color-red, #ef4444) 15%, transparent);\n}\n.styles-module__cardActionBtn___2sVfv.styles-module__copyBtn___oTyKC:hover {\n color: var(--ui-sniper-color-yellow, #eab308);\n background: color-mix(in srgb, var(--ui-sniper-color-yellow, #eab308) 15%, transparent);\n}\n.styles-module__cardActionBtn___2sVfv.styles-module__markDoneBtn___8KSUx:hover:not(.styles-module__reviewedBtn___0ZT6J) {\n color: var(--ui-sniper-color-green, #22c55e);\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv {\n color: rgba(0, 0, 0, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.7);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv.styles-module__reviewedBtn___0ZT6J {\n color: #16a34a;\n background: rgba(22, 163, 74, 0.12);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv.styles-module__deleteBtn___CoPUF:hover {\n color: #dc2626;\n background: rgba(220, 38, 38, 0.12);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv.styles-module__copyBtn___oTyKC:hover {\n color: #ca8a04;\n background: rgba(202, 138, 4, 0.12);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv.styles-module__markDoneBtn___8KSUx:hover:not(.styles-module__reviewedBtn___0ZT6J) {\n color: #16a34a;\n background: rgba(22, 163, 74, 0.12);\n}\n\n.styles-module__flashcardArea___mDFIj {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n padding: 12px 16px 16px;\n gap: 12px;\n overflow: hidden;\n}\n\n.styles-module__flashcard___Cczc5 {\n width: 100%;\n flex: 1;\n background: rgba(255, 255, 255, 0.04);\n border: 1px solid rgba(255, 255, 255, 0.09);\n border-radius: 16px;\n display: flex;\n flex-direction: column;\n overflow: hidden;\n animation: styles-module__cardFlipIn___XU-cU 0.22s ease-out both;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcard___Cczc5 {\n background: rgba(0, 0, 0, 0.02);\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__flashcardHeader___jQA9j {\n display: flex;\n align-items: center;\n gap: 8px;\n padding: 12px 14px 0;\n}\n\n.styles-module__flashcardBadge___oxj9N {\n width: 26px;\n height: 26px;\n border-radius: 50%;\n background: var(--ui-sniper-color-accent, #3c82f7);\n color: #fff;\n font-size: 11px;\n font-weight: 700;\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n}\n\n.styles-module__flashcardElement___LRiIM {\n font-size: 11.5px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardElement___LRiIM {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__flashcardBody___7OpWs {\n flex: 1;\n padding: 12px 14px;\n display: flex;\n flex-direction: column;\n gap: 10px;\n overflow-y: auto;\n scrollbar-width: thin;\n scrollbar-color: rgba(255, 255, 255, 0.1) transparent;\n}\n\n.styles-module__flashcardComment___V9CyW {\n font-size: 15px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.9);\n line-height: 1.55;\n word-break: break-word;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardComment___V9CyW {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__flashcardScreenshot___TA8ev {\n border-radius: 10px;\n overflow: hidden;\n border: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__flashcardScreenshot___TA8ev img {\n display: block;\n width: 100%;\n height: auto;\n max-height: 160px;\n object-fit: cover;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardScreenshot___TA8ev {\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__flashcardSelectedText___qTc-g {\n padding: 8px 10px;\n background: rgba(255, 255, 255, 0.04);\n border-left: 2px solid rgba(255, 255, 255, 0.15);\n border-radius: 0 8px 8px 0;\n font-size: 12px;\n color: rgba(255, 255, 255, 0.45);\n font-style: italic;\n line-height: 1.5;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardSelectedText___qTc-g {\n background: rgba(0, 0, 0, 0.03);\n border-left-color: rgba(0, 0, 0, 0.15);\n color: rgba(0, 0, 0, 0.45);\n}\n\n.styles-module__flashcardNav___VJss5 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n flex-shrink: 0;\n padding: 0 2px;\n}\n\n.styles-module__flashcardNavBtn___6ETeG {\n width: 34px;\n height: 34px;\n border-radius: 50%;\n border: 1px solid rgba(255, 255, 255, 0.1);\n background: rgba(255, 255, 255, 0.04);\n color: rgba(255, 255, 255, 0.6);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;\n}\n.styles-module__flashcardNavBtn___6ETeG:hover:not(:disabled) {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n border-color: rgba(255, 255, 255, 0.18);\n}\n.styles-module__flashcardNavBtn___6ETeG:active:not(:disabled) {\n transform: scale(0.9);\n}\n.styles-module__flashcardNavBtn___6ETeG:disabled {\n opacity: 0.25;\n cursor: not-allowed;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardNavBtn___6ETeG {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardNavBtn___6ETeG:hover:not(:disabled) {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__flashcardProgress___Sfspj {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.styles-module__progressDots___Pf-WJ {\n display: flex;\n gap: 5px;\n}\n\n.styles-module__progressDot___Jpqcs {\n width: 6px;\n height: 6px;\n border-radius: 50%;\n background: rgba(255, 255, 255, 0.15);\n transition: background 0.2s ease, transform 0.2s ease;\n}\n.styles-module__progressDot___Jpqcs.styles-module__active___gLEBm {\n background: var(--ui-sniper-color-accent, #3c82f7);\n transform: scale(1.2);\n}\n.styles-module__progressDot___Jpqcs.styles-module__reviewed___aXsqh {\n background: var(--ui-sniper-color-green, #22c55e);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs {\n background: rgba(0, 0, 0, 0.12);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs.styles-module__active___gLEBm {\n background: var(--ui-sniper-color-accent, #3c82f7);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs.styles-module__reviewed___aXsqh {\n background: #16a34a;\n}\n\n.styles-module__progressText___ydmHE {\n font-size: 11.5px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.3);\n min-width: 36px;\n text-align: center;\n}\n[data-ui-sniper-theme=light] .styles-module__progressText___ydmHE {\n color: rgba(0, 0, 0, 0.3);\n}\n\n.styles-module__flashcardBottomActions___7C6rZ {\n display: flex;\n gap: 6px;\n width: 100%;\n flex-shrink: 0;\n}\n\n.styles-module__flashcardActionBtn___-2Zat {\n flex: 1;\n height: 34px;\n border: 1px solid rgba(255, 255, 255, 0.08);\n border-radius: 10px;\n background: rgba(255, 255, 255, 0.04);\n color: rgba(255, 255, 255, 0.6);\n font-size: 12px;\n font-weight: 500;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 5px;\n transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;\n}\n.styles-module__flashcardActionBtn___-2Zat:hover {\n background: rgba(255, 255, 255, 0.09);\n color: rgba(255, 255, 255, 0.9);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx {\n color: var(--ui-sniper-color-green, #22c55e);\n border-color: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 25%, transparent);\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 8%, transparent);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx:hover {\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 16%, transparent);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__jumpBtn___EzLcP {\n max-width: 40px;\n flex: none;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat {\n border-color: rgba(0, 0, 0, 0.08);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx {\n color: #16a34a;\n border-color: rgba(22, 163, 74, 0.2);\n background: rgba(22, 163, 74, 0.07);\n}\n\n.styles-module__reviewComplete___MCWa9 {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 28px 20px;\n gap: 10px;\n text-align: center;\n}\n\n.styles-module__reviewCompleteIcon___unw0x {\n width: 48px;\n height: 48px;\n border-radius: 50%;\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 15%, transparent);\n color: var(--ui-sniper-color-green, #22c55e);\n display: flex;\n align-items: center;\n justify-content: center;\n animation: styles-module__reviewPulse___rIvyF 0.6s ease-out both;\n margin-bottom: 4px;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteIcon___unw0x {\n background: rgba(22, 163, 74, 0.1);\n color: #16a34a;\n}\n\n.styles-module__reviewCompleteTitle___MeHeA {\n font-size: 14px;\n font-weight: 600;\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteTitle___MeHeA {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__reviewCompleteSubtitle___9fJNK {\n font-size: 12px;\n color: rgba(255, 255, 255, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteSubtitle___9fJNK {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__resetReviewBtn___06LuY {\n margin-top: 8px;\n height: 30px;\n padding: 0 14px;\n border-radius: 8px;\n border: 1px solid rgba(255, 255, 255, 0.1);\n background: rgba(255, 255, 255, 0.05);\n color: rgba(255, 255, 255, 0.5);\n font-size: 12px;\n font-weight: 500;\n cursor: pointer;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__resetReviewBtn___06LuY:hover {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__resetReviewBtn___06LuY {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.04);\n color: rgba(0, 0, 0, 0.45);\n}\n[data-ui-sniper-theme=light] .styles-module__resetReviewBtn___06LuY:hover {\n background: rgba(0, 0, 0, 0.08);\n color: rgba(0, 0, 0, 0.8);\n}';
8126
+ var classNames6 = { "reviewPanel": "styles-module__reviewPanel___z4gdL", "reviewPanelIn": "styles-module__reviewPanelIn___1sNcb", "exiting": "styles-module__exiting___l4pmU", "reviewPanelOut": "styles-module__reviewPanelOut___7C-Bb", "panelHeader": "styles-module__panelHeader___r8Uv9", "panelTitle": "styles-module__panelTitle___8rA2H", "panelTitleIcon": "styles-module__panelTitleIcon___IODxi", "panelCount": "styles-module__panelCount___lV7Px", "panelHeaderActions": "styles-module__panelHeaderActions___CcGKX", "panelIconBtn": "styles-module__panelIconBtn___GsW4v", "modeToggle": "styles-module__modeToggle___CYve-", "modeBtn": "styles-module__modeBtn___Awpty", "active": "styles-module__active___gLEBm", "emptyState": "styles-module__emptyState___qSyQN", "emptyIcon": "styles-module__emptyIcon___OBMKU", "emptyText": "styles-module__emptyText___u5Rr1", "emptySubtext": "styles-module__emptySubtext___loWrs", "cardList": "styles-module__cardList___UMVAa", "reviewCard": "styles-module__reviewCard___LEbPO", "cardFlipIn": "styles-module__cardFlipIn___XU-cU", "reviewed": "styles-module__reviewed___aXsqh", "cardTop": "styles-module__cardTop___FRDLH", "cardBadge": "styles-module__cardBadge___EZIAJ", "cardContent": "styles-module__cardContent___LYk3n", "cardElement": "styles-module__cardElement___XJpXk", "cardComment": "styles-module__cardComment___w0trE", "cardScreenshot": "styles-module__cardScreenshot___rv0u5", "cardSelectedText": "styles-module__cardSelectedText___8GX1g", "cardActions": "styles-module__cardActions___Macsz", "cardMeta": "styles-module__cardMeta___9ptB7", "cardActionBtns": "styles-module__cardActionBtns___dMPFQ", "cardActionBtn": "styles-module__cardActionBtn___2sVfv", "reviewedBtn": "styles-module__reviewedBtn___0ZT6J", "deleteBtn": "styles-module__deleteBtn___CoPUF", "copyBtn": "styles-module__copyBtn___oTyKC", "markDoneBtn": "styles-module__markDoneBtn___8KSUx", "flashcardArea": "styles-module__flashcardArea___mDFIj", "flashcard": "styles-module__flashcard___Cczc5", "flashcardHeader": "styles-module__flashcardHeader___jQA9j", "flashcardBadge": "styles-module__flashcardBadge___oxj9N", "flashcardElement": "styles-module__flashcardElement___LRiIM", "flashcardBody": "styles-module__flashcardBody___7OpWs", "flashcardComment": "styles-module__flashcardComment___V9CyW", "flashcardScreenshot": "styles-module__flashcardScreenshot___TA8ev", "flashcardSelectedText": "styles-module__flashcardSelectedText___qTc-g", "flashcardNav": "styles-module__flashcardNav___VJss5", "flashcardNavBtn": "styles-module__flashcardNavBtn___6ETeG", "flashcardProgress": "styles-module__flashcardProgress___Sfspj", "progressDots": "styles-module__progressDots___Pf-WJ", "progressDot": "styles-module__progressDot___Jpqcs", "progressText": "styles-module__progressText___ydmHE", "flashcardBottomActions": "styles-module__flashcardBottomActions___7C6rZ", "flashcardActionBtn": "styles-module__flashcardActionBtn___-2Zat", "jumpBtn": "styles-module__jumpBtn___EzLcP", "reviewComplete": "styles-module__reviewComplete___MCWa9", "reviewCompleteIcon": "styles-module__reviewCompleteIcon___unw0x", "reviewPulse": "styles-module__reviewPulse___rIvyF", "reviewCompleteTitle": "styles-module__reviewCompleteTitle___MeHeA", "reviewCompleteSubtitle": "styles-module__reviewCompleteSubtitle___9fJNK", "resetReviewBtn": "styles-module__resetReviewBtn___06LuY" };
8127
8127
  if (typeof document !== "undefined") {
8128
8128
  let style = document.getElementById("feedback-tool-styles-review-panel-styles");
8129
8129
  if (!style) {
@@ -8256,7 +8256,7 @@ function ReviewPanel({
8256
8256
  "button",
8257
8257
  {
8258
8258
  type: "button",
8259
- className: styles_module_default5.cardActionBtn,
8259
+ className: `${styles_module_default5.cardActionBtn} ${styles_module_default5.deleteBtn}`,
8260
8260
  title: "Delete",
8261
8261
  onClick: (e) => {
8262
8262
  e.stopPropagation();
@@ -8274,7 +8274,7 @@ function ReviewPanel({
8274
8274
  "button",
8275
8275
  {
8276
8276
  type: "button",
8277
- className: styles_module_default5.cardActionBtn,
8277
+ className: `${styles_module_default5.cardActionBtn} ${styles_module_default5.copyBtn}`,
8278
8278
  title: "Copy",
8279
8279
  onClick: (e) => {
8280
8280
  e.stopPropagation();
@@ -8288,7 +8288,7 @@ function ReviewPanel({
8288
8288
  "button",
8289
8289
  {
8290
8290
  type: "button",
8291
- className: `${styles_module_default5.cardActionBtn} ${reviewedIds.has(ann.id) ? styles_module_default5.reviewedBtn : ""}`,
8291
+ className: `${styles_module_default5.cardActionBtn} ${styles_module_default5.markDoneBtn} ${reviewedIds.has(ann.id) ? styles_module_default5.reviewedBtn : ""}`,
8292
8292
  title: reviewedIds.has(ann.id) ? "Mark unreviewed" : "Mark reviewed",
8293
8293
  onClick: (e) => {
8294
8294
  e.stopPropagation();
@@ -8495,7 +8495,7 @@ function ReviewPanel({
8495
8495
  }
8496
8496
 
8497
8497
  // src/components/page-toolbar-css/styles.module.scss
8498
- var css7 = '.styles-module__toolbar___wNsdK svg[fill=none],\n.styles-module__markersLayer___-25j1 svg[fill=none],\n.styles-module__fixedMarkersLayer___ffyX6 svg[fill=none] {\n fill: none !important;\n}\n.styles-module__toolbar___wNsdK svg[fill=none] :not([fill]),\n.styles-module__markersLayer___-25j1 svg[fill=none] :not([fill]),\n.styles-module__fixedMarkersLayer___ffyX6 svg[fill=none] :not([fill]) {\n fill: none !important;\n}\n\n.styles-module__controlsContent___9GJWU :where(button, input, select, textarea, label) {\n background: unset;\n border: unset;\n border-radius: unset;\n padding: unset;\n margin: unset;\n color: unset;\n font-family: unset;\n font-weight: unset;\n font-style: unset;\n line-height: unset;\n letter-spacing: unset;\n text-transform: unset;\n text-decoration: unset;\n box-shadow: unset;\n outline: unset;\n}\n\n@keyframes styles-module__toolbarEnter___u8RRu {\n from {\n opacity: 0;\n transform: scale(0.5) rotate(90deg);\n }\n to {\n opacity: 1;\n transform: scale(1) rotate(0deg);\n }\n}\n@keyframes styles-module__toolbarHide___y8kaT {\n from {\n opacity: 1;\n transform: scale(1);\n }\n to {\n opacity: 0;\n transform: scale(0.8);\n }\n}\n@keyframes styles-module__badgeEnter___mVQLj {\n from {\n opacity: 0;\n transform: scale(0);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__scaleIn___c-r1K {\n from {\n opacity: 0;\n transform: scale(0.85);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__scaleOut___Wctwz {\n from {\n opacity: 1;\n transform: scale(1);\n }\n to {\n opacity: 0;\n transform: scale(0.85);\n }\n}\n@keyframes styles-module__slideUp___kgD36 {\n from {\n opacity: 0;\n transform: scale(0.85) translateY(8px);\n }\n to {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n}\n@keyframes styles-module__slideDown___zcdje {\n from {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n to {\n opacity: 0;\n transform: scale(0.85) translateY(8px);\n }\n}\n@keyframes styles-module__fadeIn___b9qmf {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes styles-module__fadeOut___6Ut6- {\n from {\n opacity: 1;\n }\n to {\n opacity: 0;\n }\n}\n@keyframes styles-module__hoverHighlightIn___6WYHY {\n from {\n opacity: 0;\n transform: scale(0.98);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__hoverTooltipIn___FYGQx {\n from {\n opacity: 0;\n transform: scale(0.95) translateY(4px);\n }\n to {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n}\n.styles-module__disableTransitions___EopxO :is(*, *::before, *::after) {\n transition: none !important;\n}\n\n.styles-module__toolbar___wNsdK {\n position: fixed;\n bottom: 1.25rem;\n right: 1.25rem;\n width: 337px;\n z-index: 100000;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n pointer-events: none;\n transition: left 0s, top 0s, right 0s, bottom 0s;\n}\n\n:where(.styles-module__toolbar___wNsdK) {\n bottom: 1.25rem;\n right: 1.25rem;\n}\n\n.styles-module__toolbarContainer___dIhma {\n position: relative;\n user-select: none;\n margin-left: auto;\n align-self: flex-end;\n display: flex;\n align-items: center;\n justify-content: center;\n background: #1a1a1a;\n color: #fff;\n border: none;\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);\n pointer-events: auto;\n transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__toolbarContainer___dIhma.styles-module__entrance___sgHd8 {\n animation: styles-module__toolbarEnter___u8RRu 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__hiding___1td44 {\n animation: styles-module__toolbarHide___y8kaT 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;\n pointer-events: none;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn {\n width: 44px;\n height: 44px;\n border-radius: 22px;\n padding: 0;\n cursor: pointer;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn svg {\n margin-top: -1px;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:hover {\n background: #2a2a2a;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:active {\n transform: scale(0.95);\n}\n.styles-module__toolbarContainer___dIhma.styles-module__expanded___ofKPx {\n height: 44px;\n border-radius: 1.5rem;\n padding: 0.375rem;\n width: 297px;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__expanded___ofKPx.styles-module__serverConnected___Gfbou {\n width: 337px;\n}\n\n.styles-module__toggleContent___0yfyP {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: opacity 0.1s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__toggleContent___0yfyP.styles-module__visible___KHwEW {\n opacity: 1;\n visibility: visible;\n pointer-events: auto;\n}\n.styles-module__toggleContent___0yfyP.styles-module__hidden___Ae8H4 {\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__controlsContent___9GJWU {\n display: flex;\n align-items: center;\n gap: 0.375rem;\n transition: filter 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__controlsContent___9GJWU.styles-module__visible___KHwEW {\n opacity: 1;\n filter: blur(0px);\n transform: scale(1);\n visibility: visible;\n pointer-events: auto;\n}\n.styles-module__controlsContent___9GJWU.styles-module__hidden___Ae8H4 {\n pointer-events: none;\n opacity: 0;\n filter: blur(10px);\n transform: scale(0.4);\n}\n\n.styles-module__badge___2XsgF {\n position: absolute;\n top: -13px;\n right: -13px;\n user-select: none;\n min-width: 18px;\n height: 18px;\n padding: 0 5px;\n border-radius: 9px;\n background-color: var(--ui-sniper-color-accent);\n color: white;\n font-size: 0.625rem;\n font-weight: 600;\n display: flex;\n align-items: center;\n justify-content: center;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.04);\n opacity: 1;\n transition: transform 0.3s ease, opacity 0.2s ease;\n transform: scale(1);\n}\n.styles-module__badge___2XsgF.styles-module__fadeOut___6Ut6- {\n opacity: 0;\n transform: scale(0);\n pointer-events: none;\n}\n.styles-module__badge___2XsgF.styles-module__entrance___sgHd8 {\n animation: styles-module__badgeEnter___mVQLj 0.3s cubic-bezier(0.34, 1.2, 0.64, 1) 0.4s both;\n}\n\n.styles-module__controlButton___8Q0jc {\n position: relative;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 34px;\n height: 34px;\n border-radius: 50%;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.85);\n transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease, opacity 0.2s ease;\n}\n.styles-module__controlButton___8Q0jc:hover:not(:disabled):not([data-active=true]):not([data-failed=true]):not([data-auto-sync=true]):not([data-error=true]):not([data-no-hover=true]) {\n background: rgba(255, 255, 255, 0.12);\n color: #fff;\n}\n.styles-module__controlButton___8Q0jc:active:not(:disabled) {\n transform: scale(0.92);\n}\n.styles-module__controlButton___8Q0jc:disabled {\n opacity: 0.35;\n cursor: not-allowed;\n}\n.styles-module__controlButton___8Q0jc[data-active=true] {\n color: var(--ui-sniper-color-blue);\n background-color: color-mix(in srgb, var(--ui-sniper-color-blue) 25%, transparent);\n}\n.styles-module__controlButton___8Q0jc[data-error=true] {\n color: var(--ui-sniper-color-red);\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n}\n.styles-module__controlButton___8Q0jc[data-danger]:hover:not(:disabled):not([data-active=true]):not([data-failed=true]) {\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n color: var(--ui-sniper-color-red);\n}\n.styles-module__controlButton___8Q0jc[data-no-hover=true], .styles-module__controlButton___8Q0jc.styles-module__statusShowing___te6iu {\n cursor: default;\n pointer-events: none;\n background: transparent !important;\n}\n.styles-module__controlButton___8Q0jc[data-auto-sync=true] {\n color: var(--ui-sniper-color-green);\n background: transparent;\n cursor: default;\n}\n.styles-module__controlButton___8Q0jc[data-failed=true] {\n color: var(--ui-sniper-color-red);\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n}\n\n.styles-module__buttonBadge___NeFWb {\n position: absolute;\n top: 0px;\n right: 0px;\n min-width: 16px;\n height: 16px;\n padding: 0 4px;\n border-radius: 8px;\n background-color: var(--ui-sniper-color-accent);\n color: white;\n font-size: 0.625rem;\n font-weight: 600;\n display: flex;\n align-items: center;\n justify-content: center;\n box-shadow: 0 0 0 2px #1a1a1a, 0 1px 3px rgba(0, 0, 0, 0.2);\n pointer-events: none;\n}\n[data-ui-sniper-theme=light] .styles-module__buttonBadge___NeFWb {\n box-shadow: 0 0 0 2px #fff, 0 1px 3px rgba(0, 0, 0, 0.2);\n}\n\n@keyframes styles-module__mcpIndicatorPulseConnected___EDodZ {\n 0%, 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n }\n 50% {\n box-shadow: 0 0 0 5px color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n}\n@keyframes styles-module__mcpIndicatorPulseConnecting___cCYte {\n 0%, 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-yellow) 50%, transparent);\n }\n 50% {\n box-shadow: 0 0 0 5px color-mix(in srgb, var(--ui-sniper-color-yellow) 0%, transparent);\n }\n}\n.styles-module__mcpIndicator___zGJeL {\n position: absolute;\n top: 3px;\n right: 3px;\n width: 6px;\n height: 6px;\n border-radius: 50%;\n pointer-events: none;\n transition: background-color 0.3s ease, opacity 0.15s ease, transform 0.15s ease;\n opacity: 1;\n transform: scale(1);\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpIndicatorPulseConnected___EDodZ 2.5s ease-in-out infinite;\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpIndicatorPulseConnecting___cCYte 1.5s ease-in-out infinite;\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__hidden___Ae8H4 {\n opacity: 0;\n transform: scale(0);\n animation: none;\n}\n\n@keyframes styles-module__connectionPulse___-Zycw {\n 0%, 100% {\n opacity: 1;\n transform: scale(1);\n }\n 50% {\n opacity: 0.6;\n transform: scale(0.9);\n }\n}\n.styles-module__connectionIndicatorWrapper___L-e-3 {\n width: 8px;\n height: 34px;\n margin-left: 6px;\n margin-right: 6px;\n}\n\n.styles-module__connectionIndicator___afk9p {\n position: relative;\n width: 8px;\n height: 8px;\n border-radius: 50%;\n opacity: 0;\n transition: opacity 0.3s ease, background-color 0.3s ease;\n cursor: default;\n}\n\n.styles-module__connectionIndicatorVisible___C-i5B {\n opacity: 1;\n}\n\n.styles-module__connectionIndicatorConnected___IY8pR {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__connectionPulse___-Zycw 2.5s ease-in-out infinite;\n}\n\n.styles-module__connectionIndicatorDisconnected___kmpaZ {\n background-color: var(--ui-sniper-color-red);\n animation: none;\n}\n\n.styles-module__connectionIndicatorConnecting___QmSLH {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__connectionPulse___-Zycw 1s ease-in-out infinite;\n}\n\n.styles-module__buttonWrapper___rBcdv {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n opacity: 1;\n visibility: visible;\n transform: translateX(-50%) scale(1);\n transition-delay: 0.85s;\n}\n.styles-module__buttonWrapper___rBcdv:has(.styles-module__controlButton___8Q0jc:disabled):hover .styles-module__buttonTooltip___Burd9 {\n opacity: 0;\n visibility: hidden;\n}\n\n.styles-module__tooltipsInSession___-0lHH .styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n transition-delay: 0s;\n}\n\n.styles-module__sendButtonWrapper___UUxG6 {\n width: 0;\n opacity: 0;\n overflow: hidden;\n pointer-events: none;\n margin-left: -0.375rem;\n transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), margin 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__sendButtonWrapper___UUxG6 .styles-module__controlButton___8Q0jc {\n transform: scale(0.8);\n transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__sendButtonWrapper___UUxG6.styles-module__sendButtonVisible___WPSQU {\n width: 34px;\n opacity: 1;\n overflow: visible;\n pointer-events: auto;\n margin-left: 0;\n}\n.styles-module__sendButtonWrapper___UUxG6.styles-module__sendButtonVisible___WPSQU .styles-module__controlButton___8Q0jc {\n transform: scale(1);\n}\n\n.styles-module__buttonTooltip___Burd9 {\n position: absolute;\n bottom: calc(100% + 14px);\n left: 50%;\n transform: translateX(-50%) scale(0.95);\n padding: 6px 10px;\n background: #1a1a1a;\n color: rgba(255, 255, 255, 0.9);\n font-size: 12px;\n font-weight: 500;\n border-radius: 8px;\n white-space: nowrap;\n opacity: 0;\n visibility: hidden;\n pointer-events: none;\n z-index: 100001;\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);\n transition: opacity 0.135s ease, transform 0.135s ease, visibility 0.135s ease;\n}\n.styles-module__buttonTooltip___Burd9::after {\n content: "";\n position: absolute;\n top: calc(100% - 4px);\n left: 50%;\n transform: translateX(-50%) rotate(45deg);\n width: 8px;\n height: 8px;\n background: #1a1a1a;\n border-radius: 0 0 2px 0;\n}\n\n.styles-module__shortcut___lEAQk {\n margin-left: 4px;\n opacity: 0.5;\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonTooltip___Burd9 {\n bottom: auto;\n top: calc(100% + 14px);\n transform: translateX(-50%) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonTooltip___Burd9::after {\n top: -4px;\n bottom: auto;\n border-radius: 2px 0 0 0;\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-50%) scale(1);\n}\n\n.styles-module__tooltipsHidden___VtLJG .styles-module__buttonTooltip___Burd9 {\n opacity: 0 !important;\n visibility: hidden !important;\n transition: none !important;\n}\n\n.styles-module__tooltipVisible___0jcCv,\n.styles-module__tooltipsHidden___VtLJG .styles-module__tooltipVisible___0jcCv {\n opacity: 1 !important;\n visibility: visible !important;\n transform: translateX(-50%) scale(1) !important;\n transition-delay: 0s !important;\n}\n\n.styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9 {\n left: 50%;\n transform: translateX(-12px) scale(0.95);\n}\n.styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9::after {\n left: 16px;\n}\n.styles-module__buttonWrapperAlignLeft___myzIp:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(1);\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignLeft___myzIp:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(1);\n}\n\n.styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9 {\n left: 50%;\n transform: translateX(calc(-100% + 12px)) scale(0.95);\n}\n.styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9::after {\n left: auto;\n right: 8px;\n}\n.styles-module__buttonWrapperAlignRight___HCQFR:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(1);\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignRight___HCQFR:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(1);\n}\n\n.styles-module__divider___c--s1 {\n width: 1px;\n height: 12px;\n background: rgba(255, 255, 255, 0.15);\n margin: 0 0.125rem;\n}\n\n.styles-module__overlay___Q1O9y {\n position: fixed;\n inset: 0;\n z-index: 99997;\n pointer-events: none;\n}\n.styles-module__overlay___Q1O9y > * {\n pointer-events: auto;\n}\n\n.styles-module__hoverHighlight___ogakW {\n position: fixed;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-accent) 50%, transparent);\n border-radius: 4px;\n background-color: color-mix(in srgb, var(--ui-sniper-color-accent) 4%, transparent);\n pointer-events: none !important;\n box-sizing: border-box;\n will-change: opacity;\n contain: layout style;\n}\n.styles-module__hoverHighlight___ogakW.styles-module__enter___WFIki {\n animation: styles-module__hoverHighlightIn___6WYHY 0.12s ease-out forwards;\n}\n\n.styles-module__multiSelectOutline___cSJ-m {\n position: fixed;\n border: 2px dashed color-mix(in srgb, var(--ui-sniper-color-green) 60%, transparent);\n border-radius: 4px;\n pointer-events: none !important;\n background-color: color-mix(in srgb, var(--ui-sniper-color-green) 5%, transparent);\n box-sizing: border-box;\n will-change: opacity;\n}\n.styles-module__multiSelectOutline___cSJ-m.styles-module__enter___WFIki {\n animation: styles-module__fadeIn___b9qmf 0.15s ease-out forwards;\n}\n.styles-module__multiSelectOutline___cSJ-m.styles-module__exit___fyOJ0 {\n animation: styles-module__fadeOut___6Ut6- 0.15s ease-out forwards;\n}\n\n.styles-module__singleSelectOutline___QhX-O {\n position: fixed;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-blue) 60%, transparent);\n border-radius: 4px;\n pointer-events: none !important;\n background-color: color-mix(in srgb, var(--ui-sniper-color-blue) 5%, transparent);\n box-sizing: border-box;\n will-change: opacity;\n}\n.styles-module__singleSelectOutline___QhX-O.styles-module__enter___WFIki {\n animation: styles-module__fadeIn___b9qmf 0.15s ease-out forwards;\n}\n.styles-module__singleSelectOutline___QhX-O.styles-module__exit___fyOJ0 {\n animation: styles-module__fadeOut___6Ut6- 0.15s ease-out forwards;\n}\n\n.styles-module__hoverTooltip___bvLk7 {\n position: fixed;\n font-size: 0.6875rem;\n font-weight: 500;\n color: #fff;\n background: rgba(0, 0, 0, 0.85);\n padding: 0.35rem 0.6rem;\n border-radius: 0.375rem;\n pointer-events: none !important;\n white-space: nowrap;\n max-width: 280px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.styles-module__hoverTooltip___bvLk7.styles-module__enter___WFIki {\n animation: styles-module__hoverTooltipIn___FYGQx 0.1s ease-out forwards;\n}\n\n.styles-module__hoverReactPath___gx1IJ {\n font-size: 0.625rem;\n color: rgba(255, 255, 255, 0.6);\n margin-bottom: 0.15rem;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__hoverElementName___QMLMl {\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__markersLayer___-25j1 {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n height: 0;\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__markersLayer___-25j1 > * {\n pointer-events: auto;\n}\n\n.styles-module__fixedMarkersLayer___ffyX6 {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__fixedMarkersLayer___ffyX6 > * {\n pointer-events: auto;\n}\n\n.styles-module__marker___6sQrs {\n position: absolute;\n width: 22px;\n height: 22px;\n background: var(--ui-sniper-color-blue);\n color: white;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 0.6875rem;\n font-weight: 600;\n transform: translate(-50%, -50%) scale(1);\n opacity: 1;\n cursor: pointer;\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.04);\n user-select: none;\n will-change: transform, opacity;\n contain: layout style;\n z-index: 1;\n}\n.styles-module__marker___6sQrs:hover {\n z-index: 2;\n}\n.styles-module__marker___6sQrs:not(.styles-module__enter___WFIki):not(.styles-module__exit___fyOJ0):not(.styles-module__clearing___FQ--7) {\n transition: background-color 0.15s ease, transform 0.1s ease;\n}\n.styles-module__marker___6sQrs.styles-module__enter___WFIki {\n animation: styles-module__markerIn___5FaAP 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;\n}\n.styles-module__marker___6sQrs.styles-module__exit___fyOJ0 {\n animation: styles-module__markerOut___GU5jX 0.2s ease-out both;\n pointer-events: none;\n}\n.styles-module__marker___6sQrs.styles-module__clearing___FQ--7 {\n animation: styles-module__markerOut___GU5jX 0.15s ease-out both;\n pointer-events: none;\n}\n.styles-module__marker___6sQrs:not(.styles-module__enter___WFIki):not(.styles-module__exit___fyOJ0):not(.styles-module__clearing___FQ--7):hover {\n transform: translate(-50%, -50%) scale(1.1);\n}\n.styles-module__marker___6sQrs.styles-module__pending___2IHLC {\n position: fixed;\n background-color: var(--ui-sniper-color-blue);\n cursor: default;\n}\n.styles-module__marker___6sQrs.styles-module__fixed___dBMHC {\n position: fixed;\n}\n.styles-module__marker___6sQrs.styles-module__multiSelect___YWiuz {\n background-color: var(--ui-sniper-color-green);\n width: 26px;\n height: 26px;\n border-radius: 6px;\n font-size: 0.75rem;\n}\n.styles-module__marker___6sQrs.styles-module__multiSelect___YWiuz.styles-module__pending___2IHLC {\n background-color: var(--ui-sniper-color-green);\n}\n.styles-module__marker___6sQrs.styles-module__hovered___ZgXIy {\n background-color: var(--ui-sniper-color-red);\n}\n\n.styles-module__renumber___nCTxD {\n display: block;\n animation: styles-module__renumberRoll___Wgbq3 0.2s ease-out;\n}\n\n@keyframes styles-module__renumberRoll___Wgbq3 {\n 0% {\n transform: translateX(-40%);\n opacity: 0;\n }\n 100% {\n transform: translateX(0);\n opacity: 1;\n }\n}\n.styles-module__markerTooltip___aLJID {\n position: absolute;\n top: calc(100% + 10px);\n left: 50%;\n transform: translateX(-50%) scale(0.909);\n z-index: 100002;\n background: #1a1a1a;\n padding: 8px 0.75rem;\n border-radius: 0.75rem;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n font-weight: 400;\n color: #fff;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);\n min-width: 120px;\n max-width: 200px;\n pointer-events: none;\n cursor: default;\n}\n.styles-module__markerTooltip___aLJID.styles-module__enter___WFIki {\n animation: styles-module__tooltipIn___0N31w 0.1s ease-out forwards;\n}\n\n.styles-module__markerQuote___FHmrz {\n display: block;\n font-size: 12px;\n font-style: italic;\n color: rgba(255, 255, 255, 0.6);\n margin-bottom: 0.3125rem;\n line-height: 1.4;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__markerNote___QkrrS {\n display: block;\n font-size: 13px;\n font-weight: 400;\n line-height: 1.4;\n color: #fff;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n padding-bottom: 2px;\n}\n\n.styles-module__markerHint___2iF-6 {\n display: block;\n font-size: 0.625rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.6);\n margin-top: 0.375rem;\n white-space: nowrap;\n}\n\n.styles-module__settingsPanel___OxX3Y {\n position: absolute;\n right: 5px;\n bottom: calc(100% + 0.5rem);\n z-index: 1;\n overflow: hidden;\n background: #1c1c1c;\n border-radius: 1rem;\n padding: 13px 0 16px;\n min-width: 205px;\n cursor: default;\n opacity: 1;\n box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.04);\n transition: background-color 0.25s ease, box-shadow 0.25s ease;\n}\n.styles-module__settingsPanel___OxX3Y::before, .styles-module__settingsPanel___OxX3Y::after {\n content: "";\n position: absolute;\n top: 0;\n bottom: 0;\n width: 16px;\n z-index: 2;\n pointer-events: none;\n}\n.styles-module__settingsPanel___OxX3Y::before {\n left: 0;\n background: linear-gradient(to right, #1c1c1c 0%, transparent 100%);\n}\n.styles-module__settingsPanel___OxX3Y::after {\n right: 0;\n background: linear-gradient(to left, #1c1c1c 0%, transparent 100%);\n}\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsHeader___pwDY9,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsBrand___0gJeM,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsBrandSlash___uTG18,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsVersion___TUcFq,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsSection___m-YM2,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsLabel___8UjfX,\n.styles-module__settingsPanel___OxX3Y .styles-module__cycleButton___FMKfw,\n.styles-module__settingsPanel___OxX3Y .styles-module__cycleDot___nPgLY,\n.styles-module__settingsPanel___OxX3Y .styles-module__dropdownButton___16NPz,\n.styles-module__settingsPanel___OxX3Y .styles-module__toggleLabel___Xm8Aa,\n.styles-module__settingsPanel___OxX3Y .styles-module__customCheckbox___U39ax,\n.styles-module__settingsPanel___OxX3Y .styles-module__sliderLabel___U8sPr,\n.styles-module__settingsPanel___OxX3Y .styles-module__slider___GLdxp,\n.styles-module__settingsPanel___OxX3Y .styles-module__themeToggle___2rUjA {\n transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;\n}\n.styles-module__settingsPanel___OxX3Y.styles-module__enter___WFIki {\n opacity: 1;\n transform: translateY(0) scale(1);\n filter: blur(0px);\n transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;\n}\n.styles-module__settingsPanel___OxX3Y.styles-module__exit___fyOJ0 {\n opacity: 0;\n transform: translateY(8px) scale(0.95);\n filter: blur(5px);\n pointer-events: none;\n transition: opacity 0.1s ease, transform 0.1s ease, filter 0.1s ease;\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y {\n background: #1a1a1a;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsLabel___8UjfX {\n color: rgba(255, 255, 255, 0.6);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12 {\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12:hover {\n background: rgba(255, 255, 255, 0.1);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12.styles-module__selected___OwRqP {\n background: rgba(255, 255, 255, 0.15);\n color: #fff;\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__toggleLabel___Xm8Aa {\n color: rgba(255, 255, 255, 0.85);\n}\n\n.styles-module__settingsPanelContainer___Xksv8 {\n overflow: visible;\n position: relative;\n display: flex;\n padding: 0 1rem;\n}\n\n.styles-module__settingsPage___6YfHH {\n min-width: 100%;\n flex-shrink: 0;\n transition: transform 0.2s ease, opacity 0.2s ease;\n transition-delay: 0s;\n opacity: 1;\n}\n\n.styles-module__settingsPage___6YfHH.styles-module__slideLeft___Ps01J {\n transform: translateX(-24px);\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__automationsPage___uvCq6 {\n position: absolute;\n top: 0;\n left: 24px;\n width: 100%;\n height: 100%;\n padding: 3px 1rem 0;\n box-sizing: border-box;\n display: flex;\n flex-direction: column;\n transition: transform 0.2s ease, opacity 0.2s ease;\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__automationsPage___uvCq6.styles-module__slideIn___4-qXe {\n transform: translateX(-24px);\n opacity: 1;\n pointer-events: auto;\n}\n\n.styles-module__settingsNavLink___wCzJt {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n padding: 0;\n border: none;\n background: transparent;\n font-family: inherit;\n font-size: 0.8125rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.5);\n cursor: pointer;\n transition: color 0.15s ease;\n}\n.styles-module__settingsNavLink___wCzJt:hover {\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt {\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt:hover {\n color: rgba(0, 0, 0, 0.8);\n}\n.styles-module__settingsNavLink___wCzJt svg {\n color: rgba(255, 255, 255, 0.4);\n transition: color 0.15s ease;\n}\n.styles-module__settingsNavLink___wCzJt:hover svg {\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt svg {\n color: rgba(0, 0, 0, 0.25);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt:hover svg {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__settingsNavLinkRight___ZWwhj {\n display: flex;\n align-items: center;\n gap: 6px;\n}\n\n.styles-module__mcpNavIndicator___cl9pO {\n width: 8px;\n height: 8px;\n border-radius: 50%;\n flex-shrink: 0;\n}\n.styles-module__mcpNavIndicator___cl9pO.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpPulse___uNggr 2.5s ease-in-out infinite;\n}\n.styles-module__mcpNavIndicator___cl9pO.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpPulse___uNggr 1.5s ease-in-out infinite;\n}\n\n.styles-module__settingsBackButton___bIe2j {\n display: flex;\n align-items: center;\n gap: 4px;\n padding: 6px 0 12px 0;\n margin: -6px 0 0.5rem 0;\n border: none;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n border-radius: 0;\n background: transparent;\n font-family: inherit;\n font-size: 0.8125rem;\n font-weight: 500;\n letter-spacing: -0.15px;\n color: #fff;\n cursor: pointer;\n transition: transform 0.12s cubic-bezier(0.32, 0.72, 0, 1);\n}\n.styles-module__settingsBackButton___bIe2j svg {\n opacity: 0.4;\n flex-shrink: 0;\n transition: opacity 0.15s ease, transform 0.18s cubic-bezier(0.32, 0.72, 0, 1);\n}\n.styles-module__settingsBackButton___bIe2j:hover {\n border-bottom-color: rgba(255, 255, 255, 0.07);\n}\n.styles-module__settingsBackButton___bIe2j:hover svg {\n opacity: 1;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsBackButton___bIe2j {\n color: rgba(0, 0, 0, 0.85);\n border-bottom-color: rgba(0, 0, 0, 0.08);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsBackButton___bIe2j:hover {\n border-bottom-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__automationHeader___InP0r {\n display: flex;\n align-items: center;\n gap: 0.125rem;\n font-size: 0.8125rem;\n font-weight: 400;\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__automationHeader___InP0r {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__automationDescription___NKlmo {\n font-size: 0.6875rem;\n font-weight: 300;\n color: rgba(255, 255, 255, 0.5);\n margin-top: 2px;\n line-height: 14px;\n}\n[data-ui-sniper-theme=light] .styles-module__automationDescription___NKlmo {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__learnMoreLink___8xv-x {\n color: rgba(255, 255, 255, 0.8);\n text-decoration: underline dotted;\n text-decoration-color: rgba(255, 255, 255, 0.2);\n text-underline-offset: 2px;\n transition: color 0.15s ease;\n}\n.styles-module__learnMoreLink___8xv-x:hover {\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__learnMoreLink___8xv-x {\n color: rgba(0, 0, 0, 0.6);\n text-decoration-color: rgba(0, 0, 0, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__learnMoreLink___8xv-x:hover {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__autoSendRow___UblX5 {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.styles-module__autoSendLabel___icDc2 {\n font-size: 0.6875rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.4);\n transition: color 0.15s ease;\n}\n.styles-module__autoSendLabel___icDc2.styles-module__active___-zoN6 {\n color: #66b8ff;\n color: color(display-p3 0.4 0.72 1);\n}\n[data-ui-sniper-theme=light] .styles-module__autoSendLabel___icDc2 {\n color: rgba(0, 0, 0, 0.4);\n}\n[data-ui-sniper-theme=light] .styles-module__autoSendLabel___icDc2.styles-module__active___-zoN6 {\n color: var(--ui-sniper-color-blue);\n}\n\n.styles-module__webhookUrlInput___2375C {\n display: block;\n width: 100%;\n flex: 1;\n min-height: 60px;\n box-sizing: border-box;\n margin-top: 11px;\n padding: 8px 10px;\n border: 1px solid rgba(255, 255, 255, 0.1);\n border-radius: 6px;\n background: rgba(255, 255, 255, 0.03);\n font-family: inherit;\n font-size: 0.75rem;\n font-weight: 400;\n color: #fff;\n outline: none;\n resize: none;\n user-select: text;\n transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;\n}\n.styles-module__webhookUrlInput___2375C::placeholder {\n color: rgba(255, 255, 255, 0.3);\n}\n.styles-module__webhookUrlInput___2375C:focus {\n border-color: rgba(255, 255, 255, 0.3);\n background: rgba(255, 255, 255, 0.08);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C::placeholder {\n color: rgba(0, 0, 0, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C:focus {\n border-color: rgba(0, 0, 0, 0.25);\n background: rgba(0, 0, 0, 0.05);\n}\n\n.styles-module__settingsHeader___pwDY9 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-height: 24px;\n margin-bottom: 0.5rem;\n padding-bottom: 9px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n}\n\n.styles-module__settingsBrand___0gJeM {\n font-size: 0.8125rem;\n font-weight: 600;\n letter-spacing: -0.0094em;\n color: #fff;\n text-decoration: none;\n}\n\n.styles-module__settingsBrandSlash___uTG18 {\n color: var(--ui-sniper-color-accent);\n transition: color 0.2s ease;\n}\n\n.styles-module__settingsVersion___TUcFq {\n font-size: 11px;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.4);\n margin-left: auto;\n letter-spacing: -0.0094em;\n}\n\n.styles-module__settingsSection___m-YM2 + .styles-module__settingsSection___m-YM2 {\n margin-top: 0.5rem;\n padding-top: 0.5rem;\n border-top: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__settingsSection___m-YM2.styles-module__settingsSectionExtraPadding___jdhFV {\n padding-top: calc(0.5rem + 4px);\n}\n\n.styles-module__settingsSectionGrow___h-5HZ {\n flex: 1;\n display: flex;\n flex-direction: column;\n}\n\n.styles-module__settingsRow___3sdhc {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-height: 24px;\n}\n.styles-module__settingsRow___3sdhc.styles-module__settingsRowMarginTop___zA0Sp {\n margin-top: 8px;\n}\n\n.styles-module__dropdownContainer___BVnxe {\n position: relative;\n}\n\n.styles-module__dropdownButton___16NPz {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n padding: 0.25rem 0.5rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 600;\n color: #fff;\n cursor: pointer;\n transition: background-color 0.15s ease, color 0.15s ease;\n letter-spacing: -0.0094em;\n}\n.styles-module__dropdownButton___16NPz:hover {\n background: rgba(255, 255, 255, 0.08);\n}\n.styles-module__dropdownButton___16NPz svg {\n opacity: 0.6;\n}\n\n.styles-module__cycleButton___FMKfw {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n padding: 0;\n border: none;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 500;\n color: #fff;\n cursor: pointer;\n letter-spacing: -0.0094em;\n}\n[data-ui-sniper-theme=light] .styles-module__cycleButton___FMKfw {\n color: rgba(0, 0, 0, 0.85);\n}\n.styles-module__cycleButton___FMKfw:disabled {\n opacity: 0.35;\n cursor: not-allowed;\n}\n\n.styles-module__settingsRowDisabled___EgS0V .styles-module__settingsLabel___8UjfX {\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsRowDisabled___EgS0V .styles-module__settingsLabel___8UjfX {\n color: rgba(0, 0, 0, 0.2);\n}\n.styles-module__settingsRowDisabled___EgS0V .styles-module__toggleSwitch___l4Ygm {\n opacity: 0.4;\n cursor: not-allowed;\n}\n\n@keyframes styles-module__cycleTextIn___Q6zJf {\n 0% {\n opacity: 0;\n transform: translateY(-6px);\n }\n 100% {\n opacity: 1;\n transform: translateY(0);\n }\n}\n.styles-module__cycleButtonText___fD1LR {\n display: inline-block;\n animation: styles-module__cycleTextIn___Q6zJf 0.2s ease-out;\n}\n\n.styles-module__cycleDots___LWuoQ {\n display: flex;\n flex-direction: column;\n gap: 2px;\n}\n\n.styles-module__cycleDot___nPgLY {\n width: 3px;\n height: 3px;\n border-radius: 50%;\n background: rgba(255, 255, 255, 0.3);\n transform: scale(0.667);\n transition: background-color 0.25s ease-out, transform 0.25s ease-out;\n}\n.styles-module__cycleDot___nPgLY.styles-module__active___-zoN6 {\n background: #fff;\n transform: scale(1);\n}\n[data-ui-sniper-theme=light] .styles-module__cycleDot___nPgLY {\n background: rgba(0, 0, 0, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__cycleDot___nPgLY.styles-module__active___-zoN6 {\n background: rgba(0, 0, 0, 0.7);\n}\n\n.styles-module__dropdownMenu___k73ER {\n position: absolute;\n right: 0;\n top: calc(100% + 0.25rem);\n background: #1a1a1a;\n border-radius: 0.5rem;\n padding: 0.25rem;\n min-width: 120px;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);\n z-index: 10;\n animation: styles-module__scaleIn___c-r1K 0.15s ease-out;\n}\n\n.styles-module__dropdownItem___ylsLj {\n width: 100%;\n display: flex;\n align-items: center;\n padding: 0.5rem 0.625rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.85);\n cursor: pointer;\n text-align: left;\n transition: background-color 0.15s ease, color 0.15s ease;\n letter-spacing: -0.0094em;\n}\n.styles-module__dropdownItem___ylsLj:hover {\n background: rgba(255, 255, 255, 0.08);\n}\n.styles-module__dropdownItem___ylsLj.styles-module__selected___OwRqP {\n background: rgba(255, 255, 255, 0.12);\n color: #fff;\n font-weight: 600;\n}\n\n.styles-module__settingsLabel___8UjfX {\n font-size: 0.8125rem;\n font-weight: 400;\n letter-spacing: -0.0094em;\n color: rgba(255, 255, 255, 0.5);\n display: flex;\n align-items: center;\n gap: 0.125rem;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsLabel___8UjfX {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__settingsLabelMarker___ewdtV {\n padding-top: 3px;\n margin-bottom: 10px;\n}\n\n.styles-module__settingsOptions___LyrBA {\n display: flex;\n gap: 0.25rem;\n}\n\n.styles-module__settingsOption___UNa12 {\n flex: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 0.25rem;\n padding: 0.375rem 0.5rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.6875rem;\n font-weight: 500;\n color: rgba(0, 0, 0, 0.7);\n cursor: pointer;\n transition: background-color 0.15s ease, color 0.15s ease;\n}\n.styles-module__settingsOption___UNa12:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.styles-module__settingsOption___UNa12.styles-module__selected___OwRqP {\n background: color-mix(in srgb, var(--ui-sniper-color-blue) 15%, transparent);\n color: var(--ui-sniper-color-blue);\n}\n\n.styles-module__sliderContainer___ducXj {\n display: flex;\n flex-direction: column;\n gap: 0.5rem;\n}\n\n.styles-module__slider___GLdxp {\n -webkit-appearance: none;\n appearance: none;\n width: 100%;\n height: 4px;\n background: rgba(255, 255, 255, 0.15);\n border-radius: 2px;\n outline: none;\n cursor: pointer;\n}\n.styles-module__slider___GLdxp::-webkit-slider-thumb {\n -webkit-appearance: none;\n appearance: none;\n width: 14px;\n height: 14px;\n background: white;\n border-radius: 50%;\n cursor: pointer;\n transition: transform 0.15s ease, box-shadow 0.15s ease;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);\n}\n.styles-module__slider___GLdxp::-moz-range-thumb {\n width: 14px;\n height: 14px;\n background: white;\n border: none;\n border-radius: 50%;\n cursor: pointer;\n transition: transform 0.15s ease, box-shadow 0.15s ease;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);\n}\n.styles-module__slider___GLdxp:hover::-webkit-slider-thumb {\n transform: scale(1.15);\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);\n}\n.styles-module__slider___GLdxp:hover::-moz-range-thumb {\n transform: scale(1.15);\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);\n}\n\n.styles-module__sliderLabels___FhLDB {\n display: flex;\n justify-content: space-between;\n}\n\n.styles-module__sliderLabel___U8sPr {\n font-size: 0.625rem;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.4);\n cursor: pointer;\n transition: color 0.15s ease;\n}\n.styles-module__sliderLabel___U8sPr:hover {\n color: rgba(255, 255, 255, 0.7);\n}\n.styles-module__sliderLabel___U8sPr.styles-module__active___-zoN6 {\n color: rgba(255, 255, 255, 0.9);\n}\n\n.styles-module__colorOptions___iHCNX {\n display: flex;\n gap: 0.5rem;\n margin-top: 0.375rem;\n margin-bottom: 1px;\n}\n\n.styles-module__colorOption___IodiY {\n display: block;\n width: 20px;\n height: 20px;\n border-radius: 50%;\n border: 2px solid transparent;\n background-color: var(--swatch);\n cursor: pointer;\n transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);\n}\n@supports (color: color(display-p3 0 0 0)) {\n .styles-module__colorOption___IodiY {\n background-color: var(--swatch-p3);\n }\n}\n.styles-module__colorOption___IodiY:hover {\n transform: scale(1.15);\n}\n.styles-module__colorOption___IodiY.styles-module__selected___OwRqP {\n transform: scale(0.83);\n}\n\n.styles-module__colorOptionRing___U2xpo {\n display: flex;\n width: 24px;\n height: 24px;\n border: 2px solid transparent;\n border-radius: 50%;\n transition: border-color 0.3s ease;\n}\n.styles-module__colorOptionRing___U2xpo.styles-module__selected___OwRqP {\n border-color: var(--swatch);\n}\n@supports (color: color(display-p3 0 0 0)) {\n .styles-module__colorOptionRing___U2xpo.styles-module__selected___OwRqP {\n border-color: var(--swatch-p3);\n }\n}\n\n.styles-module__settingsToggle___fBrFn {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n cursor: pointer;\n}\n.styles-module__settingsToggle___fBrFn + .styles-module__settingsToggle___fBrFn {\n margin-top: calc(0.5rem + 6px);\n}\n.styles-module__settingsToggle___fBrFn input[type=checkbox] {\n position: absolute;\n opacity: 0;\n width: 0;\n height: 0;\n}\n.styles-module__settingsToggle___fBrFn.styles-module__settingsToggleMarginBottom___MZUyF {\n margin-bottom: calc(0.5rem + 6px);\n}\n\n.styles-module__customCheckbox___U39ax {\n position: relative;\n width: 14px;\n height: 14px;\n border: 1px solid rgba(255, 255, 255, 0.2);\n border-radius: 4px;\n background: rgba(255, 255, 255, 0.05);\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n transition: background-color 0.25s ease, border-color 0.25s ease;\n}\n.styles-module__customCheckbox___U39ax svg {\n color: #1a1a1a;\n opacity: 1;\n transition: opacity 0.15s ease;\n}\ninput[type=checkbox]:checked + .styles-module__customCheckbox___U39ax {\n border-color: rgba(255, 255, 255, 0.3);\n background: rgb(255, 255, 255);\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax {\n border: 1px solid rgba(0, 0, 0, 0.15);\n background: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax.styles-module__checked___mnZLo {\n border-color: #1a1a1a;\n background: #1a1a1a;\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax.styles-module__checked___mnZLo svg {\n color: #fff;\n}\n\n.styles-module__toggleLabel___Xm8Aa {\n font-size: 0.8125rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.5);\n letter-spacing: -0.0094em;\n display: flex;\n align-items: center;\n gap: 0.25rem;\n}\n[data-ui-sniper-theme=light] .styles-module__toggleLabel___Xm8Aa {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__toggleSwitch___l4Ygm {\n position: relative;\n display: inline-block;\n width: 24px;\n height: 16px;\n flex-shrink: 0;\n cursor: pointer;\n transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n}\n.styles-module__toggleSwitch___l4Ygm input {\n opacity: 0;\n width: 0;\n height: 0;\n}\n.styles-module__toggleSwitch___l4Ygm input:checked + .styles-module__toggleSlider___wprIn {\n background-color: var(--ui-sniper-color-blue);\n}\n.styles-module__toggleSwitch___l4Ygm input:checked + .styles-module__toggleSlider___wprIn::before {\n transform: translateX(8px);\n}\n.styles-module__toggleSwitch___l4Ygm.styles-module__disabled___332Jw {\n opacity: 0.4;\n}\n.styles-module__toggleSwitch___l4Ygm.styles-module__disabled___332Jw .styles-module__toggleSlider___wprIn {\n cursor: not-allowed;\n}\n\n.styles-module__toggleSlider___wprIn {\n position: absolute;\n cursor: pointer;\n inset: 0;\n border-radius: 16px;\n background: #484848;\n}\n[data-ui-sniper-theme=light] .styles-module__toggleSlider___wprIn {\n background: #dddddd;\n}\n.styles-module__toggleSlider___wprIn::before {\n content: "";\n position: absolute;\n height: 12px;\n width: 12px;\n left: 2px;\n bottom: 2px;\n background: white;\n border-radius: 50%;\n transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n@keyframes styles-module__mcpPulse___uNggr {\n 0% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n }\n 70% {\n box-shadow: 0 0 0 6px color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n}\n@keyframes styles-module__mcpPulseError___fov9B {\n 0% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-red) 50%, transparent);\n }\n 70% {\n box-shadow: 0 0 0 6px color-mix(in srgb, var(--ui-sniper-color-red) 0%, transparent);\n }\n 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-red) 0%, transparent);\n }\n}\n.styles-module__mcpStatusDot___ibgkc {\n width: 8px;\n height: 8px;\n border-radius: 50%;\n flex-shrink: 0;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpPulse___uNggr 1.5s infinite;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpPulse___uNggr 2.5s ease-in-out infinite;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__disconnected___cHPxR {\n background-color: var(--ui-sniper-color-red);\n animation: styles-module__mcpPulseError___fov9B 2s infinite;\n}\n\n.styles-module__drawCanvas___7cG9U {\n position: fixed;\n inset: 0;\n z-index: 99996;\n pointer-events: none !important;\n}\n.styles-module__drawCanvas___7cG9U.styles-module__active___-zoN6 {\n pointer-events: auto !important;\n cursor: crosshair !important;\n}\n.styles-module__drawCanvas___7cG9U.styles-module__active___-zoN6[data-stroke-hover] {\n cursor: pointer !important;\n}\n\n.styles-module__dragSelection___kZLq2 {\n position: fixed;\n top: 0;\n left: 0;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-green) 60%, transparent);\n border-radius: 4px;\n background-color: color-mix(in srgb, var(--ui-sniper-color-green) 8%, transparent);\n pointer-events: none;\n z-index: 99997;\n will-change: transform, width, height;\n contain: layout style;\n}\n\n.styles-module__dragCount___KM90j {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n background-color: var(--ui-sniper-color-green);\n color: white;\n font-size: 0.875rem;\n font-weight: 600;\n padding: 0.25rem 0.5rem;\n border-radius: 1rem;\n min-width: 1.5rem;\n text-align: center;\n}\n\n.styles-module__highlightsContainer___-0xzG {\n position: fixed;\n top: 0;\n left: 0;\n pointer-events: none;\n z-index: 99996;\n}\n\n.styles-module__selectedElementHighlight___fyVlI {\n position: fixed;\n top: 0;\n left: 0;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n border-radius: 4px;\n background: color-mix(in srgb, var(--ui-sniper-color-green) 6%, transparent);\n pointer-events: none;\n will-change: transform, width, height;\n contain: layout style;\n}\n\n[data-ui-sniper-theme=light] .styles-module__toolbarContainer___dIhma {\n background: #fff;\n color: rgba(0, 0, 0, 0.85);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:hover {\n background: #f5f5f5;\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc {\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc:hover:not(:disabled):not([data-active=true]):not([data-failed=true]):not([data-auto-sync=true]):not([data-error=true]):not([data-no-hover=true]) {\n background: rgba(0, 0, 0, 0.06);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-active=true] {\n color: var(--ui-sniper-color-blue);\n background: color-mix(in srgb, var(--ui-sniper-color-blue) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-error=true] {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-danger]:hover:not(:disabled):not([data-active=true]):not([data-failed=true]) {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-auto-sync=true] {\n color: var(--ui-sniper-color-green);\n background: transparent;\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-failed=true] {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__buttonTooltip___Burd9 {\n background: #fff;\n color: rgba(0, 0, 0, 0.85);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__buttonTooltip___Burd9::after {\n background: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__divider___c--s1 {\n background: rgba(0, 0, 0, 0.1);\n}\n\n@media (max-width: 768px), (pointer: coarse) {\n .styles-module__toolbarContainer___dIhma {\n bottom: 24px;\n top: auto !important;\n left: 50% !important;\n transform: translateX(-50%) !important;\n width: max-content;\n max-width: 90vw;\n }\n}\n.styles-module__centerCrosshair___UQ3GL {\n position: fixed;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairDot___YjR0R {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 6px;\n height: 6px;\n background-color: var(--ui-sniper-color-accent);\n border-radius: 50%;\n box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairLineHorizontal___VX9Ks {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 20px;\n height: 2px;\n background-color: var(--ui-sniper-color-accent);\n opacity: 0.5;\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairLineVertical___ZEZ7X {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 2px;\n height: 20px;\n background-color: var(--ui-sniper-color-accent);\n opacity: 0.5;\n}';
8498
+ var css7 = '.styles-module__toolbar___wNsdK svg[fill=none],\n.styles-module__markersLayer___-25j1 svg[fill=none],\n.styles-module__fixedMarkersLayer___ffyX6 svg[fill=none] {\n fill: none !important;\n}\n.styles-module__toolbar___wNsdK svg[fill=none] :not([fill]),\n.styles-module__markersLayer___-25j1 svg[fill=none] :not([fill]),\n.styles-module__fixedMarkersLayer___ffyX6 svg[fill=none] :not([fill]) {\n fill: none !important;\n}\n\n.styles-module__controlsContent___9GJWU :where(button, input, select, textarea, label) {\n background: unset;\n border: unset;\n border-radius: unset;\n padding: unset;\n margin: unset;\n color: unset;\n font-family: unset;\n font-weight: unset;\n font-style: unset;\n line-height: unset;\n letter-spacing: unset;\n text-transform: unset;\n text-decoration: unset;\n box-shadow: unset;\n outline: unset;\n}\n\n@keyframes styles-module__toolbarEnter___u8RRu {\n from {\n opacity: 0;\n transform: scale(0.5) rotate(90deg);\n }\n to {\n opacity: 1;\n transform: scale(1) rotate(0deg);\n }\n}\n@keyframes styles-module__toolbarHide___y8kaT {\n from {\n opacity: 1;\n transform: scale(1);\n }\n to {\n opacity: 0;\n transform: scale(0.8);\n }\n}\n@keyframes styles-module__badgeEnter___mVQLj {\n from {\n opacity: 0;\n transform: scale(0);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__scaleIn___c-r1K {\n from {\n opacity: 0;\n transform: scale(0.85);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__scaleOut___Wctwz {\n from {\n opacity: 1;\n transform: scale(1);\n }\n to {\n opacity: 0;\n transform: scale(0.85);\n }\n}\n@keyframes styles-module__slideUp___kgD36 {\n from {\n opacity: 0;\n transform: scale(0.85) translateY(8px);\n }\n to {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n}\n@keyframes styles-module__slideDown___zcdje {\n from {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n to {\n opacity: 0;\n transform: scale(0.85) translateY(8px);\n }\n}\n@keyframes styles-module__fadeIn___b9qmf {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes styles-module__fadeOut___6Ut6- {\n from {\n opacity: 1;\n }\n to {\n opacity: 0;\n }\n}\n@keyframes styles-module__hoverHighlightIn___6WYHY {\n from {\n opacity: 0;\n transform: scale(0.98);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__hoverTooltipIn___FYGQx {\n from {\n opacity: 0;\n transform: scale(0.95) translateY(4px);\n }\n to {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n}\n.styles-module__disableTransitions___EopxO :is(*, *::before, *::after) {\n transition: none !important;\n}\n\n.styles-module__toolbar___wNsdK {\n position: fixed;\n bottom: 1.25rem;\n right: 1.25rem;\n width: 337px;\n z-index: 100000;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n pointer-events: none;\n transition: left 0s, top 0s, right 0s, bottom 0s;\n}\n\n:where(.styles-module__toolbar___wNsdK) {\n bottom: 1.25rem;\n right: 1.25rem;\n}\n\n.styles-module__toolbarContainer___dIhma {\n position: relative;\n user-select: none;\n margin-left: auto;\n align-self: flex-end;\n display: flex;\n align-items: center;\n justify-content: center;\n background: #1a1a1a;\n color: #fff;\n border: 2px solid var(--ui-sniper-color-green);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);\n pointer-events: auto;\n transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__toolbarContainer___dIhma.styles-module__entrance___sgHd8 {\n animation: styles-module__toolbarEnter___u8RRu 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__hiding___1td44 {\n animation: styles-module__toolbarHide___y8kaT 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;\n pointer-events: none;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn {\n width: 44px;\n height: 44px;\n border-radius: 22px;\n padding: 0;\n cursor: pointer;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn svg {\n margin-top: -1px;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:hover {\n background: #2a2a2a;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:active {\n transform: scale(0.95);\n}\n.styles-module__toolbarContainer___dIhma.styles-module__expanded___ofKPx {\n height: 44px;\n border-radius: 1.5rem;\n padding: 0.375rem;\n width: 297px;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__expanded___ofKPx.styles-module__serverConnected___Gfbou {\n width: 337px;\n}\n\n.styles-module__toggleContent___0yfyP {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: opacity 0.1s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__toggleContent___0yfyP.styles-module__visible___KHwEW {\n opacity: 1;\n visibility: visible;\n pointer-events: auto;\n}\n.styles-module__toggleContent___0yfyP.styles-module__hidden___Ae8H4 {\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__controlsContent___9GJWU {\n display: flex;\n align-items: center;\n gap: 0.375rem;\n transition: filter 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__controlsContent___9GJWU.styles-module__visible___KHwEW {\n opacity: 1;\n filter: blur(0px);\n transform: scale(1);\n visibility: visible;\n pointer-events: auto;\n}\n.styles-module__controlsContent___9GJWU.styles-module__hidden___Ae8H4 {\n pointer-events: none;\n opacity: 0;\n filter: blur(10px);\n transform: scale(0.4);\n}\n\n.styles-module__badge___2XsgF {\n position: absolute;\n top: -13px;\n right: -13px;\n user-select: none;\n min-width: 18px;\n height: 18px;\n padding: 0 5px;\n border-radius: 9px;\n background-color: var(--ui-sniper-color-accent);\n color: white;\n font-size: 0.625rem;\n font-weight: 600;\n display: flex;\n align-items: center;\n justify-content: center;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.04);\n opacity: 1;\n transition: transform 0.3s ease, opacity 0.2s ease;\n transform: scale(1);\n}\n.styles-module__badge___2XsgF.styles-module__fadeOut___6Ut6- {\n opacity: 0;\n transform: scale(0);\n pointer-events: none;\n}\n.styles-module__badge___2XsgF.styles-module__entrance___sgHd8 {\n animation: styles-module__badgeEnter___mVQLj 0.3s cubic-bezier(0.34, 1.2, 0.64, 1) 0.4s both;\n}\n\n.styles-module__controlButton___8Q0jc {\n position: relative;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 34px;\n height: 34px;\n border-radius: 50%;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.85);\n transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease, opacity 0.2s ease;\n}\n.styles-module__controlButton___8Q0jc:hover:not(:disabled):not([data-active=true]):not([data-failed=true]):not([data-auto-sync=true]):not([data-error=true]):not([data-no-hover=true]) {\n background: rgba(255, 255, 255, 0.12);\n color: #fff;\n}\n.styles-module__controlButton___8Q0jc:active:not(:disabled) {\n transform: scale(0.92);\n}\n.styles-module__controlButton___8Q0jc:disabled {\n opacity: 0.35;\n cursor: not-allowed;\n}\n.styles-module__controlButton___8Q0jc[data-active=true] {\n color: var(--ui-sniper-color-blue);\n background-color: color-mix(in srgb, var(--ui-sniper-color-blue) 25%, transparent);\n}\n.styles-module__controlButton___8Q0jc[data-error=true] {\n color: var(--ui-sniper-color-red);\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n}\n.styles-module__controlButton___8Q0jc[data-danger]:hover:not(:disabled):not([data-active=true]):not([data-failed=true]) {\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n color: var(--ui-sniper-color-red);\n}\n.styles-module__controlButton___8Q0jc[data-no-hover=true], .styles-module__controlButton___8Q0jc.styles-module__statusShowing___te6iu {\n cursor: default;\n pointer-events: none;\n background: transparent !important;\n}\n.styles-module__controlButton___8Q0jc[data-auto-sync=true] {\n color: var(--ui-sniper-color-green);\n background: transparent;\n cursor: default;\n}\n.styles-module__controlButton___8Q0jc[data-failed=true] {\n color: var(--ui-sniper-color-red);\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n}\n\n.styles-module__buttonBadge___NeFWb {\n position: absolute;\n top: 0px;\n right: 0px;\n min-width: 16px;\n height: 16px;\n padding: 0 4px;\n border-radius: 8px;\n background-color: var(--ui-sniper-color-accent);\n color: white;\n font-size: 0.625rem;\n font-weight: 600;\n display: flex;\n align-items: center;\n justify-content: center;\n box-shadow: 0 0 0 2px #1a1a1a, 0 1px 3px rgba(0, 0, 0, 0.2);\n pointer-events: none;\n}\n[data-ui-sniper-theme=light] .styles-module__buttonBadge___NeFWb {\n box-shadow: 0 0 0 2px #fff, 0 1px 3px rgba(0, 0, 0, 0.2);\n}\n\n@keyframes styles-module__mcpIndicatorPulseConnected___EDodZ {\n 0%, 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n }\n 50% {\n box-shadow: 0 0 0 5px color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n}\n@keyframes styles-module__mcpIndicatorPulseConnecting___cCYte {\n 0%, 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-yellow) 50%, transparent);\n }\n 50% {\n box-shadow: 0 0 0 5px color-mix(in srgb, var(--ui-sniper-color-yellow) 0%, transparent);\n }\n}\n.styles-module__mcpIndicator___zGJeL {\n position: absolute;\n top: 3px;\n right: 3px;\n width: 6px;\n height: 6px;\n border-radius: 50%;\n pointer-events: none;\n transition: background-color 0.3s ease, opacity 0.15s ease, transform 0.15s ease;\n opacity: 1;\n transform: scale(1);\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpIndicatorPulseConnected___EDodZ 2.5s ease-in-out infinite;\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpIndicatorPulseConnecting___cCYte 1.5s ease-in-out infinite;\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__hidden___Ae8H4 {\n opacity: 0;\n transform: scale(0);\n animation: none;\n}\n\n@keyframes styles-module__connectionPulse___-Zycw {\n 0%, 100% {\n opacity: 1;\n transform: scale(1);\n }\n 50% {\n opacity: 0.6;\n transform: scale(0.9);\n }\n}\n.styles-module__connectionIndicatorWrapper___L-e-3 {\n width: 8px;\n height: 34px;\n margin-left: 6px;\n margin-right: 6px;\n}\n\n.styles-module__connectionIndicator___afk9p {\n position: relative;\n width: 8px;\n height: 8px;\n border-radius: 50%;\n opacity: 0;\n transition: opacity 0.3s ease, background-color 0.3s ease;\n cursor: default;\n}\n\n.styles-module__connectionIndicatorVisible___C-i5B {\n opacity: 1;\n}\n\n.styles-module__connectionIndicatorConnected___IY8pR {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__connectionPulse___-Zycw 2.5s ease-in-out infinite;\n}\n\n.styles-module__connectionIndicatorDisconnected___kmpaZ {\n background-color: var(--ui-sniper-color-red);\n animation: none;\n}\n\n.styles-module__connectionIndicatorConnecting___QmSLH {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__connectionPulse___-Zycw 1s ease-in-out infinite;\n}\n\n.styles-module__buttonWrapper___rBcdv {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n opacity: 1;\n visibility: visible;\n transform: translateX(-50%) scale(1);\n transition-delay: 0.85s;\n}\n.styles-module__buttonWrapper___rBcdv:has(.styles-module__controlButton___8Q0jc:disabled):hover .styles-module__buttonTooltip___Burd9 {\n opacity: 0;\n visibility: hidden;\n}\n\n.styles-module__tooltipsInSession___-0lHH .styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n transition-delay: 0s;\n}\n\n.styles-module__sendButtonWrapper___UUxG6 {\n width: 0;\n opacity: 0;\n overflow: hidden;\n pointer-events: none;\n margin-left: -0.375rem;\n transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), margin 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__sendButtonWrapper___UUxG6 .styles-module__controlButton___8Q0jc {\n transform: scale(0.8);\n transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__sendButtonWrapper___UUxG6.styles-module__sendButtonVisible___WPSQU {\n width: 34px;\n opacity: 1;\n overflow: visible;\n pointer-events: auto;\n margin-left: 0;\n}\n.styles-module__sendButtonWrapper___UUxG6.styles-module__sendButtonVisible___WPSQU .styles-module__controlButton___8Q0jc {\n transform: scale(1);\n}\n\n.styles-module__buttonTooltip___Burd9 {\n position: absolute;\n bottom: calc(100% + 14px);\n left: 50%;\n transform: translateX(-50%) scale(0.95);\n padding: 6px 10px;\n background: #1a1a1a;\n color: rgba(255, 255, 255, 0.9);\n font-size: 12px;\n font-weight: 500;\n border-radius: 8px;\n white-space: nowrap;\n opacity: 0;\n visibility: hidden;\n pointer-events: none;\n z-index: 100001;\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);\n transition: opacity 0.135s ease, transform 0.135s ease, visibility 0.135s ease;\n}\n.styles-module__buttonTooltip___Burd9::after {\n content: "";\n position: absolute;\n top: calc(100% - 4px);\n left: 50%;\n transform: translateX(-50%) rotate(45deg);\n width: 8px;\n height: 8px;\n background: #1a1a1a;\n border-radius: 0 0 2px 0;\n}\n\n.styles-module__shortcut___lEAQk {\n margin-left: 4px;\n opacity: 0.5;\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonTooltip___Burd9 {\n bottom: auto;\n top: calc(100% + 14px);\n transform: translateX(-50%) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonTooltip___Burd9::after {\n top: -4px;\n bottom: auto;\n border-radius: 2px 0 0 0;\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-50%) scale(1);\n}\n\n.styles-module__tooltipsHidden___VtLJG .styles-module__buttonTooltip___Burd9 {\n opacity: 0 !important;\n visibility: hidden !important;\n transition: none !important;\n}\n\n.styles-module__tooltipVisible___0jcCv,\n.styles-module__tooltipsHidden___VtLJG .styles-module__tooltipVisible___0jcCv {\n opacity: 1 !important;\n visibility: visible !important;\n transform: translateX(-50%) scale(1) !important;\n transition-delay: 0s !important;\n}\n\n.styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9 {\n left: 50%;\n transform: translateX(-12px) scale(0.95);\n}\n.styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9::after {\n left: 16px;\n}\n.styles-module__buttonWrapperAlignLeft___myzIp:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(1);\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignLeft___myzIp:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(1);\n}\n\n.styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9 {\n left: 50%;\n transform: translateX(calc(-100% + 12px)) scale(0.95);\n}\n.styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9::after {\n left: auto;\n right: 8px;\n}\n.styles-module__buttonWrapperAlignRight___HCQFR:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(1);\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignRight___HCQFR:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(1);\n}\n\n.styles-module__divider___c--s1 {\n width: 1px;\n height: 12px;\n background: rgba(255, 255, 255, 0.15);\n margin: 0 0.125rem;\n}\n\n.styles-module__overlay___Q1O9y {\n position: fixed;\n inset: 0;\n z-index: 99997;\n pointer-events: none;\n}\n.styles-module__overlay___Q1O9y > * {\n pointer-events: auto;\n}\n\n.styles-module__hoverHighlight___ogakW {\n position: fixed;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-accent) 50%, transparent);\n border-radius: 4px;\n background-color: color-mix(in srgb, var(--ui-sniper-color-accent) 4%, transparent);\n pointer-events: none !important;\n box-sizing: border-box;\n will-change: opacity;\n contain: layout style;\n}\n.styles-module__hoverHighlight___ogakW.styles-module__enter___WFIki {\n animation: styles-module__hoverHighlightIn___6WYHY 0.12s ease-out forwards;\n}\n\n.styles-module__multiSelectOutline___cSJ-m {\n position: fixed;\n border: 2px dashed color-mix(in srgb, var(--ui-sniper-color-green) 60%, transparent);\n border-radius: 4px;\n pointer-events: none !important;\n background-color: color-mix(in srgb, var(--ui-sniper-color-green) 5%, transparent);\n box-sizing: border-box;\n will-change: opacity;\n}\n.styles-module__multiSelectOutline___cSJ-m.styles-module__enter___WFIki {\n animation: styles-module__fadeIn___b9qmf 0.15s ease-out forwards;\n}\n.styles-module__multiSelectOutline___cSJ-m.styles-module__exit___fyOJ0 {\n animation: styles-module__fadeOut___6Ut6- 0.15s ease-out forwards;\n}\n\n.styles-module__singleSelectOutline___QhX-O {\n position: fixed;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-blue) 60%, transparent);\n border-radius: 4px;\n pointer-events: none !important;\n background-color: color-mix(in srgb, var(--ui-sniper-color-blue) 5%, transparent);\n box-sizing: border-box;\n will-change: opacity;\n}\n.styles-module__singleSelectOutline___QhX-O.styles-module__enter___WFIki {\n animation: styles-module__fadeIn___b9qmf 0.15s ease-out forwards;\n}\n.styles-module__singleSelectOutline___QhX-O.styles-module__exit___fyOJ0 {\n animation: styles-module__fadeOut___6Ut6- 0.15s ease-out forwards;\n}\n\n.styles-module__hoverTooltip___bvLk7 {\n position: fixed;\n font-size: 0.6875rem;\n font-weight: 500;\n color: #fff;\n background: rgba(0, 0, 0, 0.85);\n padding: 0.35rem 0.6rem;\n border-radius: 0.375rem;\n pointer-events: none !important;\n white-space: nowrap;\n max-width: 280px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.styles-module__hoverTooltip___bvLk7.styles-module__enter___WFIki {\n animation: styles-module__hoverTooltipIn___FYGQx 0.1s ease-out forwards;\n}\n\n.styles-module__hoverReactPath___gx1IJ {\n font-size: 0.625rem;\n color: rgba(255, 255, 255, 0.6);\n margin-bottom: 0.15rem;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__hoverElementName___QMLMl {\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__markersLayer___-25j1 {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n height: 0;\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__markersLayer___-25j1 > * {\n pointer-events: auto;\n}\n\n.styles-module__fixedMarkersLayer___ffyX6 {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__fixedMarkersLayer___ffyX6 > * {\n pointer-events: auto;\n}\n\n.styles-module__marker___6sQrs {\n position: absolute;\n width: 22px;\n height: 22px;\n background: var(--ui-sniper-color-blue);\n color: white;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 0.6875rem;\n font-weight: 600;\n transform: translate(-50%, -50%) scale(1);\n opacity: 1;\n cursor: pointer;\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.04);\n user-select: none;\n will-change: transform, opacity;\n contain: layout style;\n z-index: 1;\n}\n.styles-module__marker___6sQrs:hover {\n z-index: 2;\n}\n.styles-module__marker___6sQrs:not(.styles-module__enter___WFIki):not(.styles-module__exit___fyOJ0):not(.styles-module__clearing___FQ--7) {\n transition: background-color 0.15s ease, transform 0.1s ease;\n}\n.styles-module__marker___6sQrs.styles-module__enter___WFIki {\n animation: styles-module__markerIn___5FaAP 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;\n}\n.styles-module__marker___6sQrs.styles-module__exit___fyOJ0 {\n animation: styles-module__markerOut___GU5jX 0.2s ease-out both;\n pointer-events: none;\n}\n.styles-module__marker___6sQrs.styles-module__clearing___FQ--7 {\n animation: styles-module__markerOut___GU5jX 0.15s ease-out both;\n pointer-events: none;\n}\n.styles-module__marker___6sQrs:not(.styles-module__enter___WFIki):not(.styles-module__exit___fyOJ0):not(.styles-module__clearing___FQ--7):hover {\n transform: translate(-50%, -50%) scale(1.1);\n}\n.styles-module__marker___6sQrs.styles-module__pending___2IHLC {\n position: fixed;\n background-color: var(--ui-sniper-color-blue);\n cursor: default;\n}\n.styles-module__marker___6sQrs.styles-module__fixed___dBMHC {\n position: fixed;\n}\n.styles-module__marker___6sQrs.styles-module__multiSelect___YWiuz {\n background-color: var(--ui-sniper-color-green);\n width: 26px;\n height: 26px;\n border-radius: 6px;\n font-size: 0.75rem;\n}\n.styles-module__marker___6sQrs.styles-module__multiSelect___YWiuz.styles-module__pending___2IHLC {\n background-color: var(--ui-sniper-color-green);\n}\n.styles-module__marker___6sQrs.styles-module__hovered___ZgXIy {\n background-color: var(--ui-sniper-color-red);\n}\n\n.styles-module__renumber___nCTxD {\n display: block;\n animation: styles-module__renumberRoll___Wgbq3 0.2s ease-out;\n}\n\n@keyframes styles-module__renumberRoll___Wgbq3 {\n 0% {\n transform: translateX(-40%);\n opacity: 0;\n }\n 100% {\n transform: translateX(0);\n opacity: 1;\n }\n}\n.styles-module__markerTooltip___aLJID {\n position: absolute;\n top: calc(100% + 10px);\n left: 50%;\n transform: translateX(-50%) scale(0.909);\n z-index: 100002;\n background: #1a1a1a;\n padding: 8px 0.75rem;\n border-radius: 0.75rem;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n font-weight: 400;\n color: #fff;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);\n min-width: 120px;\n max-width: 200px;\n pointer-events: none;\n cursor: default;\n}\n.styles-module__markerTooltip___aLJID.styles-module__enter___WFIki {\n animation: styles-module__tooltipIn___0N31w 0.1s ease-out forwards;\n}\n\n.styles-module__markerQuote___FHmrz {\n display: block;\n font-size: 12px;\n font-style: italic;\n color: rgba(255, 255, 255, 0.6);\n margin-bottom: 0.3125rem;\n line-height: 1.4;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__markerNote___QkrrS {\n display: block;\n font-size: 13px;\n font-weight: 400;\n line-height: 1.4;\n color: #fff;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n padding-bottom: 2px;\n}\n\n.styles-module__markerHint___2iF-6 {\n display: block;\n font-size: 0.625rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.6);\n margin-top: 0.375rem;\n white-space: nowrap;\n}\n\n.styles-module__settingsPanel___OxX3Y {\n position: absolute;\n right: 5px;\n bottom: calc(100% + 0.5rem);\n z-index: 1;\n overflow: hidden;\n background: #1c1c1c;\n border-radius: 1rem;\n padding: 13px 0 16px;\n min-width: 205px;\n cursor: default;\n opacity: 1;\n box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.04);\n transition: background-color 0.25s ease, box-shadow 0.25s ease;\n}\n.styles-module__settingsPanel___OxX3Y::before, .styles-module__settingsPanel___OxX3Y::after {\n content: "";\n position: absolute;\n top: 0;\n bottom: 0;\n width: 16px;\n z-index: 2;\n pointer-events: none;\n}\n.styles-module__settingsPanel___OxX3Y::before {\n left: 0;\n background: linear-gradient(to right, #1c1c1c 0%, transparent 100%);\n}\n.styles-module__settingsPanel___OxX3Y::after {\n right: 0;\n background: linear-gradient(to left, #1c1c1c 0%, transparent 100%);\n}\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsHeader___pwDY9,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsBrand___0gJeM,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsBrandSlash___uTG18,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsVersion___TUcFq,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsSection___m-YM2,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsLabel___8UjfX,\n.styles-module__settingsPanel___OxX3Y .styles-module__cycleButton___FMKfw,\n.styles-module__settingsPanel___OxX3Y .styles-module__cycleDot___nPgLY,\n.styles-module__settingsPanel___OxX3Y .styles-module__dropdownButton___16NPz,\n.styles-module__settingsPanel___OxX3Y .styles-module__toggleLabel___Xm8Aa,\n.styles-module__settingsPanel___OxX3Y .styles-module__customCheckbox___U39ax,\n.styles-module__settingsPanel___OxX3Y .styles-module__sliderLabel___U8sPr,\n.styles-module__settingsPanel___OxX3Y .styles-module__slider___GLdxp,\n.styles-module__settingsPanel___OxX3Y .styles-module__themeToggle___2rUjA {\n transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;\n}\n.styles-module__settingsPanel___OxX3Y.styles-module__enter___WFIki {\n opacity: 1;\n transform: translateY(0) scale(1);\n filter: blur(0px);\n transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;\n}\n.styles-module__settingsPanel___OxX3Y.styles-module__exit___fyOJ0 {\n opacity: 0;\n transform: translateY(8px) scale(0.95);\n filter: blur(5px);\n pointer-events: none;\n transition: opacity 0.1s ease, transform 0.1s ease, filter 0.1s ease;\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y {\n background: #1a1a1a;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsLabel___8UjfX {\n color: rgba(255, 255, 255, 0.6);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12 {\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12:hover {\n background: rgba(255, 255, 255, 0.1);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12.styles-module__selected___OwRqP {\n background: rgba(255, 255, 255, 0.15);\n color: #fff;\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__toggleLabel___Xm8Aa {\n color: rgba(255, 255, 255, 0.85);\n}\n\n.styles-module__settingsPanelContainer___Xksv8 {\n overflow: visible;\n position: relative;\n display: flex;\n padding: 0 1rem;\n}\n\n.styles-module__settingsPage___6YfHH {\n min-width: 100%;\n flex-shrink: 0;\n transition: transform 0.2s ease, opacity 0.2s ease;\n transition-delay: 0s;\n opacity: 1;\n}\n\n.styles-module__settingsPage___6YfHH.styles-module__slideLeft___Ps01J {\n transform: translateX(-24px);\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__automationsPage___uvCq6 {\n position: absolute;\n top: 0;\n left: 24px;\n width: 100%;\n height: 100%;\n padding: 3px 1rem 0;\n box-sizing: border-box;\n display: flex;\n flex-direction: column;\n transition: transform 0.2s ease, opacity 0.2s ease;\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__automationsPage___uvCq6.styles-module__slideIn___4-qXe {\n transform: translateX(-24px);\n opacity: 1;\n pointer-events: auto;\n}\n\n.styles-module__settingsNavLink___wCzJt {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n padding: 0;\n border: none;\n background: transparent;\n font-family: inherit;\n font-size: 0.8125rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.5);\n cursor: pointer;\n transition: color 0.15s ease;\n}\n.styles-module__settingsNavLink___wCzJt:hover {\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt {\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt:hover {\n color: rgba(0, 0, 0, 0.8);\n}\n.styles-module__settingsNavLink___wCzJt svg {\n color: rgba(255, 255, 255, 0.4);\n transition: color 0.15s ease;\n}\n.styles-module__settingsNavLink___wCzJt:hover svg {\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt svg {\n color: rgba(0, 0, 0, 0.25);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt:hover svg {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__settingsNavLinkRight___ZWwhj {\n display: flex;\n align-items: center;\n gap: 6px;\n}\n\n.styles-module__mcpNavIndicator___cl9pO {\n width: 8px;\n height: 8px;\n border-radius: 50%;\n flex-shrink: 0;\n}\n.styles-module__mcpNavIndicator___cl9pO.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpPulse___uNggr 2.5s ease-in-out infinite;\n}\n.styles-module__mcpNavIndicator___cl9pO.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpPulse___uNggr 1.5s ease-in-out infinite;\n}\n\n.styles-module__settingsBackButton___bIe2j {\n display: flex;\n align-items: center;\n gap: 4px;\n padding: 6px 0 12px 0;\n margin: -6px 0 0.5rem 0;\n border: none;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n border-radius: 0;\n background: transparent;\n font-family: inherit;\n font-size: 0.8125rem;\n font-weight: 500;\n letter-spacing: -0.15px;\n color: #fff;\n cursor: pointer;\n transition: transform 0.12s cubic-bezier(0.32, 0.72, 0, 1);\n}\n.styles-module__settingsBackButton___bIe2j svg {\n opacity: 0.4;\n flex-shrink: 0;\n transition: opacity 0.15s ease, transform 0.18s cubic-bezier(0.32, 0.72, 0, 1);\n}\n.styles-module__settingsBackButton___bIe2j:hover {\n border-bottom-color: rgba(255, 255, 255, 0.07);\n}\n.styles-module__settingsBackButton___bIe2j:hover svg {\n opacity: 1;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsBackButton___bIe2j {\n color: rgba(0, 0, 0, 0.85);\n border-bottom-color: rgba(0, 0, 0, 0.08);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsBackButton___bIe2j:hover {\n border-bottom-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__automationHeader___InP0r {\n display: flex;\n align-items: center;\n gap: 0.125rem;\n font-size: 0.8125rem;\n font-weight: 400;\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__automationHeader___InP0r {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__automationDescription___NKlmo {\n font-size: 0.6875rem;\n font-weight: 300;\n color: rgba(255, 255, 255, 0.5);\n margin-top: 2px;\n line-height: 14px;\n}\n[data-ui-sniper-theme=light] .styles-module__automationDescription___NKlmo {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__learnMoreLink___8xv-x {\n color: rgba(255, 255, 255, 0.8);\n text-decoration: underline dotted;\n text-decoration-color: rgba(255, 255, 255, 0.2);\n text-underline-offset: 2px;\n transition: color 0.15s ease;\n}\n.styles-module__learnMoreLink___8xv-x:hover {\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__learnMoreLink___8xv-x {\n color: rgba(0, 0, 0, 0.6);\n text-decoration-color: rgba(0, 0, 0, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__learnMoreLink___8xv-x:hover {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__autoSendRow___UblX5 {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.styles-module__autoSendLabel___icDc2 {\n font-size: 0.6875rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.4);\n transition: color 0.15s ease;\n}\n.styles-module__autoSendLabel___icDc2.styles-module__active___-zoN6 {\n color: #66b8ff;\n color: color(display-p3 0.4 0.72 1);\n}\n[data-ui-sniper-theme=light] .styles-module__autoSendLabel___icDc2 {\n color: rgba(0, 0, 0, 0.4);\n}\n[data-ui-sniper-theme=light] .styles-module__autoSendLabel___icDc2.styles-module__active___-zoN6 {\n color: var(--ui-sniper-color-blue);\n}\n\n.styles-module__webhookUrlInput___2375C {\n display: block;\n width: 100%;\n flex: 1;\n min-height: 60px;\n box-sizing: border-box;\n margin-top: 11px;\n padding: 8px 10px;\n border: 1px solid rgba(255, 255, 255, 0.1);\n border-radius: 6px;\n background: rgba(255, 255, 255, 0.03);\n font-family: inherit;\n font-size: 0.75rem;\n font-weight: 400;\n color: #fff;\n outline: none;\n resize: none;\n user-select: text;\n transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;\n}\n.styles-module__webhookUrlInput___2375C::placeholder {\n color: rgba(255, 255, 255, 0.3);\n}\n.styles-module__webhookUrlInput___2375C:focus {\n border-color: rgba(255, 255, 255, 0.3);\n background: rgba(255, 255, 255, 0.08);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C::placeholder {\n color: rgba(0, 0, 0, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C:focus {\n border-color: rgba(0, 0, 0, 0.25);\n background: rgba(0, 0, 0, 0.05);\n}\n\n.styles-module__settingsHeader___pwDY9 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-height: 24px;\n margin-bottom: 0.5rem;\n padding-bottom: 9px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n}\n\n.styles-module__settingsBrand___0gJeM {\n font-size: 0.8125rem;\n font-weight: 600;\n letter-spacing: -0.0094em;\n color: #fff;\n text-decoration: none;\n}\n\n.styles-module__settingsBrandSlash___uTG18 {\n color: var(--ui-sniper-color-accent);\n transition: color 0.2s ease;\n}\n\n.styles-module__settingsVersion___TUcFq {\n font-size: 11px;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.4);\n margin-left: auto;\n letter-spacing: -0.0094em;\n}\n\n.styles-module__settingsSection___m-YM2 + .styles-module__settingsSection___m-YM2 {\n margin-top: 0.5rem;\n padding-top: 0.5rem;\n border-top: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__settingsSection___m-YM2.styles-module__settingsSectionExtraPadding___jdhFV {\n padding-top: calc(0.5rem + 4px);\n}\n\n.styles-module__settingsSectionGrow___h-5HZ {\n flex: 1;\n display: flex;\n flex-direction: column;\n}\n\n.styles-module__settingsRow___3sdhc {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-height: 24px;\n}\n.styles-module__settingsRow___3sdhc.styles-module__settingsRowMarginTop___zA0Sp {\n margin-top: 8px;\n}\n\n.styles-module__dropdownContainer___BVnxe {\n position: relative;\n}\n\n.styles-module__dropdownButton___16NPz {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n padding: 0.25rem 0.5rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 600;\n color: #fff;\n cursor: pointer;\n transition: background-color 0.15s ease, color 0.15s ease;\n letter-spacing: -0.0094em;\n}\n.styles-module__dropdownButton___16NPz:hover {\n background: rgba(255, 255, 255, 0.08);\n}\n.styles-module__dropdownButton___16NPz svg {\n opacity: 0.6;\n}\n\n.styles-module__cycleButton___FMKfw {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n padding: 0;\n border: none;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 500;\n color: #fff;\n cursor: pointer;\n letter-spacing: -0.0094em;\n}\n[data-ui-sniper-theme=light] .styles-module__cycleButton___FMKfw {\n color: rgba(0, 0, 0, 0.85);\n}\n.styles-module__cycleButton___FMKfw:disabled {\n opacity: 0.35;\n cursor: not-allowed;\n}\n\n.styles-module__settingsRowDisabled___EgS0V .styles-module__settingsLabel___8UjfX {\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsRowDisabled___EgS0V .styles-module__settingsLabel___8UjfX {\n color: rgba(0, 0, 0, 0.2);\n}\n.styles-module__settingsRowDisabled___EgS0V .styles-module__toggleSwitch___l4Ygm {\n opacity: 0.4;\n cursor: not-allowed;\n}\n\n@keyframes styles-module__cycleTextIn___Q6zJf {\n 0% {\n opacity: 0;\n transform: translateY(-6px);\n }\n 100% {\n opacity: 1;\n transform: translateY(0);\n }\n}\n.styles-module__cycleButtonText___fD1LR {\n display: inline-block;\n animation: styles-module__cycleTextIn___Q6zJf 0.2s ease-out;\n}\n\n.styles-module__cycleDots___LWuoQ {\n display: flex;\n flex-direction: column;\n gap: 2px;\n}\n\n.styles-module__cycleDot___nPgLY {\n width: 3px;\n height: 3px;\n border-radius: 50%;\n background: rgba(255, 255, 255, 0.3);\n transform: scale(0.667);\n transition: background-color 0.25s ease-out, transform 0.25s ease-out;\n}\n.styles-module__cycleDot___nPgLY.styles-module__active___-zoN6 {\n background: #fff;\n transform: scale(1);\n}\n[data-ui-sniper-theme=light] .styles-module__cycleDot___nPgLY {\n background: rgba(0, 0, 0, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__cycleDot___nPgLY.styles-module__active___-zoN6 {\n background: rgba(0, 0, 0, 0.7);\n}\n\n.styles-module__dropdownMenu___k73ER {\n position: absolute;\n right: 0;\n top: calc(100% + 0.25rem);\n background: #1a1a1a;\n border-radius: 0.5rem;\n padding: 0.25rem;\n min-width: 120px;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);\n z-index: 10;\n animation: styles-module__scaleIn___c-r1K 0.15s ease-out;\n}\n\n.styles-module__dropdownItem___ylsLj {\n width: 100%;\n display: flex;\n align-items: center;\n padding: 0.5rem 0.625rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.85);\n cursor: pointer;\n text-align: left;\n transition: background-color 0.15s ease, color 0.15s ease;\n letter-spacing: -0.0094em;\n}\n.styles-module__dropdownItem___ylsLj:hover {\n background: rgba(255, 255, 255, 0.08);\n}\n.styles-module__dropdownItem___ylsLj.styles-module__selected___OwRqP {\n background: rgba(255, 255, 255, 0.12);\n color: #fff;\n font-weight: 600;\n}\n\n.styles-module__settingsLabel___8UjfX {\n font-size: 0.8125rem;\n font-weight: 400;\n letter-spacing: -0.0094em;\n color: rgba(255, 255, 255, 0.5);\n display: flex;\n align-items: center;\n gap: 0.125rem;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsLabel___8UjfX {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__settingsLabelMarker___ewdtV {\n padding-top: 3px;\n margin-bottom: 10px;\n}\n\n.styles-module__settingsOptions___LyrBA {\n display: flex;\n gap: 0.25rem;\n}\n\n.styles-module__settingsOption___UNa12 {\n flex: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 0.25rem;\n padding: 0.375rem 0.5rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.6875rem;\n font-weight: 500;\n color: rgba(0, 0, 0, 0.7);\n cursor: pointer;\n transition: background-color 0.15s ease, color 0.15s ease;\n}\n.styles-module__settingsOption___UNa12:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.styles-module__settingsOption___UNa12.styles-module__selected___OwRqP {\n background: color-mix(in srgb, var(--ui-sniper-color-blue) 15%, transparent);\n color: var(--ui-sniper-color-blue);\n}\n\n.styles-module__sliderContainer___ducXj {\n display: flex;\n flex-direction: column;\n gap: 0.5rem;\n}\n\n.styles-module__slider___GLdxp {\n -webkit-appearance: none;\n appearance: none;\n width: 100%;\n height: 4px;\n background: rgba(255, 255, 255, 0.15);\n border-radius: 2px;\n outline: none;\n cursor: pointer;\n}\n.styles-module__slider___GLdxp::-webkit-slider-thumb {\n -webkit-appearance: none;\n appearance: none;\n width: 14px;\n height: 14px;\n background: white;\n border-radius: 50%;\n cursor: pointer;\n transition: transform 0.15s ease, box-shadow 0.15s ease;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);\n}\n.styles-module__slider___GLdxp::-moz-range-thumb {\n width: 14px;\n height: 14px;\n background: white;\n border: none;\n border-radius: 50%;\n cursor: pointer;\n transition: transform 0.15s ease, box-shadow 0.15s ease;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);\n}\n.styles-module__slider___GLdxp:hover::-webkit-slider-thumb {\n transform: scale(1.15);\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);\n}\n.styles-module__slider___GLdxp:hover::-moz-range-thumb {\n transform: scale(1.15);\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);\n}\n\n.styles-module__sliderLabels___FhLDB {\n display: flex;\n justify-content: space-between;\n}\n\n.styles-module__sliderLabel___U8sPr {\n font-size: 0.625rem;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.4);\n cursor: pointer;\n transition: color 0.15s ease;\n}\n.styles-module__sliderLabel___U8sPr:hover {\n color: rgba(255, 255, 255, 0.7);\n}\n.styles-module__sliderLabel___U8sPr.styles-module__active___-zoN6 {\n color: rgba(255, 255, 255, 0.9);\n}\n\n.styles-module__colorOptions___iHCNX {\n display: flex;\n gap: 0.5rem;\n margin-top: 0.375rem;\n margin-bottom: 1px;\n}\n\n.styles-module__colorOption___IodiY {\n display: block;\n width: 20px;\n height: 20px;\n border-radius: 50%;\n border: 2px solid transparent;\n background-color: var(--swatch);\n cursor: pointer;\n transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);\n}\n@supports (color: color(display-p3 0 0 0)) {\n .styles-module__colorOption___IodiY {\n background-color: var(--swatch-p3);\n }\n}\n.styles-module__colorOption___IodiY:hover {\n transform: scale(1.15);\n}\n.styles-module__colorOption___IodiY.styles-module__selected___OwRqP {\n transform: scale(0.83);\n}\n\n.styles-module__colorOptionRing___U2xpo {\n display: flex;\n width: 24px;\n height: 24px;\n border: 2px solid transparent;\n border-radius: 50%;\n transition: border-color 0.3s ease;\n}\n.styles-module__colorOptionRing___U2xpo.styles-module__selected___OwRqP {\n border-color: var(--swatch);\n}\n@supports (color: color(display-p3 0 0 0)) {\n .styles-module__colorOptionRing___U2xpo.styles-module__selected___OwRqP {\n border-color: var(--swatch-p3);\n }\n}\n\n.styles-module__settingsToggle___fBrFn {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n cursor: pointer;\n}\n.styles-module__settingsToggle___fBrFn + .styles-module__settingsToggle___fBrFn {\n margin-top: calc(0.5rem + 6px);\n}\n.styles-module__settingsToggle___fBrFn input[type=checkbox] {\n position: absolute;\n opacity: 0;\n width: 0;\n height: 0;\n}\n.styles-module__settingsToggle___fBrFn.styles-module__settingsToggleMarginBottom___MZUyF {\n margin-bottom: calc(0.5rem + 6px);\n}\n\n.styles-module__customCheckbox___U39ax {\n position: relative;\n width: 14px;\n height: 14px;\n border: 1px solid rgba(255, 255, 255, 0.2);\n border-radius: 4px;\n background: rgba(255, 255, 255, 0.05);\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n transition: background-color 0.25s ease, border-color 0.25s ease;\n}\n.styles-module__customCheckbox___U39ax svg {\n color: #1a1a1a;\n opacity: 1;\n transition: opacity 0.15s ease;\n}\ninput[type=checkbox]:checked + .styles-module__customCheckbox___U39ax {\n border-color: rgba(255, 255, 255, 0.3);\n background: rgb(255, 255, 255);\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax {\n border: 1px solid rgba(0, 0, 0, 0.15);\n background: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax.styles-module__checked___mnZLo {\n border-color: #1a1a1a;\n background: #1a1a1a;\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax.styles-module__checked___mnZLo svg {\n color: #fff;\n}\n\n.styles-module__toggleLabel___Xm8Aa {\n font-size: 0.8125rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.5);\n letter-spacing: -0.0094em;\n display: flex;\n align-items: center;\n gap: 0.25rem;\n}\n[data-ui-sniper-theme=light] .styles-module__toggleLabel___Xm8Aa {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__toggleSwitch___l4Ygm {\n position: relative;\n display: inline-block;\n width: 24px;\n height: 16px;\n flex-shrink: 0;\n cursor: pointer;\n transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n}\n.styles-module__toggleSwitch___l4Ygm input {\n opacity: 0;\n width: 0;\n height: 0;\n}\n.styles-module__toggleSwitch___l4Ygm input:checked + .styles-module__toggleSlider___wprIn {\n background-color: var(--ui-sniper-color-blue);\n}\n.styles-module__toggleSwitch___l4Ygm input:checked + .styles-module__toggleSlider___wprIn::before {\n transform: translateX(8px);\n}\n.styles-module__toggleSwitch___l4Ygm.styles-module__disabled___332Jw {\n opacity: 0.4;\n}\n.styles-module__toggleSwitch___l4Ygm.styles-module__disabled___332Jw .styles-module__toggleSlider___wprIn {\n cursor: not-allowed;\n}\n\n.styles-module__toggleSlider___wprIn {\n position: absolute;\n cursor: pointer;\n inset: 0;\n border-radius: 16px;\n background: #484848;\n}\n[data-ui-sniper-theme=light] .styles-module__toggleSlider___wprIn {\n background: #dddddd;\n}\n.styles-module__toggleSlider___wprIn::before {\n content: "";\n position: absolute;\n height: 12px;\n width: 12px;\n left: 2px;\n bottom: 2px;\n background: white;\n border-radius: 50%;\n transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n@keyframes styles-module__mcpPulse___uNggr {\n 0% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n }\n 70% {\n box-shadow: 0 0 0 6px color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n}\n@keyframes styles-module__mcpPulseError___fov9B {\n 0% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-red) 50%, transparent);\n }\n 70% {\n box-shadow: 0 0 0 6px color-mix(in srgb, var(--ui-sniper-color-red) 0%, transparent);\n }\n 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-red) 0%, transparent);\n }\n}\n.styles-module__mcpStatusDot___ibgkc {\n width: 8px;\n height: 8px;\n border-radius: 50%;\n flex-shrink: 0;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpPulse___uNggr 1.5s infinite;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpPulse___uNggr 2.5s ease-in-out infinite;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__disconnected___cHPxR {\n background-color: var(--ui-sniper-color-red);\n animation: styles-module__mcpPulseError___fov9B 2s infinite;\n}\n\n.styles-module__drawCanvas___7cG9U {\n position: fixed;\n inset: 0;\n z-index: 99996;\n pointer-events: none !important;\n}\n.styles-module__drawCanvas___7cG9U.styles-module__active___-zoN6 {\n pointer-events: auto !important;\n cursor: crosshair !important;\n}\n.styles-module__drawCanvas___7cG9U.styles-module__active___-zoN6[data-stroke-hover] {\n cursor: pointer !important;\n}\n\n.styles-module__dragSelection___kZLq2 {\n position: fixed;\n top: 0;\n left: 0;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-green) 60%, transparent);\n border-radius: 4px;\n background-color: color-mix(in srgb, var(--ui-sniper-color-green) 8%, transparent);\n pointer-events: none;\n z-index: 99997;\n will-change: transform, width, height;\n contain: layout style;\n}\n\n.styles-module__dragCount___KM90j {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n background-color: var(--ui-sniper-color-green);\n color: white;\n font-size: 0.875rem;\n font-weight: 600;\n padding: 0.25rem 0.5rem;\n border-radius: 1rem;\n min-width: 1.5rem;\n text-align: center;\n}\n\n.styles-module__highlightsContainer___-0xzG {\n position: fixed;\n top: 0;\n left: 0;\n pointer-events: none;\n z-index: 99996;\n}\n\n.styles-module__selectedElementHighlight___fyVlI {\n position: fixed;\n top: 0;\n left: 0;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n border-radius: 4px;\n background: color-mix(in srgb, var(--ui-sniper-color-green) 6%, transparent);\n pointer-events: none;\n will-change: transform, width, height;\n contain: layout style;\n}\n\n[data-ui-sniper-theme=light] .styles-module__toolbarContainer___dIhma {\n background: #fff;\n color: rgba(0, 0, 0, 0.85);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:hover {\n background: #f5f5f5;\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc {\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc:hover:not(:disabled):not([data-active=true]):not([data-failed=true]):not([data-auto-sync=true]):not([data-error=true]):not([data-no-hover=true]) {\n background: rgba(0, 0, 0, 0.06);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-active=true] {\n color: var(--ui-sniper-color-blue);\n background: color-mix(in srgb, var(--ui-sniper-color-blue) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-error=true] {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-danger]:hover:not(:disabled):not([data-active=true]):not([data-failed=true]) {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-auto-sync=true] {\n color: var(--ui-sniper-color-green);\n background: transparent;\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-failed=true] {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__buttonTooltip___Burd9 {\n background: #fff;\n color: rgba(0, 0, 0, 0.85);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__buttonTooltip___Burd9::after {\n background: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__divider___c--s1 {\n background: rgba(0, 0, 0, 0.1);\n}\n\n@media (max-width: 768px), (pointer: coarse) {\n .styles-module__toolbarContainer___dIhma {\n bottom: 24px;\n top: auto !important;\n left: 50% !important;\n transform: translateX(-50%) !important;\n width: max-content;\n max-width: 90vw;\n }\n}\n.styles-module__centerCrosshair___UQ3GL {\n position: fixed;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairDot___YjR0R {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 6px;\n height: 6px;\n background-color: var(--ui-sniper-color-accent);\n border-radius: 50%;\n box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairLineHorizontal___VX9Ks {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 20px;\n height: 2px;\n background-color: var(--ui-sniper-color-accent);\n opacity: 0.5;\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairLineVertical___ZEZ7X {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 2px;\n height: 20px;\n background-color: var(--ui-sniper-color-accent);\n opacity: 0.5;\n}';
8499
8499
  var classNames7 = { "toolbar": "styles-module__toolbar___wNsdK", "markersLayer": "styles-module__markersLayer___-25j1", "fixedMarkersLayer": "styles-module__fixedMarkersLayer___ffyX6", "controlsContent": "styles-module__controlsContent___9GJWU", "disableTransitions": "styles-module__disableTransitions___EopxO", "toolbarContainer": "styles-module__toolbarContainer___dIhma", "entrance": "styles-module__entrance___sgHd8", "toolbarEnter": "styles-module__toolbarEnter___u8RRu", "hiding": "styles-module__hiding___1td44", "toolbarHide": "styles-module__toolbarHide___y8kaT", "collapsed": "styles-module__collapsed___Rydsn", "expanded": "styles-module__expanded___ofKPx", "serverConnected": "styles-module__serverConnected___Gfbou", "toggleContent": "styles-module__toggleContent___0yfyP", "visible": "styles-module__visible___KHwEW", "hidden": "styles-module__hidden___Ae8H4", "badge": "styles-module__badge___2XsgF", "fadeOut": "styles-module__fadeOut___6Ut6-", "badgeEnter": "styles-module__badgeEnter___mVQLj", "controlButton": "styles-module__controlButton___8Q0jc", "statusShowing": "styles-module__statusShowing___te6iu", "buttonBadge": "styles-module__buttonBadge___NeFWb", "mcpIndicator": "styles-module__mcpIndicator___zGJeL", "connected": "styles-module__connected___7c28g", "mcpIndicatorPulseConnected": "styles-module__mcpIndicatorPulseConnected___EDodZ", "connecting": "styles-module__connecting___uo-CW", "mcpIndicatorPulseConnecting": "styles-module__mcpIndicatorPulseConnecting___cCYte", "connectionIndicatorWrapper": "styles-module__connectionIndicatorWrapper___L-e-3", "connectionIndicator": "styles-module__connectionIndicator___afk9p", "connectionIndicatorVisible": "styles-module__connectionIndicatorVisible___C-i5B", "connectionIndicatorConnected": "styles-module__connectionIndicatorConnected___IY8pR", "connectionPulse": "styles-module__connectionPulse___-Zycw", "connectionIndicatorDisconnected": "styles-module__connectionIndicatorDisconnected___kmpaZ", "connectionIndicatorConnecting": "styles-module__connectionIndicatorConnecting___QmSLH", "buttonWrapper": "styles-module__buttonWrapper___rBcdv", "buttonTooltip": "styles-module__buttonTooltip___Burd9", "tooltipsInSession": "styles-module__tooltipsInSession___-0lHH", "sendButtonWrapper": "styles-module__sendButtonWrapper___UUxG6", "sendButtonVisible": "styles-module__sendButtonVisible___WPSQU", "shortcut": "styles-module__shortcut___lEAQk", "tooltipBelow": "styles-module__tooltipBelow___m6ats", "tooltipsHidden": "styles-module__tooltipsHidden___VtLJG", "tooltipVisible": "styles-module__tooltipVisible___0jcCv", "buttonWrapperAlignLeft": "styles-module__buttonWrapperAlignLeft___myzIp", "buttonWrapperAlignRight": "styles-module__buttonWrapperAlignRight___HCQFR", "divider": "styles-module__divider___c--s1", "overlay": "styles-module__overlay___Q1O9y", "hoverHighlight": "styles-module__hoverHighlight___ogakW", "enter": "styles-module__enter___WFIki", "hoverHighlightIn": "styles-module__hoverHighlightIn___6WYHY", "multiSelectOutline": "styles-module__multiSelectOutline___cSJ-m", "fadeIn": "styles-module__fadeIn___b9qmf", "exit": "styles-module__exit___fyOJ0", "singleSelectOutline": "styles-module__singleSelectOutline___QhX-O", "hoverTooltip": "styles-module__hoverTooltip___bvLk7", "hoverTooltipIn": "styles-module__hoverTooltipIn___FYGQx", "hoverReactPath": "styles-module__hoverReactPath___gx1IJ", "hoverElementName": "styles-module__hoverElementName___QMLMl", "marker": "styles-module__marker___6sQrs", "clearing": "styles-module__clearing___FQ--7", "markerIn": "styles-module__markerIn___5FaAP", "markerOut": "styles-module__markerOut___GU5jX", "pending": "styles-module__pending___2IHLC", "fixed": "styles-module__fixed___dBMHC", "multiSelect": "styles-module__multiSelect___YWiuz", "hovered": "styles-module__hovered___ZgXIy", "renumber": "styles-module__renumber___nCTxD", "renumberRoll": "styles-module__renumberRoll___Wgbq3", "markerTooltip": "styles-module__markerTooltip___aLJID", "tooltipIn": "styles-module__tooltipIn___0N31w", "markerQuote": "styles-module__markerQuote___FHmrz", "markerNote": "styles-module__markerNote___QkrrS", "markerHint": "styles-module__markerHint___2iF-6", "settingsPanel": "styles-module__settingsPanel___OxX3Y", "settingsHeader": "styles-module__settingsHeader___pwDY9", "settingsBrand": "styles-module__settingsBrand___0gJeM", "settingsBrandSlash": "styles-module__settingsBrandSlash___uTG18", "settingsVersion": "styles-module__settingsVersion___TUcFq", "settingsSection": "styles-module__settingsSection___m-YM2", "settingsLabel": "styles-module__settingsLabel___8UjfX", "cycleButton": "styles-module__cycleButton___FMKfw", "cycleDot": "styles-module__cycleDot___nPgLY", "dropdownButton": "styles-module__dropdownButton___16NPz", "toggleLabel": "styles-module__toggleLabel___Xm8Aa", "customCheckbox": "styles-module__customCheckbox___U39ax", "sliderLabel": "styles-module__sliderLabel___U8sPr", "slider": "styles-module__slider___GLdxp", "themeToggle": "styles-module__themeToggle___2rUjA", "settingsOption": "styles-module__settingsOption___UNa12", "selected": "styles-module__selected___OwRqP", "settingsPanelContainer": "styles-module__settingsPanelContainer___Xksv8", "settingsPage": "styles-module__settingsPage___6YfHH", "slideLeft": "styles-module__slideLeft___Ps01J", "automationsPage": "styles-module__automationsPage___uvCq6", "slideIn": "styles-module__slideIn___4-qXe", "settingsNavLink": "styles-module__settingsNavLink___wCzJt", "settingsNavLinkRight": "styles-module__settingsNavLinkRight___ZWwhj", "mcpNavIndicator": "styles-module__mcpNavIndicator___cl9pO", "mcpPulse": "styles-module__mcpPulse___uNggr", "settingsBackButton": "styles-module__settingsBackButton___bIe2j", "automationHeader": "styles-module__automationHeader___InP0r", "automationDescription": "styles-module__automationDescription___NKlmo", "learnMoreLink": "styles-module__learnMoreLink___8xv-x", "autoSendRow": "styles-module__autoSendRow___UblX5", "autoSendLabel": "styles-module__autoSendLabel___icDc2", "active": "styles-module__active___-zoN6", "webhookUrlInput": "styles-module__webhookUrlInput___2375C", "settingsSectionExtraPadding": "styles-module__settingsSectionExtraPadding___jdhFV", "settingsSectionGrow": "styles-module__settingsSectionGrow___h-5HZ", "settingsRow": "styles-module__settingsRow___3sdhc", "settingsRowMarginTop": "styles-module__settingsRowMarginTop___zA0Sp", "dropdownContainer": "styles-module__dropdownContainer___BVnxe", "settingsRowDisabled": "styles-module__settingsRowDisabled___EgS0V", "toggleSwitch": "styles-module__toggleSwitch___l4Ygm", "cycleButtonText": "styles-module__cycleButtonText___fD1LR", "cycleTextIn": "styles-module__cycleTextIn___Q6zJf", "cycleDots": "styles-module__cycleDots___LWuoQ", "dropdownMenu": "styles-module__dropdownMenu___k73ER", "scaleIn": "styles-module__scaleIn___c-r1K", "dropdownItem": "styles-module__dropdownItem___ylsLj", "settingsLabelMarker": "styles-module__settingsLabelMarker___ewdtV", "settingsOptions": "styles-module__settingsOptions___LyrBA", "sliderContainer": "styles-module__sliderContainer___ducXj", "sliderLabels": "styles-module__sliderLabels___FhLDB", "colorOptions": "styles-module__colorOptions___iHCNX", "colorOption": "styles-module__colorOption___IodiY", "colorOptionRing": "styles-module__colorOptionRing___U2xpo", "settingsToggle": "styles-module__settingsToggle___fBrFn", "settingsToggleMarginBottom": "styles-module__settingsToggleMarginBottom___MZUyF", "checked": "styles-module__checked___mnZLo", "toggleSlider": "styles-module__toggleSlider___wprIn", "disabled": "styles-module__disabled___332Jw", "mcpStatusDot": "styles-module__mcpStatusDot___ibgkc", "disconnected": "styles-module__disconnected___cHPxR", "mcpPulseError": "styles-module__mcpPulseError___fov9B", "drawCanvas": "styles-module__drawCanvas___7cG9U", "dragSelection": "styles-module__dragSelection___kZLq2", "dragCount": "styles-module__dragCount___KM90j", "highlightsContainer": "styles-module__highlightsContainer___-0xzG", "selectedElementHighlight": "styles-module__selectedElementHighlight___fyVlI", "centerCrosshair": "styles-module__centerCrosshair___UQ3GL", "crosshairDot": "styles-module__crosshairDot___YjR0R", "crosshairLineHorizontal": "styles-module__crosshairLineHorizontal___VX9Ks", "crosshairLineVertical": "styles-module__crosshairLineVertical___ZEZ7X", "scaleOut": "styles-module__scaleOut___Wctwz", "slideUp": "styles-module__slideUp___kgD36", "slideDown": "styles-module__slideDown___zcdje" };
8500
8500
  if (typeof document !== "undefined") {
8501
8501
  let style = document.getElementById("feedback-tool-styles-page-toolbar-css-styles");
@@ -8935,7 +8935,7 @@ function SettingsPanel({
8935
8935
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("a", { className: styles_module_default11.settingsBrand, href: "https://hara-xy.com", target: "_blank", rel: "noopener noreferrer", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { width: "72", height: "16", viewBox: "0 0 500 151", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("text", { x: "10", y: "110", fontFamily: "'Arial Black', 'Impact', sans-serif", fontSize: "105", fontWeight: "900", fontStyle: "italic", letterSpacing: "-2", fill: "currentColor", children: "UI SNIPER" }) }) }),
8936
8936
  /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { className: styles_module_default11.settingsVersion, children: [
8937
8937
  "v",
8938
- "3.2.0"
8938
+ "3.2.2"
8939
8939
  ] }),
8940
8940
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
8941
8941
  "button",
@@ -9269,8 +9269,123 @@ function SettingsPanel({
9269
9269
  );
9270
9270
  }
9271
9271
 
9272
- // src/components/page-toolbar-css/index.tsx
9272
+ // src/components/page-toolbar-css/help-panel/styles.module.scss
9273
+ var css13 = ".styles-module__helpPanel___8yQgH {\n position: absolute;\n right: 5px;\n bottom: calc(100% + 0.5rem);\n z-index: 1;\n overflow: hidden;\n background: #1c1c1c;\n border-radius: 16px;\n padding: 12px 0;\n width: 100%;\n max-width: 380px;\n min-width: 320px;\n cursor: default;\n opacity: 1;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.08);\n transition: background-color 0.25s ease, box-shadow 0.25s ease;\n}\n.styles-module__helpPanel___8yQgH.styles-module__enter___75xe5 {\n opacity: 1;\n transform: translateY(0) scale(1);\n filter: blur(0px);\n transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;\n}\n.styles-module__helpPanel___8yQgH.styles-module__exit___0Sj9Q {\n opacity: 0;\n transform: translateY(8px) scale(0.95);\n filter: blur(5px);\n pointer-events: none;\n transition: opacity 0.1s ease, transform 0.1s ease, filter 0.1s ease;\n}\n[data-ui-sniper-theme=dark] .styles-module__helpPanel___8yQgH {\n background: #1a1a1a;\n box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);\n}\n\n.styles-module__helpPanelContainer___gEvOn {\n display: flex;\n flex-direction: column;\n max-height: 70vh;\n}\n\n.styles-module__header___ukpzU {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 0 16px 12px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.08);\n}\n[data-ui-sniper-theme=light] .styles-module__header___ukpzU {\n border-bottom-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__title___Oi-AP {\n font-size: 14px;\n font-weight: 600;\n color: #fff;\n letter-spacing: -0.01em;\n}\n[data-ui-sniper-theme=light] .styles-module__title___Oi-AP {\n color: #111;\n}\n\n.styles-module__closeBtn___E3Tfn {\n background: transparent;\n border: none;\n color: rgba(255, 255, 255, 0.4);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 4px;\n border-radius: 6px;\n transition: all 0.15s ease;\n}\n.styles-module__closeBtn___E3Tfn:hover {\n background: rgba(255, 255, 255, 0.1);\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__closeBtn___E3Tfn {\n color: rgba(0, 0, 0, 0.4);\n}\n[data-ui-sniper-theme=light] .styles-module__closeBtn___E3Tfn:hover {\n background: rgba(0, 0, 0, 0.06);\n color: #111;\n}\n\n.styles-module__content___hmu9R {\n display: flex;\n flex-direction: column;\n gap: 12px;\n padding: 12px 16px;\n overflow-y: auto;\n /* Custom Scrollbar */\n}\n.styles-module__content___hmu9R::-webkit-scrollbar {\n width: 6px;\n}\n.styles-module__content___hmu9R::-webkit-scrollbar-track {\n background: transparent;\n}\n.styles-module__content___hmu9R::-webkit-scrollbar-thumb {\n background: rgba(255, 255, 255, 0.1);\n border-radius: 3px;\n}\n[data-ui-sniper-theme=light] .styles-module__content___hmu9R::-webkit-scrollbar-thumb {\n background: rgba(0, 0, 0, 0.1);\n}\n\n.styles-module__card___fuN4Y {\n display: flex;\n flex-direction: column;\n background: rgba(255, 255, 255, 0.03);\n border: 1px solid rgba(255, 255, 255, 0.06);\n border-radius: 12px;\n padding: 12px;\n}\n[data-ui-sniper-theme=light] .styles-module__card___fuN4Y {\n background: rgba(0, 0, 0, 0.02);\n border-color: rgba(0, 0, 0, 0.06);\n}\n\n.styles-module__cardHeader___yL1Y8 {\n display: flex;\n align-items: center;\n gap: 8px;\n margin-bottom: 8px;\n}\n\n.styles-module__iconWrapper___oCsnb {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px;\n border-radius: 6px;\n background: rgba(255, 255, 255, 0.08);\n color: var(--ui-sniper-color-accent, #3c82f7);\n}\n[data-ui-sniper-theme=light] .styles-module__iconWrapper___oCsnb {\n background: rgba(0, 0, 0, 0.05);\n}\n\n.styles-module__cardTitle___BKKbp {\n font-size: 13px;\n font-weight: 600;\n color: rgba(255, 255, 255, 0.95);\n}\n[data-ui-sniper-theme=light] .styles-module__cardTitle___BKKbp {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.styles-module__cardBody___DYtqU {\n display: flex;\n flex-direction: column;\n gap: 6px;\n}\n\n.styles-module__textRow___lLzFz {\n font-size: 11.5px;\n line-height: 1.45;\n color: rgba(255, 255, 255, 0.6);\n}\n.styles-module__textRow___lLzFz strong {\n color: rgba(255, 255, 255, 0.85);\n font-weight: 600;\n}\n[data-ui-sniper-theme=light] .styles-module__textRow___lLzFz {\n color: rgba(0, 0, 0, 0.65);\n}\n[data-ui-sniper-theme=light] .styles-module__textRow___lLzFz strong {\n color: rgba(0, 0, 0, 0.85);\n}\n\n[data-ui-sniper-theme=light] .styles-module__helpPanel___8yQgH {\n background: #fff;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.08);\n}";
9274
+ var classNames13 = { "helpPanel": "styles-module__helpPanel___8yQgH", "enter": "styles-module__enter___75xe5", "exit": "styles-module__exit___0Sj9Q", "helpPanelContainer": "styles-module__helpPanelContainer___gEvOn", "header": "styles-module__header___ukpzU", "title": "styles-module__title___Oi-AP", "closeBtn": "styles-module__closeBtn___E3Tfn", "content": "styles-module__content___hmu9R", "card": "styles-module__card___fuN4Y", "cardHeader": "styles-module__cardHeader___yL1Y8", "iconWrapper": "styles-module__iconWrapper___oCsnb", "cardTitle": "styles-module__cardTitle___BKKbp", "cardBody": "styles-module__cardBody___DYtqU", "textRow": "styles-module__textRow___lLzFz" };
9275
+ if (typeof document !== "undefined") {
9276
+ let style = document.getElementById("feedback-tool-styles-help-panel-styles");
9277
+ if (!style) {
9278
+ style = document.createElement("style");
9279
+ style.id = "feedback-tool-styles-help-panel-styles";
9280
+ document.head.appendChild(style);
9281
+ }
9282
+ style.textContent = css13;
9283
+ }
9284
+ var styles_module_default12 = classNames13;
9285
+
9286
+ // src/components/page-toolbar-css/help-panel/index.tsx
9273
9287
  var import_jsx_runtime16 = require("react/jsx-runtime");
9288
+ function HelpPanel({ isVisible, onClose, toolbarNearBottom, isDarkMode }) {
9289
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
9290
+ "div",
9291
+ {
9292
+ className: `${styles_module_default12.helpPanel} ${isVisible ? styles_module_default12.enter : styles_module_default12.exit}`,
9293
+ style: toolbarNearBottom ? { bottom: "auto", top: "calc(100% + 0.5rem)" } : void 0,
9294
+ "data-ui-sniper-help-panel": true,
9295
+ children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.helpPanelContainer, children: [
9296
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.header, children: [
9297
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default12.title, children: "How to Use UI Sniper" }),
9298
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: styles_module_default12.closeBtn, onClick: onClose, "aria-label": "Close help", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconXmarkLarge, { size: 16 }) })
9299
+ ] }),
9300
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.content, children: [
9301
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.card, children: [
9302
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.cardHeader, children: [
9303
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default12.iconWrapper, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconTarget, { size: 16 }) }),
9304
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default12.cardTitle, children: "Target & Annotate" })
9305
+ ] }),
9306
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.cardBody, children: [
9307
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9308
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "How:" }),
9309
+ " Hover and click any element."
9310
+ ] }),
9311
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9312
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "Why:" }),
9313
+ " Leave context-aware notes exactly where you spot an issue."
9314
+ ] }),
9315
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9316
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "Value:" }),
9317
+ " Developers get the exact DOM path, React component name, and an automatic screenshot of the issue."
9318
+ ] })
9319
+ ] })
9320
+ ] }),
9321
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.card, children: [
9322
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.cardHeader, children: [
9323
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default12.iconWrapper, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconTarget, { size: 16 }) }),
9324
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default12.cardTitle, children: "X-Ray Mode (Shortcut: X)" })
9325
+ ] }),
9326
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.cardBody, children: [
9327
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9328
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "How:" }),
9329
+ " Click the X-Ray icon or press X."
9330
+ ] }),
9331
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9332
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "Why:" }),
9333
+ " Reveal the invisible wireframe and bounding boxes of the page."
9334
+ ] }),
9335
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9336
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "Value:" }),
9337
+ " Instantly spot padding, margin, or alignment anomalies to provide precise layout feedback."
9338
+ ] })
9339
+ ] })
9340
+ ] }),
9341
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.card, children: [
9342
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.cardHeader, children: [
9343
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default12.iconWrapper, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconLayout, { size: 16 }) }),
9344
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default12.cardTitle, children: "Layout Mode (Shortcut: L)" })
9345
+ ] }),
9346
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.cardBody, children: [
9347
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9348
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "How:" }),
9349
+ " Click the Layout icon or press L."
9350
+ ] }),
9351
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9352
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "Why:" }),
9353
+ " Drag, drop, edit text, or draw directly on the screen."
9354
+ ] }),
9355
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9356
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "Value:" }),
9357
+ " Show the developer *exactly* how a layout should look by mocking it up live, instead of just trying to explain it."
9358
+ ] })
9359
+ ] })
9360
+ ] }),
9361
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.card, children: [
9362
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.cardHeader, children: [
9363
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default12.iconWrapper, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconPausePlayAnimated, { size: 16, isPaused: true }) }),
9364
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default12.cardTitle, children: "Freeze Animations (Shortcut: P)" })
9365
+ ] }),
9366
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.cardBody, children: [
9367
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9368
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "How:" }),
9369
+ " Click the Pause icon or press P."
9370
+ ] }),
9371
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9372
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "Why:" }),
9373
+ " Pauses all CSS animations, timeouts, and hover states."
9374
+ ] }),
9375
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default12.textRow, children: [
9376
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("strong", { children: "Value:" }),
9377
+ " Capture fleeting tooltips, modals, or spinners perfectly in your feedback screenshots without racing the clock."
9378
+ ] })
9379
+ ] })
9380
+ ] })
9381
+ ] })
9382
+ ] })
9383
+ }
9384
+ );
9385
+ }
9386
+
9387
+ // src/components/page-toolbar-css/index.tsx
9388
+ var import_jsx_runtime17 = require("react/jsx-runtime");
9274
9389
  function identifyElementWithReact(element, reactMode = "filtered") {
9275
9390
  const { name: elementName, path } = identifyElement(element);
9276
9391
  if (reactMode === "off") {
@@ -9458,6 +9573,7 @@ function PageFeedbackToolbarCSS({
9458
9573
  const [showSettings, setShowSettings] = (0, import_react11.useState)(false);
9459
9574
  const [showSettingsVisible, setShowSettingsVisible] = (0, import_react11.useState)(false);
9460
9575
  const [showReviewPanel, setShowReviewPanel] = (0, import_react11.useState)(false);
9576
+ const [showHelpPanel, setShowHelpPanel] = (0, import_react11.useState)(false);
9461
9577
  const [settingsPage, setSettingsPage] = (0, import_react11.useState)(
9462
9578
  "main"
9463
9579
  );
@@ -10668,7 +10784,7 @@ function PageFeedbackToolbarCSS({
10668
10784
  }
10669
10785
  }, [hoveredDrawingIdx, isActive]);
10670
10786
  (0, import_react11.useEffect)(() => {
10671
- if (!isActive || pendingAnnotation || isDrawMode || isDesignMode || isXRayMode) return;
10787
+ if (!isActive || pendingAnnotation || isDrawMode || isDesignMode || isXRayMode || showReviewPanel) return;
10672
10788
  const handleMouseMove = (e) => {
10673
10789
  const target = e.composedPath()[0] || e.target;
10674
10790
  if (closestCrossingShadow(target, "[data-feedback-toolbar]")) {
@@ -10693,7 +10809,7 @@ function PageFeedbackToolbarCSS({
10693
10809
  };
10694
10810
  document.addEventListener("mousemove", handleMouseMove);
10695
10811
  return () => document.removeEventListener("mousemove", handleMouseMove);
10696
- }, [isActive, pendingAnnotation, isDrawMode, isDesignMode, effectiveReactMode, drawStrokes]);
10812
+ }, [isActive, pendingAnnotation, isDrawMode, isDesignMode, isXRayMode, effectiveReactMode, drawStrokes, showReviewPanel]);
10697
10813
  const startEditAnnotation = (0, import_react11.useCallback)((annotation) => {
10698
10814
  setEditingAnnotation(annotation);
10699
10815
  setHoveredMarkerId(null);
@@ -10852,7 +10968,7 @@ function PageFeedbackToolbarCSS({
10852
10968
  });
10853
10969
  }, [effectiveReactMode]);
10854
10970
  (0, import_react11.useEffect)(() => {
10855
- if (!isActive || isDrawMode || isDesignMode || isXRayMode) return;
10971
+ if (!isActive || isDrawMode || isDesignMode || showReviewPanel) return;
10856
10972
  const handleClick = (e) => {
10857
10973
  if (justFinishedDragRef.current) {
10858
10974
  justFinishedDragRef.current = false;
@@ -10973,7 +11089,8 @@ function PageFeedbackToolbarCSS({
10973
11089
  editingAnnotation,
10974
11090
  settings.blockInteractions,
10975
11091
  effectiveReactMode,
10976
- pendingMultiSelectElements
11092
+ pendingMultiSelectElements,
11093
+ showReviewPanel
10977
11094
  ]);
10978
11095
  (0, import_react11.useEffect)(() => {
10979
11096
  if (!isActive) return;
@@ -11004,7 +11121,7 @@ function PageFeedbackToolbarCSS({
11004
11121
  };
11005
11122
  }, [isActive, pendingMultiSelectElements, createMultiSelectPendingAnnotation]);
11006
11123
  (0, import_react11.useEffect)(() => {
11007
- if (!isActive || pendingAnnotation || isDrawMode || isDesignMode || isXRayMode) return;
11124
+ if (!isActive || pendingAnnotation || isDrawMode || isDesignMode) return;
11008
11125
  const handleMouseDown = (e) => {
11009
11126
  const target = e.composedPath()[0] || e.target;
11010
11127
  if (closestCrossingShadow(target, "[data-feedback-toolbar]")) return;
@@ -11355,16 +11472,30 @@ function PageFeedbackToolbarCSS({
11355
11472
  }
11356
11473
  if (elToCapture) {
11357
11474
  try {
11358
- const rect = elToCapture.getBoundingClientRect();
11475
+ let targetRect = elToCapture.getBoundingClientRect();
11476
+ let currentEl = elToCapture;
11477
+ const MAX_W = Math.min(800, window.innerWidth - 40);
11478
+ const MAX_H = Math.min(600, window.innerHeight - 40);
11479
+ for (let i = 0; i < 4; i++) {
11480
+ if (!currentEl || !currentEl.parentElement) break;
11481
+ if (currentEl.parentElement === document.body) break;
11482
+ const parentRect = currentEl.parentElement.getBoundingClientRect();
11483
+ if (parentRect.width <= MAX_W && parentRect.height <= MAX_H) {
11484
+ targetRect = parentRect;
11485
+ currentEl = currentEl.parentElement;
11486
+ } else {
11487
+ break;
11488
+ }
11489
+ }
11359
11490
  const result = await captureDomRegion(
11360
- rect.left,
11361
- rect.top,
11362
- rect.width,
11363
- rect.height,
11491
+ targetRect.left,
11492
+ targetRect.top,
11493
+ targetRect.width,
11494
+ targetRect.height,
11364
11495
  [],
11365
11496
  // No strokes for standard annotation
11366
- 150,
11367
- // 150px padding to show surrounding context
11497
+ 48,
11498
+ // 48px extra padding around the logical parent
11368
11499
  0.8,
11369
11500
  piiConfig.enabled ? piiConfig : void 0
11370
11501
  );
@@ -12072,7 +12203,7 @@ function PageFeedbackToolbarCSS({
12072
12203
  copyOutput();
12073
12204
  }
12074
12205
  }
12075
- if (e.key === "x" || e.key === "X") {
12206
+ if ((e.key === "x" || e.key === "X") && e.shiftKey) {
12076
12207
  if (annotations.length > 0 || designPlacements.length > 0 || rearrangeState) {
12077
12208
  e.preventDefault();
12078
12209
  hideTooltipsUntilMouseLeave();
@@ -12080,6 +12211,24 @@ function PageFeedbackToolbarCSS({
12080
12211
  if (designPlacements.length > 0) setDesignPlacements([]);
12081
12212
  if (rearrangeState) setRearrangeState(null);
12082
12213
  }
12214
+ } else if ((e.key === "x" || e.key === "X") && !e.shiftKey) {
12215
+ e.preventDefault();
12216
+ hideTooltipsUntilMouseLeave();
12217
+ setIsXRayMode(!isXRayMode);
12218
+ }
12219
+ if (e.key === "l" || e.key === "L") {
12220
+ e.preventDefault();
12221
+ hideTooltipsUntilMouseLeave();
12222
+ if (isDesignMode) {
12223
+ closeDesignMode();
12224
+ } else {
12225
+ setIsDesignMode(true);
12226
+ }
12227
+ }
12228
+ if (e.key === "p" || e.key === "P") {
12229
+ e.preventDefault();
12230
+ hideTooltipsUntilMouseLeave();
12231
+ toggleFreeze();
12083
12232
  }
12084
12233
  if (e.key === "s" || e.key === "S") {
12085
12234
  const hasValidWebhook = isValidUrl(settings.webhookUrl) || isValidUrl(webhookUrl || "");
@@ -12108,7 +12257,8 @@ function PageFeedbackToolbarCSS({
12108
12257
  toggleFreeze,
12109
12258
  copyOutput,
12110
12259
  clearAll,
12111
- pendingMultiSelectElements
12260
+ pendingMultiSelectElements,
12261
+ isXRayMode
12112
12262
  ]);
12113
12263
  if (!mounted) return null;
12114
12264
  if (isToolbarHidden) return null;
@@ -12145,7 +12295,7 @@ function PageFeedbackToolbarCSS({
12145
12295
  return styles;
12146
12296
  };
12147
12297
  return (0, import_react_dom3.createPortal)(
12148
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12298
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12149
12299
  UISniperContext.Provider,
12150
12300
  {
12151
12301
  value: {
@@ -12164,7 +12314,7 @@ function PageFeedbackToolbarCSS({
12164
12314
  }
12165
12315
  }
12166
12316
  },
12167
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
12317
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
12168
12318
  "div",
12169
12319
  {
12170
12320
  ref: portalWrapperRef,
@@ -12174,7 +12324,7 @@ function PageFeedbackToolbarCSS({
12174
12324
  "data-ui-sniper-root": "",
12175
12325
  suppressHydrationWarning: suppressDevWarnings || void 0,
12176
12326
  children: [
12177
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12327
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12178
12328
  "div",
12179
12329
  {
12180
12330
  className: `${styles_module_default6.toolbar}${userClassName ? ` ${userClassName}` : ""}`,
@@ -12186,7 +12336,7 @@ function PageFeedbackToolbarCSS({
12186
12336
  right: "auto",
12187
12337
  bottom: "auto"
12188
12338
  } : void 0,
12189
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
12339
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
12190
12340
  "div",
12191
12341
  {
12192
12342
  className: `${styles_module_default6.toolbarContainer} ${isActive ? styles_module_default6.expanded : styles_module_default6.collapsed} ${showEntranceAnimation ? styles_module_default6.entrance : ""} ${isToolbarHiding ? styles_module_default6.hiding : ""} ${!settings.webhooksEnabled && (isValidUrl(settings.webhookUrl) || isValidUrl(webhookUrl || "")) ? styles_module_default6.serverConnected : ""}`,
@@ -12204,13 +12354,13 @@ function PageFeedbackToolbarCSS({
12204
12354
  title: !isActive ? "Start taking notes" : void 0,
12205
12355
  style: headless && !isActive ? { display: "none" } : void 0,
12206
12356
  children: [
12207
- !headless && /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
12357
+ !headless && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
12208
12358
  "div",
12209
12359
  {
12210
12360
  className: `${styles_module_default6.toggleContent} ${!isActive ? styles_module_default6.visible : styles_module_default6.hidden}`,
12211
12361
  children: [
12212
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconListSparkle, { size: 24 }),
12213
- hasVisibleAnnotations && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12362
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconListSparkle, { size: 24 }),
12363
+ hasVisibleAnnotations && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12214
12364
  "span",
12215
12365
  {
12216
12366
  className: `${styles_module_default6.badge} ${isActive ? styles_module_default6.fadeOut : ""} ${showEntranceAnimation ? styles_module_default6.entrance : ""}`,
@@ -12220,35 +12370,35 @@ function PageFeedbackToolbarCSS({
12220
12370
  ]
12221
12371
  }
12222
12372
  ),
12223
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
12373
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
12224
12374
  "div",
12225
12375
  {
12226
12376
  className: `${styles_module_default6.controlsContent} ${isActive ? styles_module_default6.visible : styles_module_default6.hidden} ${toolbarPosition && toolbarPosition.y < 100 ? styles_module_default6.tooltipBelow : ""} ${tooltipsHidden || showSettings ? styles_module_default6.tooltipsHidden : ""} ${tooltipSessionActive ? styles_module_default6.tooltipsInSession : ""}`,
12227
12377
  onMouseEnter: handleControlsMouseEnter,
12228
12378
  onMouseLeave: handleControlsMouseLeave,
12229
12379
  children: [
12230
- isMobile && !pendingAnnotation && !editingAnnotation && !isDesignMode && !isXRayMode && /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_jsx_runtime16.Fragment, { children: [
12231
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12232
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12380
+ isMobile && !pendingAnnotation && !editingAnnotation && !isDesignMode && !isXRayMode && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_jsx_runtime17.Fragment, { children: [
12381
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12382
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12233
12383
  "button",
12234
12384
  {
12235
12385
  className: `${styles_module_default6.controlButton} ${styles_module_default6.snipeButton}`,
12236
12386
  onClick: handleSnipeCenterElement,
12237
12387
  disabled: !hoverInfo,
12238
12388
  "data-active": true,
12239
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconTarget, { size: 24 })
12389
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconTarget, { size: 24 })
12240
12390
  }
12241
12391
  ),
12242
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.buttonTooltip, children: "Target Element" })
12392
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.buttonTooltip, children: "Target Element" })
12243
12393
  ] }),
12244
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default6.divider })
12394
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: styles_module_default6.divider })
12245
12395
  ] }),
12246
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
12396
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
12247
12397
  "div",
12248
12398
  {
12249
12399
  className: `${styles_module_default6.buttonWrapper} ${toolbarPosition && toolbarPosition.x < 120 ? styles_module_default6.buttonWrapperAlignLeft : ""}`,
12250
12400
  children: [
12251
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12401
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12252
12402
  "button",
12253
12403
  {
12254
12404
  className: styles_module_default6.controlButton,
@@ -12258,18 +12408,18 @@ function PageFeedbackToolbarCSS({
12258
12408
  toggleFreeze();
12259
12409
  },
12260
12410
  "data-active": isFrozen,
12261
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconPausePlayAnimated, { size: 24, isPaused: isFrozen })
12411
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconPausePlayAnimated, { size: 24, isPaused: isFrozen })
12262
12412
  }
12263
12413
  ),
12264
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12414
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12265
12415
  isFrozen ? "Unfreeze animations" : "Freeze animations",
12266
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.shortcut, children: "P" })
12416
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.shortcut, children: "P" })
12267
12417
  ] })
12268
12418
  ]
12269
12419
  }
12270
12420
  ),
12271
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12272
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12421
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12422
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12273
12423
  "button",
12274
12424
  {
12275
12425
  className: `${styles_module_default6.controlButton} ${!isDarkMode ? styles_module_default6.light : ""}`,
@@ -12288,16 +12438,16 @@ function PageFeedbackToolbarCSS({
12288
12438
  },
12289
12439
  "data-active": isDesignMode,
12290
12440
  style: isDesignMode && blankCanvas ? { color: "#f97316", background: "rgba(249, 115, 22, 0.25)" } : void 0,
12291
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconLayout, { size: 21 })
12441
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconLayout, { size: 21 })
12292
12442
  }
12293
12443
  ),
12294
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12444
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12295
12445
  isDesignMode ? "Exit layout mode" : "Layout mode",
12296
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.shortcut, children: "L" })
12446
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.shortcut, children: "L" })
12297
12447
  ] })
12298
12448
  ] }),
12299
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12300
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12449
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12450
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12301
12451
  "button",
12302
12452
  {
12303
12453
  className: `${styles_module_default6.controlButton} ${!isDarkMode ? styles_module_default6.light : ""}`,
@@ -12311,16 +12461,16 @@ function PageFeedbackToolbarCSS({
12311
12461
  setIsXRayMode(!isXRayMode);
12312
12462
  },
12313
12463
  "data-active": isXRayMode,
12314
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconTarget, { size: 21 })
12464
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconTarget, { size: 21 })
12315
12465
  }
12316
12466
  ),
12317
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12467
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12318
12468
  isXRayMode ? "Exit X-Ray mode" : "X-Ray mode",
12319
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.shortcut, children: "X" })
12469
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.shortcut, children: "X" })
12320
12470
  ] })
12321
12471
  ] }),
12322
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12323
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12472
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12473
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12324
12474
  "button",
12325
12475
  {
12326
12476
  className: styles_module_default6.controlButton,
@@ -12330,16 +12480,16 @@ function PageFeedbackToolbarCSS({
12330
12480
  setShowMarkers(!showMarkers);
12331
12481
  },
12332
12482
  disabled: !hasAnnotations || isDesignMode || isXRayMode,
12333
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconEyeAnimated, { size: 24, isOpen: showMarkers })
12483
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconEyeAnimated, { size: 24, isOpen: showMarkers })
12334
12484
  }
12335
12485
  ),
12336
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12486
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12337
12487
  showMarkers ? "Hide your notes" : "Show your notes",
12338
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.shortcut, children: "H" })
12488
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.shortcut, children: "H" })
12339
12489
  ] })
12340
12490
  ] }),
12341
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12342
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12491
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12492
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12343
12493
  "button",
12344
12494
  {
12345
12495
  className: `${styles_module_default6.controlButton} ${copied ? styles_module_default6.statusShowing : ""}`,
@@ -12350,16 +12500,16 @@ function PageFeedbackToolbarCSS({
12350
12500
  },
12351
12501
  disabled: isDesignMode && blankCanvas ? designPlacements.length === 0 && !rearrangeState?.sections?.length : !hasAnnotations && drawStrokes.length === 0 && designPlacements.length === 0 && !rearrangeState?.sections?.length,
12352
12502
  "data-active": copied,
12353
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconCopyAnimated, { size: 24, copied, tint: isDesignMode && blankCanvas && (designPlacements.length > 0 || !!rearrangeState?.sections?.length) ? "#f97316" : void 0 })
12503
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconCopyAnimated, { size: 24, copied, tint: isDesignMode && blankCanvas && (designPlacements.length > 0 || !!rearrangeState?.sections?.length) ? "#f97316" : void 0 })
12354
12504
  }
12355
12505
  ),
12356
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12506
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12357
12507
  isDesignMode && blankCanvas ? "Copy layout" : "Copy your notes",
12358
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.shortcut, children: "C" })
12508
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.shortcut, children: "C" })
12359
12509
  ] })
12360
12510
  ] }),
12361
- hasAnnotations && /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12362
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
12511
+ hasAnnotations && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12512
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
12363
12513
  "button",
12364
12514
  {
12365
12515
  className: `${styles_module_default6.controlButton} ${showReviewPanel ? "" : ""}`,
@@ -12371,19 +12521,19 @@ function PageFeedbackToolbarCSS({
12371
12521
  title: "Review annotations",
12372
12522
  "aria-label": "Review annotations",
12373
12523
  children: [
12374
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconChatEllipsis, { size: 20 }),
12375
- annotations.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.buttonBadge, children: annotations.length })
12524
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconChatEllipsis, { size: 20 }),
12525
+ annotations.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.buttonBadge, children: annotations.length })
12376
12526
  ]
12377
12527
  }
12378
12528
  ),
12379
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.buttonTooltip, children: "Review notes" })
12529
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.buttonTooltip, children: "Review notes" })
12380
12530
  ] }),
12381
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
12531
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
12382
12532
  "div",
12383
12533
  {
12384
12534
  className: `${styles_module_default6.buttonWrapper} ${styles_module_default6.sendButtonWrapper} ${isActive && !settings.webhooksEnabled && (isValidUrl(settings.webhookUrl) || isValidUrl(webhookUrl || "")) ? styles_module_default6.sendButtonVisible : ""}`,
12385
12535
  children: [
12386
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
12536
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
12387
12537
  "button",
12388
12538
  {
12389
12539
  className: `${styles_module_default6.controlButton} ${sendState === "sent" || sendState === "failed" ? styles_module_default6.statusShowing : ""}`,
@@ -12396,8 +12546,8 @@ function PageFeedbackToolbarCSS({
12396
12546
  "data-no-hover": sendState === "sent" || sendState === "failed",
12397
12547
  tabIndex: isValidUrl(settings.webhookUrl) || isValidUrl(webhookUrl || "") ? 0 : -1,
12398
12548
  children: [
12399
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconSendArrow, { size: 24, state: sendState }),
12400
- hasAnnotations && sendState === "idle" && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12549
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconSendArrow, { size: 24, state: sendState }),
12550
+ hasAnnotations && sendState === "idle" && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12401
12551
  "span",
12402
12552
  {
12403
12553
  className: styles_module_default6.buttonBadge,
@@ -12407,15 +12557,15 @@ function PageFeedbackToolbarCSS({
12407
12557
  ]
12408
12558
  }
12409
12559
  ),
12410
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12560
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12411
12561
  "Send to AI",
12412
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.shortcut, children: "S" })
12562
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.shortcut, children: "S" })
12413
12563
  ] })
12414
12564
  ]
12415
12565
  }
12416
12566
  ),
12417
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12418
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12567
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12568
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12419
12569
  "button",
12420
12570
  {
12421
12571
  className: styles_module_default6.controlButton,
@@ -12426,16 +12576,16 @@ function PageFeedbackToolbarCSS({
12426
12576
  },
12427
12577
  disabled: !hasAnnotations && drawStrokes.length === 0 && designPlacements.length === 0 && !rearrangeState?.sections?.length,
12428
12578
  "data-danger": true,
12429
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconTrashAlt, { size: 24 })
12579
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconTrashAlt, { size: 24 })
12430
12580
  }
12431
12581
  ),
12432
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12582
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12433
12583
  "Clear your notes",
12434
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.shortcut, children: "X" })
12584
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.shortcut, children: "Shift+X" })
12435
12585
  ] })
12436
12586
  ] }),
12437
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12438
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12587
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12588
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12439
12589
  "button",
12440
12590
  {
12441
12591
  className: styles_module_default6.controlButton,
@@ -12443,32 +12593,33 @@ function PageFeedbackToolbarCSS({
12443
12593
  e.stopPropagation();
12444
12594
  hideTooltipsUntilMouseLeave();
12445
12595
  if (isDesignMode) closeDesignMode();
12596
+ setShowHelpPanel(false);
12446
12597
  setShowSettings(!showSettings);
12447
12598
  },
12448
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconGear, { size: 24 })
12599
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconGear, { size: 24 })
12449
12600
  }
12450
12601
  ),
12451
- endpoint && connectionStatus !== "disconnected" && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12602
+ endpoint && connectionStatus !== "disconnected" && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12452
12603
  "span",
12453
12604
  {
12454
12605
  className: `${styles_module_default6.mcpIndicator} ${styles_module_default6[connectionStatus]} ${showSettings ? styles_module_default6.hidden : ""}`,
12455
12606
  title: connectionStatus === "connected" ? "Live AI Connected" : "Connecting to AI..."
12456
12607
  }
12457
12608
  ),
12458
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.buttonTooltip, children: "Settings" })
12609
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.buttonTooltip, children: "Settings" })
12459
12610
  ] }),
12460
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12611
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12461
12612
  "div",
12462
12613
  {
12463
12614
  className: styles_module_default6.divider
12464
12615
  }
12465
12616
  ),
12466
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
12617
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
12467
12618
  "div",
12468
12619
  {
12469
12620
  className: `${styles_module_default6.buttonWrapper} ${toolbarPosition && typeof window !== "undefined" && toolbarPosition.x > window.innerWidth - 120 ? styles_module_default6.buttonWrapperAlignRight : ""}`,
12470
12621
  children: [
12471
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12622
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12472
12623
  "button",
12473
12624
  {
12474
12625
  className: styles_module_default6.controlButton,
@@ -12477,20 +12628,37 @@ function PageFeedbackToolbarCSS({
12477
12628
  hideTooltipsUntilMouseLeave();
12478
12629
  deactivate();
12479
12630
  },
12480
- children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(IconXmarkLarge, { size: 24 })
12631
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconXmarkLarge, { size: 24 })
12481
12632
  }
12482
12633
  ),
12483
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12634
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("span", { className: styles_module_default6.buttonTooltip, children: [
12484
12635
  "Close UI Sniper",
12485
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default6.shortcut, children: "Esc" })
12636
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.shortcut, children: "Esc" })
12486
12637
  ] })
12487
12638
  ]
12488
12639
  }
12489
- )
12640
+ ),
12641
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.buttonWrapper, children: [
12642
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12643
+ "button",
12644
+ {
12645
+ className: styles_module_default6.controlButton,
12646
+ onClick: (e) => {
12647
+ e.stopPropagation();
12648
+ hideTooltipsUntilMouseLeave();
12649
+ if (isDesignMode) closeDesignMode();
12650
+ setShowSettings(false);
12651
+ setShowHelpPanel(!showHelpPanel);
12652
+ },
12653
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(IconHelp, { size: 24 })
12654
+ }
12655
+ ),
12656
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default6.buttonTooltip, children: "Help & Shortcuts" })
12657
+ ] })
12490
12658
  ]
12491
12659
  }
12492
12660
  ),
12493
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12661
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12494
12662
  DesignPalette,
12495
12663
  {
12496
12664
  visible: isDesignMode && isActive,
@@ -12609,7 +12777,7 @@ function PageFeedbackToolbarCSS({
12609
12777
  }
12610
12778
  }
12611
12779
  ),
12612
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12780
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12613
12781
  SettingsPanel,
12614
12782
  {
12615
12783
  settings,
@@ -12625,13 +12793,22 @@ function PageFeedbackToolbarCSS({
12625
12793
  onSettingsPageChange: setSettingsPage,
12626
12794
  onHideToolbar: hideToolbarTemporarily
12627
12795
  }
12796
+ ),
12797
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12798
+ HelpPanel,
12799
+ {
12800
+ isVisible: showHelpPanel,
12801
+ onClose: () => setShowHelpPanel(false),
12802
+ toolbarNearBottom: !!toolbarPosition && toolbarPosition.y < 230,
12803
+ isDarkMode
12804
+ }
12628
12805
  )
12629
12806
  ]
12630
12807
  }
12631
12808
  )
12632
12809
  }
12633
12810
  ),
12634
- showReviewPanel && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12811
+ showReviewPanel && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12635
12812
  ReviewPanel,
12636
12813
  {
12637
12814
  annotations: visibleAnnotations,
@@ -12653,8 +12830,8 @@ function PageFeedbackToolbarCSS({
12653
12830
  }
12654
12831
  }
12655
12832
  ),
12656
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(XRayOverlay, { isActive: isXRayMode, isDarkMode }),
12657
- (isDesignMode || designOverlayExiting) && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12833
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(XRayOverlay, { isActive: isXRayMode, isDarkMode, isFrozen: !!(pendingAnnotation || editingAnnotation) }),
12834
+ (isDesignMode || designOverlayExiting) && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12658
12835
  "div",
12659
12836
  {
12660
12837
  className: `${styles_module_default3.blankCanvas} ${canvasReady ? styles_module_default3.visible : ""} ${designInteracting ? styles_module_default3.gridActive : ""}`,
@@ -12662,10 +12839,10 @@ function PageFeedbackToolbarCSS({
12662
12839
  "data-feedback-toolbar": true
12663
12840
  }
12664
12841
  ),
12665
- isDesignMode && blankCanvas && canvasReady && /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default3.wireframeNotice, "data-feedback-toolbar": true, children: [
12666
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default3.wireframeOpacityRow, children: [
12667
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default3.wireframeOpacityLabel, children: "Toggle Opacity" }),
12668
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12842
+ isDesignMode && blankCanvas && canvasReady && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default3.wireframeNotice, "data-feedback-toolbar": true, children: [
12843
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default3.wireframeOpacityRow, children: [
12844
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default3.wireframeOpacityLabel, children: "Toggle Opacity" }),
12845
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12669
12846
  "input",
12670
12847
  {
12671
12848
  type: "range",
@@ -12678,10 +12855,10 @@ function PageFeedbackToolbarCSS({
12678
12855
  }
12679
12856
  )
12680
12857
  ] }),
12681
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default3.wireframeNoticeTitleRow, children: [
12682
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default3.wireframeNoticeTitle, children: "Wireframe Mode" }),
12683
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: styles_module_default3.wireframeNoticeDivider }),
12684
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12858
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default3.wireframeNoticeTitleRow, children: [
12859
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default3.wireframeNoticeTitle, children: "Wireframe Mode" }),
12860
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: styles_module_default3.wireframeNoticeDivider }),
12861
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12685
12862
  "button",
12686
12863
  {
12687
12864
  className: styles_module_default3.wireframeStartOver,
@@ -12697,10 +12874,10 @@ function PageFeedbackToolbarCSS({
12697
12874
  )
12698
12875
  ] }),
12699
12876
  "Drag components onto the canvas.",
12700
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("br", {}),
12877
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("br", {}),
12701
12878
  "Copied output will only include the wireframed layout."
12702
12879
  ] }),
12703
- (isDesignMode || designOverlayExiting) && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12880
+ (isDesignMode || designOverlayExiting) && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12704
12881
  DesignMode,
12705
12882
  {
12706
12883
  placements: designPlacements,
@@ -12766,7 +12943,7 @@ function PageFeedbackToolbarCSS({
12766
12943
  }
12767
12944
  }
12768
12945
  ),
12769
- (isDesignMode || designOverlayExiting) && rearrangeState && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12946
+ (isDesignMode || designOverlayExiting) && rearrangeState && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12770
12947
  RearrangeOverlay,
12771
12948
  {
12772
12949
  rearrangeState,
@@ -12819,7 +12996,7 @@ function PageFeedbackToolbarCSS({
12819
12996
  }
12820
12997
  }
12821
12998
  ),
12822
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
12999
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12823
13000
  "canvas",
12824
13001
  {
12825
13002
  ref: drawCanvasRef,
@@ -12828,8 +13005,8 @@ function PageFeedbackToolbarCSS({
12828
13005
  "data-feedback-toolbar": true
12829
13006
  }
12830
13007
  ),
12831
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default6.markersLayer, "data-feedback-toolbar": true, children: [
12832
- markersVisible && visibleAnnotations.filter((a) => !a.isFixed).map((annotation, layerIndex, arr) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13008
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.markersLayer, "data-feedback-toolbar": true, children: [
13009
+ markersVisible && visibleAnnotations.filter((a) => !a.isFixed).map((annotation, layerIndex, arr) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12833
13010
  AnnotationMarker,
12834
13011
  {
12835
13012
  annotation,
@@ -12852,10 +13029,10 @@ function PageFeedbackToolbarCSS({
12852
13029
  },
12853
13030
  annotation.id
12854
13031
  )),
12855
- markersVisible && !markersExiting && exitingAnnotationsList.filter((a) => !a.isFixed).map((a) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(ExitingMarker, { annotation: a }, a.id))
13032
+ markersVisible && !markersExiting && exitingAnnotationsList.filter((a) => !a.isFixed).map((a) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(ExitingMarker, { annotation: a }, a.id))
12856
13033
  ] }),
12857
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default6.fixedMarkersLayer, "data-feedback-toolbar": true, children: [
12858
- markersVisible && visibleAnnotations.filter((a) => a.isFixed).map((annotation, layerIndex, arr) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13034
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.fixedMarkersLayer, "data-feedback-toolbar": true, children: [
13035
+ markersVisible && visibleAnnotations.filter((a) => a.isFixed).map((annotation, layerIndex, arr) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12859
13036
  AnnotationMarker,
12860
13037
  {
12861
13038
  annotation,
@@ -12878,16 +13055,16 @@ function PageFeedbackToolbarCSS({
12878
13055
  },
12879
13056
  annotation.id
12880
13057
  )),
12881
- markersVisible && !markersExiting && exitingAnnotationsList.filter((a) => a.isFixed).map((a) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(ExitingMarker, { annotation: a, fixed: true }, a.id))
13058
+ markersVisible && !markersExiting && exitingAnnotationsList.filter((a) => a.isFixed).map((a) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(ExitingMarker, { annotation: a, fixed: true }, a.id))
12882
13059
  ] }),
12883
- isActive && /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
13060
+ isActive && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
12884
13061
  "div",
12885
13062
  {
12886
13063
  className: styles_module_default6.overlay,
12887
13064
  "data-feedback-toolbar": true,
12888
13065
  style: pendingAnnotation || editingAnnotation ? { zIndex: 99999 } : void 0,
12889
13066
  children: [
12890
- hoverInfo?.rect && !pendingAnnotation && !isScrolling && !isDragging && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13067
+ hoverInfo?.rect && !pendingAnnotation && !isScrolling && !isDragging && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12891
13068
  "div",
12892
13069
  {
12893
13070
  className: `${styles_module_default6.hoverHighlight} ${styles_module_default6.enter}`,
@@ -12904,7 +13081,7 @@ function PageFeedbackToolbarCSS({
12904
13081
  pendingMultiSelectElements.filter((item) => document.contains(item.element)).map((item, index) => {
12905
13082
  const rect = item.element.getBoundingClientRect();
12906
13083
  const isMulti = pendingMultiSelectElements.length > 1;
12907
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13084
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12908
13085
  "div",
12909
13086
  {
12910
13087
  className: isMulti ? styles_module_default6.multiSelectOutline : styles_module_default6.singleSelectOutline,
@@ -12932,7 +13109,7 @@ function PageFeedbackToolbarCSS({
12932
13109
  if (hoveredTargetElements.length > 0) {
12933
13110
  return hoveredTargetElements.filter((el) => document.contains(el)).map((el, index) => {
12934
13111
  const rect2 = el.getBoundingClientRect();
12935
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13112
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12936
13113
  "div",
12937
13114
  {
12938
13115
  className: `${styles_module_default6.multiSelectOutline} ${styles_module_default6.enter}`,
@@ -12948,7 +13125,7 @@ function PageFeedbackToolbarCSS({
12948
13125
  });
12949
13126
  }
12950
13127
  return hoveredAnnotation.elementBoundingBoxes.map(
12951
- (bb2, index) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13128
+ (bb2, index) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12952
13129
  "div",
12953
13130
  {
12954
13131
  className: `${styles_module_default6.multiSelectOutline} ${styles_module_default6.enter}`,
@@ -12971,7 +13148,7 @@ function PageFeedbackToolbarCSS({
12971
13148
  height: hoveredAnnotation.boundingBox.height
12972
13149
  };
12973
13150
  const isMulti = hoveredAnnotation.isMultiSelect;
12974
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13151
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
12975
13152
  "div",
12976
13153
  {
12977
13154
  className: `${isMulti ? styles_module_default6.multiSelectOutline : styles_module_default6.singleSelectOutline} ${styles_module_default6.enter}`,
@@ -12988,7 +13165,7 @@ function PageFeedbackToolbarCSS({
12988
13165
  }
12989
13166
  );
12990
13167
  })(),
12991
- hoverInfo && !pendingAnnotation && !isScrolling && !isDragging && /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
13168
+ hoverInfo && !pendingAnnotation && !isScrolling && !isDragging && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
12992
13169
  "div",
12993
13170
  {
12994
13171
  className: `${styles_module_default6.hoverTooltip} ${styles_module_default6.enter}`,
@@ -13003,17 +13180,17 @@ function PageFeedbackToolbarCSS({
13003
13180
  )
13004
13181
  },
13005
13182
  children: [
13006
- hoverInfo.reactComponents && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default6.hoverReactPath, children: hoverInfo.reactComponents }),
13007
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default6.hoverElementName, children: hoverInfo.elementName })
13183
+ hoverInfo.reactComponents && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: styles_module_default6.hoverReactPath, children: hoverInfo.reactComponents }),
13184
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: styles_module_default6.hoverElementName, children: hoverInfo.elementName })
13008
13185
  ]
13009
13186
  }
13010
13187
  ),
13011
- pendingAnnotation && /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_jsx_runtime16.Fragment, { children: [
13188
+ pendingAnnotation && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_jsx_runtime17.Fragment, { children: [
13012
13189
  pendingAnnotation.multiSelectElements?.length ? (
13013
13190
  // Cmd+shift+click multi-select: show individual boxes with live positions
13014
13191
  pendingAnnotation.multiSelectElements.filter((el) => document.contains(el)).map((el, index) => {
13015
13192
  const rect = el.getBoundingClientRect();
13016
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13193
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
13017
13194
  "div",
13018
13195
  {
13019
13196
  className: `${styles_module_default6.multiSelectOutline} ${pendingExiting ? styles_module_default6.exit : styles_module_default6.enter}`,
@@ -13033,7 +13210,7 @@ function PageFeedbackToolbarCSS({
13033
13210
  // Single-click: use live getBoundingClientRect for consistent positioning
13034
13211
  (() => {
13035
13212
  const rect = pendingAnnotation.targetElement.getBoundingClientRect();
13036
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13213
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
13037
13214
  "div",
13038
13215
  {
13039
13216
  className: `${styles_module_default6.singleSelectOutline} ${pendingExiting ? styles_module_default6.exit : styles_module_default6.enter}`,
@@ -13050,7 +13227,7 @@ function PageFeedbackToolbarCSS({
13050
13227
  })()
13051
13228
  ) : (
13052
13229
  // Drag selection or fallback: use stored boundingBox
13053
- pendingAnnotation.boundingBox && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13230
+ pendingAnnotation.boundingBox && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
13054
13231
  "div",
13055
13232
  {
13056
13233
  className: `${pendingAnnotation.isMultiSelect ? styles_module_default6.multiSelectOutline : styles_module_default6.singleSelectOutline} ${pendingExiting ? styles_module_default6.exit : styles_module_default6.enter}`,
@@ -13071,8 +13248,8 @@ function PageFeedbackToolbarCSS({
13071
13248
  (() => {
13072
13249
  const markerX = pendingAnnotation.x;
13073
13250
  const markerY = pendingAnnotation.isFixed ? pendingAnnotation.y : pendingAnnotation.y - scrollY;
13074
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_jsx_runtime16.Fragment, { children: [
13075
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13251
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_jsx_runtime17.Fragment, { children: [
13252
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
13076
13253
  PendingMarker,
13077
13254
  {
13078
13255
  x: markerX,
@@ -13081,7 +13258,7 @@ function PageFeedbackToolbarCSS({
13081
13258
  isExiting: pendingExiting
13082
13259
  }
13083
13260
  ),
13084
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13261
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
13085
13262
  AnnotationPopupCSS,
13086
13263
  {
13087
13264
  ref: popupRef,
@@ -13121,14 +13298,14 @@ function PageFeedbackToolbarCSS({
13121
13298
  ] });
13122
13299
  })()
13123
13300
  ] }),
13124
- editingAnnotation && /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_jsx_runtime16.Fragment, { children: [
13301
+ editingAnnotation && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_jsx_runtime17.Fragment, { children: [
13125
13302
  editingAnnotation.elementBoundingBoxes?.length ? (
13126
13303
  // Cmd+shift+click: show individual element boxes (use live rects when available)
13127
13304
  (() => {
13128
13305
  if (editingTargetElements.length > 0) {
13129
13306
  return editingTargetElements.filter((el) => document.contains(el)).map((el, index) => {
13130
13307
  const rect = el.getBoundingClientRect();
13131
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13308
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
13132
13309
  "div",
13133
13310
  {
13134
13311
  className: `${styles_module_default6.multiSelectOutline} ${styles_module_default6.enter}`,
@@ -13144,7 +13321,7 @@ function PageFeedbackToolbarCSS({
13144
13321
  });
13145
13322
  }
13146
13323
  return editingAnnotation.elementBoundingBoxes.map(
13147
- (bb, index) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13324
+ (bb, index) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
13148
13325
  "div",
13149
13326
  {
13150
13327
  className: `${styles_module_default6.multiSelectOutline} ${styles_module_default6.enter}`,
@@ -13170,7 +13347,7 @@ function PageFeedbackToolbarCSS({
13170
13347
  height: editingAnnotation.boundingBox.height
13171
13348
  } : null;
13172
13349
  if (!bb) return null;
13173
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13350
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
13174
13351
  "div",
13175
13352
  {
13176
13353
  className: `${editingAnnotation.isMultiSelect ? styles_module_default6.multiSelectOutline : styles_module_default6.singleSelectOutline} ${styles_module_default6.enter}`,
@@ -13188,7 +13365,7 @@ function PageFeedbackToolbarCSS({
13188
13365
  );
13189
13366
  })()
13190
13367
  ),
13191
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13368
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
13192
13369
  AnnotationPopupCSS,
13193
13370
  {
13194
13371
  ref: editPopupRef,
@@ -13232,9 +13409,9 @@ function PageFeedbackToolbarCSS({
13232
13409
  }
13233
13410
  )
13234
13411
  ] }),
13235
- isDragging && /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_jsx_runtime16.Fragment, { children: [
13236
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { ref: dragRectRef, className: styles_module_default6.dragSelection }),
13237
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
13412
+ isDragging && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_jsx_runtime17.Fragment, { children: [
13413
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { ref: dragRectRef, className: styles_module_default6.dragSelection }),
13414
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
13238
13415
  "div",
13239
13416
  {
13240
13417
  ref: highlightsContainerRef,
@@ -13242,10 +13419,10 @@ function PageFeedbackToolbarCSS({
13242
13419
  }
13243
13420
  )
13244
13421
  ] }),
13245
- isMobile && isActive && !pendingAnnotation && !editingAnnotation && !isDrawMode && !isDesignMode && /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: styles_module_default6.centerCrosshair, "data-feedback-toolbar": true, children: [
13246
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default6.crosshairDot }),
13247
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default6.crosshairLineHorizontal }),
13248
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: styles_module_default6.crosshairLineVertical })
13422
+ isMobile && isActive && !pendingAnnotation && !editingAnnotation && !isDrawMode && !isDesignMode && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: styles_module_default6.centerCrosshair, "data-feedback-toolbar": true, children: [
13423
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: styles_module_default6.crosshairDot }),
13424
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: styles_module_default6.crosshairLineHorizontal }),
13425
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: styles_module_default6.crosshairLineVertical })
13249
13426
  ] })
13250
13427
  ]
13251
13428
  }
@@ -13261,7 +13438,7 @@ function PageFeedbackToolbarCSS({
13261
13438
 
13262
13439
  // src/components/profiler/index.tsx
13263
13440
  var import_react12 = require("react");
13264
- var import_jsx_runtime17 = require("react/jsx-runtime");
13441
+ var import_jsx_runtime18 = require("react/jsx-runtime");
13265
13442
  function UISniperProfiler({ id = "ui-sniper-profiler", children }) {
13266
13443
  const onRender = (id2, phase, actualDuration, baseDuration, startTime, commitTime) => {
13267
13444
  if (typeof window !== "undefined") {
@@ -13271,7 +13448,7 @@ function UISniperProfiler({ id = "ui-sniper-profiler", children }) {
13271
13448
  };
13272
13449
  }
13273
13450
  };
13274
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_react12.Profiler, { id, onRender, children });
13451
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_react12.Profiler, { id, onRender, children });
13275
13452
  }
13276
13453
  // Annotate the CommonJS export names for ESM import in node:
13277
13454
  0 && (module.exports = {