@mindexec/cli 0.2.384 → 0.2.385

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.
Files changed (267) hide show
  1. package/codex-runtime.js +31 -255
  2. package/package.json +1 -1
  3. package/remote-hub.js +2 -80
  4. package/scripts/remote-fast-live-rate-smoke.mjs +3 -19
  5. package/scripts/remote-fast-mdm-browser-smoke.mjs +2 -28
  6. package/scripts/remote-hub-smoke.mjs +2 -32
  7. package/scripts/setup-tree-sitter-grammars.mjs +5 -26
  8. package/server.js +33 -1811
  9. package/wwwroot/MindExecution.Web.styles.css +3 -0
  10. package/wwwroot/_content/MindExecution.Plugins.Admin/css/admin-dashboard.css +546 -0
  11. package/wwwroot/_content/MindExecution.Plugins.Directory/MindExecution.Plugins.Directory.u7utcng611.bundle.scp.css +7 -0
  12. package/wwwroot/_content/MindExecution.Plugins.Directory/background.png +0 -0
  13. package/wwwroot/_content/MindExecution.Plugins.Directory/directory-manager.js +202 -0
  14. package/wwwroot/_content/MindExecution.Plugins.Directory/exampleJsInterop.js +6 -0
  15. package/wwwroot/_content/MindExecution.Plugins.YouTube/css/youtube-search.css +251 -0
  16. package/wwwroot/_content/MindExecution.Shared/MindExecution.Shared.wsano1j4wp.bundle.scp.css +4 -0
  17. package/wwwroot/_content/MindExecution.Shared/css/admin-dashboard.css +559 -0
  18. package/wwwroot/_content/MindExecution.Shared/css/app.css +1 -0
  19. package/wwwroot/_content/MindExecution.Shared/css/mind-map-overrides.css +3705 -0
  20. package/wwwroot/_content/MindExecution.Shared/fonts/NotoSansKR-Bold.ttf +0 -0
  21. package/wwwroot/_content/MindExecution.Shared/fonts/NotoSansKR-Regular.ttf +0 -0
  22. package/wwwroot/_content/MindExecution.Shared/js/agent-visualization.js +359 -0
  23. package/wwwroot/_content/MindExecution.Shared/js/background-themes.js +1631 -0
  24. package/wwwroot/_content/MindExecution.Shared/js/code-master.js +8316 -0
  25. package/wwwroot/_content/MindExecution.Shared/js/file-system-helper.js +639 -0
  26. package/wwwroot/_content/MindExecution.Shared/js/helpers/InfiniteGridHelper.js +109 -0
  27. package/wwwroot/_content/MindExecution.Shared/js/marked.min.js +69 -0
  28. package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +9987 -0
  29. package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js.backup +1059 -0
  30. package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +24635 -0
  31. package/wwwroot/_content/MindExecution.Shared/js/mind-map-dev-guards.js +325 -0
  32. package/wwwroot/_content/MindExecution.Shared/js/mind-map-dnd.js +1491 -0
  33. package/wwwroot/_content/MindExecution.Shared/js/mind-map-dnd.js.bak +434 -0
  34. package/wwwroot/_content/MindExecution.Shared/js/mind-map-glow-shader.js +260 -0
  35. package/wwwroot/_content/MindExecution.Shared/js/mind-map-interactions.js +7821 -0
  36. package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js +160 -0
  37. package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +10441 -0
  38. package/wwwroot/_content/MindExecution.Shared/js/mind-map-logic-workers.js +977 -0
  39. package/wwwroot/_content/MindExecution.Shared/js/mind-map-menu-manager.js +1531 -0
  40. package/wwwroot/_content/MindExecution.Shared/js/mind-map-multi-select.js +1716 -0
  41. package/wwwroot/_content/MindExecution.Shared/js/mind-map-node-search-worker.js +554 -0
  42. package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +4578 -0
  43. package/wwwroot/_content/MindExecution.Shared/js/mind-map-object-manager.js +489 -0
  44. package/wwwroot/_content/MindExecution.Shared/js/mind-map-object-manager.js.backup +372 -0
  45. package/wwwroot/_content/MindExecution.Shared/js/mind-map-pipeline.js +2203 -0
  46. package/wwwroot/_content/MindExecution.Shared/js/mind-map-text-lod-system.js +646 -0
  47. package/wwwroot/_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js +4735 -0
  48. package/wwwroot/_content/MindExecution.Shared/js/mind-map-texture-factory.js +2383 -0
  49. package/wwwroot/_content/MindExecution.Shared/js/mind-map-texture-factory.js.backup +1258 -0
  50. package/wwwroot/_content/MindExecution.Shared/js/mind-map-visibility-worker.js +890 -0
  51. package/wwwroot/_content/MindExecution.Shared/js/mindmap-toolbar.js +639 -0
  52. package/wwwroot/_content/MindExecution.Shared/js/native-drop-handler.js +170 -0
  53. package/wwwroot/_content/MindExecution.Shared/js/plan-master.js +788 -0
  54. package/wwwroot/_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js +50 -0
  55. package/wwwroot/_content/MindExecution.Shared/js/texture-worker-manager.js +188 -0
  56. package/wwwroot/_content/MindExecution.Shared/js/texture-worker.js +208 -0
  57. package/wwwroot/_content/MindExecution.Shared/js/three.min.js +6 -0
  58. package/wwwroot/_content/MindExecution.Shared/js/titlebar-handler.js +191 -0
  59. package/wwwroot/_content/MindExecution.Shared/js/token-manager.js +37 -0
  60. package/wwwroot/_content/MindExecution.Shared/js/token-worker.js +28 -0
  61. package/wwwroot/_content/MindExecution.Shared/js/troika-bundle.js +5626 -0
  62. package/wwwroot/_content/MindExecution.Shared/js/troika-bundle.js.map +7 -0
  63. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/css/all.min.css +9 -0
  64. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-brands-400.ttf +0 -0
  65. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-brands-400.woff2 +0 -0
  66. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-regular-400.ttf +0 -0
  67. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-regular-400.woff2 +0 -0
  68. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-solid-900.ttf +0 -0
  69. package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-solid-900.woff2 +0 -0
  70. package/wwwroot/_content/MindExecution.Shared/models/all-MiniLM-L6-v2-quantized.onnx +0 -0
  71. package/wwwroot/_content/MindExecution.Shared/models/vocab.txt +30522 -0
  72. package/wwwroot/_framework/Google.Protobuf.9h59ukbel7.dll +0 -0
  73. package/wwwroot/_framework/Markdig.d1j7v41cl1.dll +0 -0
  74. package/wwwroot/_framework/MessagePack.Annotations.l6qv48kgpt.dll +0 -0
  75. package/wwwroot/_framework/MessagePack.eqoptzx9d5.dll +0 -0
  76. package/wwwroot/_framework/Microsoft.AspNetCore.Authorization.k7dsih5y5g.dll +0 -0
  77. package/wwwroot/_framework/Microsoft.AspNetCore.Components.6nyje9sa0g.dll +0 -0
  78. package/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.iycd6unprw.dll +0 -0
  79. package/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.487u3twia4.dll +0 -0
  80. package/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.d0gcnmlxxz.dll +0 -0
  81. package/wwwroot/_framework/Microsoft.AspNetCore.Metadata.h4yevl9adi.dll +0 -0
  82. package/wwwroot/_framework/Microsoft.CSharp.8bsm8vx6su.dll +0 -0
  83. package/wwwroot/_framework/Microsoft.Data.Sqlite.jdlxgv2jtg.dll +0 -0
  84. package/wwwroot/_framework/Microsoft.EntityFrameworkCore.4gjazp7kjf.dll +0 -0
  85. package/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.gocudnvz7b.dll +0 -0
  86. package/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.lt4rsvinuo.dll +0 -0
  87. package/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.69luj0fa9r.dll +0 -0
  88. package/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.364t4jh3zz.dll +0 -0
  89. package/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.izlxhpzosu.dll +0 -0
  90. package/wwwroot/_framework/Microsoft.Extensions.Configuration.8zq7hh41o7.dll +0 -0
  91. package/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.8if74zs6ea.dll +0 -0
  92. package/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.duvlngw8i0.dll +0 -0
  93. package/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.t2hh9kvx0o.dll +0 -0
  94. package/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.n4tg99oy8l.dll +0 -0
  95. package/wwwroot/_framework/Microsoft.Extensions.DependencyModel.h0d06ixk3e.dll +0 -0
  96. package/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.rl32bkx2sd.dll +0 -0
  97. package/wwwroot/_framework/Microsoft.Extensions.Logging.dlht1xei0t.dll +0 -0
  98. package/wwwroot/_framework/Microsoft.Extensions.Options.qeunebioml.dll +0 -0
  99. package/wwwroot/_framework/Microsoft.Extensions.Primitives.18cr6vnuuz.dll +0 -0
  100. package/wwwroot/_framework/Microsoft.IO.RecyclableMemoryStream.r915vovvw4.dll +0 -0
  101. package/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.1ejljk3erv.dll +0 -0
  102. package/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.1596zr8gne.dll +0 -0
  103. package/wwwroot/_framework/Microsoft.IdentityModel.Logging.229uyvpgio.dll +0 -0
  104. package/wwwroot/_framework/Microsoft.IdentityModel.Tokens.9sibtajc9f.dll +0 -0
  105. package/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.ryia5gxiad.dll +0 -0
  106. package/wwwroot/_framework/Microsoft.JSInterop.ew9vz9o332.dll +0 -0
  107. package/wwwroot/_framework/Microsoft.ML.OnnxRuntime.w9deo1m5ss.dll +0 -0
  108. package/wwwroot/_framework/Microsoft.ML.Tokenizers.cm2vuv2z61.dll +0 -0
  109. package/wwwroot/_framework/Microsoft.NET.StringTools.3qbrf4v2ki.dll +0 -0
  110. package/wwwroot/_framework/MimeMapping.og9ys58ylm.dll +0 -0
  111. package/wwwroot/_framework/MindExecution.Core.y7ffihhajj.dll +0 -0
  112. package/wwwroot/_framework/MindExecution.Kernel.l5y3qroa7p.dll +0 -0
  113. package/wwwroot/_framework/MindExecution.Plugins.Admin.uuf238xa0h.dll +0 -0
  114. package/wwwroot/_framework/MindExecution.Plugins.Business.nyr3v25v48.dll +0 -0
  115. package/wwwroot/_framework/MindExecution.Plugins.Concept.l9z9tx9svt.dll +0 -0
  116. package/wwwroot/_framework/MindExecution.Plugins.Directory.ju87t8h3zs.dll +0 -0
  117. package/wwwroot/_framework/MindExecution.Plugins.PlanMaster.krn3jgvjpa.dll +0 -0
  118. package/wwwroot/_framework/MindExecution.Plugins.YouTube.5m53srfud6.dll +0 -0
  119. package/wwwroot/_framework/MindExecution.Shared.ojp3psugsm.dll +0 -0
  120. package/wwwroot/_framework/MindExecution.Web.82k6ktlkfg.dll +0 -0
  121. package/wwwroot/_framework/Newtonsoft.Json.a56zs13vug.dll +0 -0
  122. package/wwwroot/_framework/SQLitePCLRaw.batteries_v2.rrd1nzawpp.dll +0 -0
  123. package/wwwroot/_framework/SQLitePCLRaw.core.1dxloztpfz.dll +0 -0
  124. package/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.oekyzl53i1.dll +0 -0
  125. package/wwwroot/_framework/Supabase.Core.s1pkj4aj0l.dll +0 -0
  126. package/wwwroot/_framework/Supabase.Functions.qz4nu782sg.dll +0 -0
  127. package/wwwroot/_framework/Supabase.Gotrue.twah27pkik.dll +0 -0
  128. package/wwwroot/_framework/Supabase.Postgrest.gmuuv369ih.dll +0 -0
  129. package/wwwroot/_framework/Supabase.Realtime.ox3kchdy3w.dll +0 -0
  130. package/wwwroot/_framework/Supabase.Storage.fnjnepaowr.dll +0 -0
  131. package/wwwroot/_framework/Supabase.azmaw5pgcz.dll +0 -0
  132. package/wwwroot/_framework/System.Collections.23yxgetbju.dll +0 -0
  133. package/wwwroot/_framework/System.Collections.Concurrent.vow3rm1dku.dll +0 -0
  134. package/wwwroot/_framework/System.Collections.Immutable.ap9596utv5.dll +0 -0
  135. package/wwwroot/_framework/System.Collections.NonGeneric.npjkaz40oc.dll +0 -0
  136. package/wwwroot/_framework/System.Collections.Specialized.ugkjbs6p02.dll +0 -0
  137. package/wwwroot/_framework/System.ComponentModel.Annotations.clwo0z2oyu.dll +0 -0
  138. package/wwwroot/_framework/System.ComponentModel.Primitives.end4v0xe2c.dll +0 -0
  139. package/wwwroot/_framework/System.ComponentModel.TypeConverter.tgtp5sm4iv.dll +0 -0
  140. package/wwwroot/_framework/System.ComponentModel.wupoltkk1t.dll +0 -0
  141. package/wwwroot/_framework/System.Console.9dik0wogo2.dll +0 -0
  142. package/wwwroot/_framework/System.Data.Common.4v8jejsiu0.dll +0 -0
  143. package/wwwroot/_framework/System.Diagnostics.DiagnosticSource.e2q75ondtq.dll +0 -0
  144. package/wwwroot/_framework/System.Diagnostics.Process.9736yjnxs8.dll +0 -0
  145. package/wwwroot/_framework/System.Diagnostics.TraceSource.h9al53gbbw.dll +0 -0
  146. package/wwwroot/_framework/System.Diagnostics.Tracing.h4bcp2fo98.dll +0 -0
  147. package/wwwroot/_framework/System.Drawing.64oovy8qts.dll +0 -0
  148. package/wwwroot/_framework/System.Drawing.Primitives.o6jiqpgbgl.dll +0 -0
  149. package/wwwroot/_framework/System.Formats.Asn1.rylx5ipd40.dll +0 -0
  150. package/wwwroot/_framework/System.IO.Compression.iceabaupns.dll +0 -0
  151. package/wwwroot/_framework/System.IO.Pipelines.uw8csd3mlz.dll +0 -0
  152. package/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.t67es60z5b.dll +0 -0
  153. package/wwwroot/_framework/System.Linq.Expressions.ty95ava37f.dll +0 -0
  154. package/wwwroot/_framework/System.Linq.Queryable.hs2195jrwy.dll +0 -0
  155. package/wwwroot/_framework/System.Linq.hssodjwmlf.dll +0 -0
  156. package/wwwroot/_framework/System.Memory.1k78n7wdxb.dll +0 -0
  157. package/wwwroot/_framework/System.Net.Http.3br8rfql4c.dll +0 -0
  158. package/wwwroot/_framework/System.Net.Http.Json.860wbh17d8.dll +0 -0
  159. package/wwwroot/_framework/System.Net.NetworkInformation.e3wr00853o.dll +0 -0
  160. package/wwwroot/_framework/System.Net.Ping.r5cw4mf1a4.dll +0 -0
  161. package/wwwroot/_framework/System.Net.Primitives.ksxwiwlvhu.dll +0 -0
  162. package/wwwroot/_framework/System.Net.WebSockets.6rt3n3gl2q.dll +0 -0
  163. package/wwwroot/_framework/System.Net.WebSockets.Client.z3usrzo7rz.dll +0 -0
  164. package/wwwroot/_framework/System.Numerics.Tensors.0c7z4mt3on.dll +0 -0
  165. package/wwwroot/_framework/System.Numerics.Vectors.lbdzx8reja.dll +0 -0
  166. package/wwwroot/_framework/System.ObjectModel.yct1gdirzf.dll +0 -0
  167. package/wwwroot/_framework/System.Private.CoreLib.c1dbswx1b2.dll +0 -0
  168. package/wwwroot/_framework/System.Private.Uri.zp9kmg0z93.dll +0 -0
  169. package/wwwroot/_framework/System.Private.Xml.Linq.lgv2n0akl4.dll +0 -0
  170. package/wwwroot/_framework/System.Private.Xml.dpsk8g304y.dll +0 -0
  171. package/wwwroot/_framework/System.Reactive.t3fuon548l.dll +0 -0
  172. package/wwwroot/_framework/System.Reflection.Emit.ILGeneration.1tcuz2cmbk.dll +0 -0
  173. package/wwwroot/_framework/System.Reflection.Emit.Lightweight.ddt2wylovg.dll +0 -0
  174. package/wwwroot/_framework/System.Reflection.Emit.d8vkadiwhg.dll +0 -0
  175. package/wwwroot/_framework/System.Reflection.Primitives.cpsl71xd1z.dll +0 -0
  176. package/wwwroot/_framework/System.Runtime.InteropServices.31vjgsfk1o.dll +0 -0
  177. package/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.pn2wvizzet.dll +0 -0
  178. package/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.l5rk496q70.dll +0 -0
  179. package/wwwroot/_framework/System.Runtime.Intrinsics.0zee9qcqfy.dll +0 -0
  180. package/wwwroot/_framework/System.Runtime.Loader.xw2jr9wl92.dll +0 -0
  181. package/wwwroot/_framework/System.Runtime.Numerics.ezj1dfyvbj.dll +0 -0
  182. package/wwwroot/_framework/System.Runtime.Serialization.Formatters.0y019e9zkr.dll +0 -0
  183. package/wwwroot/_framework/System.Runtime.Serialization.Primitives.bia5wb62c8.dll +0 -0
  184. package/wwwroot/_framework/System.Runtime.h9cduidfkh.dll +0 -0
  185. package/wwwroot/_framework/System.Security.Claims.2r18wim2rl.dll +0 -0
  186. package/wwwroot/_framework/System.Security.Cryptography.qqgybpoucx.dll +0 -0
  187. package/wwwroot/_framework/System.Text.Encoding.Extensions.9t3hs6kyll.dll +0 -0
  188. package/wwwroot/_framework/System.Text.Encodings.Web.wftjfh2crk.dll +0 -0
  189. package/wwwroot/_framework/System.Text.Json.0v0qgmri0w.dll +0 -0
  190. package/wwwroot/_framework/System.Text.RegularExpressions.cvkox11l6l.dll +0 -0
  191. package/wwwroot/_framework/System.Threading.Channels.419493szqu.dll +0 -0
  192. package/wwwroot/_framework/System.Threading.Thread.xhmys87xh5.dll +0 -0
  193. package/wwwroot/_framework/System.Threading.b66vzsz9g1.dll +0 -0
  194. package/wwwroot/_framework/System.Transactions.Local.7zfffdvnwf.dll +0 -0
  195. package/wwwroot/_framework/System.Web.HttpUtility.9up6xfbtuq.dll +0 -0
  196. package/wwwroot/_framework/System.Xml.Linq.n5rzv9nbf7.dll +0 -0
  197. package/wwwroot/_framework/System.Xml.ReaderWriter.ag8pilllob.dll +0 -0
  198. package/wwwroot/_framework/System.Xml.XDocument.sn51jas17n.dll +0 -0
  199. package/wwwroot/_framework/System.brmz7yk5qh.dll +0 -0
  200. package/wwwroot/_framework/Websocket.Client.vapounvmnl.dll +0 -0
  201. package/wwwroot/_framework/blazor.boot.json +305 -0
  202. package/wwwroot/_framework/blazor.webassembly.js +1 -0
  203. package/wwwroot/_framework/dotnet.js +4 -0
  204. package/wwwroot/_framework/dotnet.native.boem75ye5i.wasm +0 -0
  205. package/wwwroot/_framework/dotnet.native.qc8g39g30v.js +16 -0
  206. package/wwwroot/_framework/dotnet.runtime.opaiwunc3t.js +4 -0
  207. package/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat +0 -0
  208. package/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat +0 -0
  209. package/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat +0 -0
  210. package/wwwroot/_framework/netstandard.yvr3prsx0x.dll +0 -0
  211. package/wwwroot/_headers +17 -50
  212. package/wwwroot/appsettings.json +82 -82
  213. package/wwwroot/icon-192.png +0 -0
  214. package/wwwroot/icon-512.png +0 -0
  215. package/wwwroot/index.html +736 -22
  216. package/wwwroot/js/marketing-tool.js +180 -0
  217. package/wwwroot/manifest.webmanifest +21 -18
  218. package/wwwroot/robots.txt +1 -1
  219. package/wwwroot/service-worker-assets.js +857 -0
  220. package/wwwroot/service-worker.js +31 -5
  221. package/wwwroot/sitemap.xml +8 -20
  222. package/wwwroot/assets/AdminDashboardPage-AhImXOcJ.js +0 -1
  223. package/wwwroot/assets/AdminDashboardPage-B2vz2Px9.css +0 -1
  224. package/wwwroot/assets/AppSidebar-HIF29_Y1.js +0 -2
  225. package/wwwroot/assets/AuthPages-BrH6kRcv.css +0 -1
  226. package/wwwroot/assets/AuthPages-n1KbzJI5.js +0 -1
  227. package/wwwroot/assets/CodePage-Bncc352E.css +0 -1
  228. package/wwwroot/assets/CodePage-OKIzhHoC.js +0 -87
  229. package/wwwroot/assets/CompanyCorePage-Biw4RPhk.js +0 -13
  230. package/wwwroot/assets/CompanyCorePage-ChBnq1ve.css +0 -1
  231. package/wwwroot/assets/ExecutionModePage-BaNPZB_m.js +0 -18
  232. package/wwwroot/assets/ExecutionModePage-TLuld9l3.css +0 -1
  233. package/wwwroot/assets/LaunchLeadCapture-Bx9LM0IX.js +0 -1
  234. package/wwwroot/assets/LaunchLeadCapture-CiRI1shz.css +0 -1
  235. package/wwwroot/assets/MarketingHome-BsyerRpe.js +0 -1
  236. package/wwwroot/assets/MarketingHome-DPzaYzA_.css +0 -1
  237. package/wwwroot/assets/MindCanvas-07gqXHGA.js +0 -49
  238. package/wwwroot/assets/MindCanvas-DtqOZnoW.css +0 -1
  239. package/wwwroot/assets/PlanMasterPage-CJ36rep-.css +0 -1
  240. package/wwwroot/assets/PlanMasterPage-CT87Dr_2.js +0 -4
  241. package/wwwroot/assets/PricingPage-Cg_0i_ZR.css +0 -1
  242. package/wwwroot/assets/PricingPage-dDvHQskC.js +0 -1
  243. package/wwwroot/assets/ToolPages-CKI4mItc.js +0 -28
  244. package/wwwroot/assets/ToolPages-DIB187pZ.css +0 -1
  245. package/wwwroot/assets/YouTubeSearchPage-8iFuPSSo.js +0 -4
  246. package/wwwroot/assets/YouTubeSearchPage-IPPa_BIH.css +0 -1
  247. package/wwwroot/assets/app-runtime-xD2Z3NdN.js +0 -1
  248. package/wwwroot/assets/canvas-runtime-Nq2noXK-.js +0 -44
  249. package/wwwroot/assets/code-agent-runtime-B5PPZd1t.js +0 -74
  250. package/wwwroot/assets/executionModeSettings-NJqurj-o.js +0 -1
  251. package/wwwroot/assets/index-CyNhJb7A.js +0 -2
  252. package/wwwroot/assets/index-yNpEK-gp.css +0 -1
  253. package/wwwroot/assets/marketingTools-DN_rnHeB.js +0 -4
  254. package/wwwroot/assets/mindCanvasSearchWorker-BzPMsHOB.js +0 -1
  255. package/wwwroot/assets/mindexecution-mindcanvas.png +0 -0
  256. package/wwwroot/assets/mindexecution-prod-home-current.png +0 -0
  257. package/wwwroot/assets/mindexecution-prod-pricing-current.png +0 -0
  258. package/wwwroot/assets/pricingCheckoutShell-O-DnwmbU.js +0 -1
  259. package/wwwroot/assets/productionAdapterConfig-C5jfk6oG.js +0 -1
  260. package/wwwroot/assets/runtimeSettingsPersistenceProjection-BoNWmYjU.js +0 -1
  261. package/wwwroot/assets/storage-DPyjZEKZ.js +0 -1
  262. package/wwwroot/assets/supabaseAuthAdapter-m134Qdxn.js +0 -44
  263. package/wwwroot/assets/toolHandoff-D5e5f7t5.js +0 -4
  264. package/wwwroot/assets/vendor-icons-DE3gIReG.js +0 -681
  265. package/wwwroot/assets/vendor-msgpack-BE8aAsr3.js +0 -1
  266. package/wwwroot/assets/vendor-react-BXzpOyCS.js +0 -40
  267. package/wwwroot/favicon.svg +0 -7
@@ -0,0 +1,3705 @@
1
+ /* =================================================================
2
+ CSS3D Performance Optimization for 60fps
3
+ ================================================================= */
4
+
5
+ /* ▼▼▼ [CRITICAL] Layout Containment - Isolate reflow/repaint ▼▼▼ */
6
+ .map-node,
7
+ .map-node-bubble,
8
+ .map-node-note,
9
+ .map-node-memo,
10
+ .map-node-file,
11
+ .map-node-image,
12
+ .map-node-code {
13
+ box-sizing: border-box !important;
14
+ /* contain: strict = size + layout + paint + style 모두 격리 */
15
+ /* 노드 내부 변경이 부모/형제 레이아웃에 영향을 주지 않음 */
16
+ contain: strict;
17
+ /* content-visibility: auto - 화면 밖 노드는 렌더링 건너뜀 */
18
+ /* contain-intrinsic-size로 예상 크기 힌트 제공 */
19
+ content-visibility: auto;
20
+ contain-intrinsic-size: 200px 100px;
21
+ }
22
+
23
+ /*
24
+ * CSS3D로 실제 표시되는 클론은 3D transform 아래에 놓이므로
25
+ * content-visibility:auto 가 페인트를 통째로 건너뛰는 경우가 있다.
26
+ * 템플릿 DOM에는 최적화를 유지하되, 렌더 중인 CSS3D 클론만 강제로 visible 처리한다.
27
+ */
28
+ .css3d-resolution-wrapper > .map-node,
29
+ .css3d-resolution-wrapper > .map-node-bubble,
30
+ .css3d-resolution-wrapper > .map-node-note,
31
+ .css3d-resolution-wrapper > .map-node-memo,
32
+ .css3d-resolution-wrapper > .map-node-file,
33
+ .css3d-resolution-wrapper > .map-node-image,
34
+ .css3d-resolution-wrapper > .map-node-code {
35
+ content-visibility: visible !important;
36
+ contain-intrinsic-size: auto !important;
37
+ }
38
+
39
+ .css3d-resolution-wrapper.node-type-templatelauncher,
40
+ .css3d-resolution-wrapper.node-type-templatelauncher > .map-node,
41
+ .css3d-resolution-wrapper.node-type-templatelauncher > .map-node-template-card {
42
+ contain: layout style !important;
43
+ content-visibility: visible !important;
44
+ contain-intrinsic-size: auto !important;
45
+ isolation: isolate !important;
46
+ -webkit-backface-visibility: visible !important;
47
+ backface-visibility: visible !important;
48
+ }
49
+
50
+ .css3d-resolution-wrapper.node-type-image > .map-node,
51
+ .css3d-resolution-wrapper.node-type-video > .map-node,
52
+ .css3d-resolution-wrapper.node-type-embed > .map-node {
53
+ contain: none !important;
54
+ content-visibility: visible !important;
55
+ contain-intrinsic-size: auto !important;
56
+ isolation: isolate !important;
57
+ transform-style: flat !important;
58
+ transform: none !important;
59
+ will-change: auto !important;
60
+ -webkit-backface-visibility: visible !important;
61
+ backface-visibility: visible !important;
62
+ }
63
+
64
+ /* ▲▲▲ [CRITICAL] ▲▲▲ */
65
+
66
+ :root {
67
+ --mind-node-selection-edge: #2563eb;
68
+ --mind-node-selection-edge-rgb: 37, 99, 235;
69
+ --mind-node-selection-glow-rgb: 59, 130, 246;
70
+ --mind-node-selection-glow-soft-rgb: 191, 219, 254;
71
+ --mind-node-static-edge: #111827;
72
+ --node-selection-glow-rgb: 59, 130, 246;
73
+ --node-selection-glow-rgb-soft: 191, 219, 254;
74
+ }
75
+
76
+ html.mind-map-scroll-locked,
77
+ body.mind-map-scroll-locked {
78
+ height: 100%;
79
+ overflow: hidden !important;
80
+ overscroll-behavior: none;
81
+ }
82
+
83
+ /* ▼▼▼ [GPU Compositing] Force hardware acceleration ▼▼▼ */
84
+ .css3d-resolution-wrapper,
85
+ .map-node,
86
+ .map-node-bubble,
87
+ .map-node-note,
88
+ .map-node-memo,
89
+ .map-node-code {
90
+ -webkit-backface-visibility: hidden;
91
+ backface-visibility: hidden;
92
+ /* 텍스트 렌더링 품질 */
93
+ -webkit-font-smoothing: antialiased;
94
+ -moz-osx-font-smoothing: grayscale;
95
+ text-rendering: optimizeLegibility;
96
+ /* 서브픽셀 정렬로 흐림 방지 */
97
+ transform: translateZ(0);
98
+ }
99
+
100
+ .css3d-resolution-wrapper > .map-node,
101
+ .css3d-resolution-wrapper > .map-node-bubble,
102
+ .css3d-resolution-wrapper > .map-node-note,
103
+ .css3d-resolution-wrapper > .map-node-memo,
104
+ .css3d-resolution-wrapper > .map-node-file,
105
+ .css3d-resolution-wrapper > .map-node-image,
106
+ .css3d-resolution-wrapper > .map-node-code {
107
+ contain: layout style !important;
108
+ content-visibility: visible !important;
109
+ contain-intrinsic-size: auto !important;
110
+ transform: none !important;
111
+ zoom: var(--css3d-node-resolution-zoom, 1) !important;
112
+ will-change: auto !important;
113
+ -webkit-backface-visibility: visible !important;
114
+ backface-visibility: visible !important;
115
+ }
116
+
117
+ /* Restore reference high-detail text rasterization.
118
+ Media/template surfaces keep their live-surface visible/flat overrides. */
119
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node,
120
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node-bubble,
121
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node-note,
122
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node-memo,
123
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node-file,
124
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node-code {
125
+ -webkit-font-smoothing: antialiased !important;
126
+ -moz-osx-font-smoothing: grayscale !important;
127
+ text-rendering: optimizeLegibility !important;
128
+ -webkit-backface-visibility: hidden !important;
129
+ backface-visibility: hidden !important;
130
+ transform: translateZ(0) !important;
131
+ }
132
+
133
+ .css3d-resolution-wrapper.node-type-image img,
134
+ .css3d-resolution-wrapper.node-type-video video,
135
+ .css3d-resolution-wrapper.node-type-embed iframe,
136
+ .css3d-resolution-wrapper.node-type-embed .embed-card {
137
+ -webkit-backface-visibility: visible !important;
138
+ backface-visibility: visible !important;
139
+ transform: none !important;
140
+ will-change: auto !important;
141
+ }
142
+
143
+ .css3d-resolution-wrapper.node-type-image .image-content,
144
+ .css3d-resolution-wrapper.node-type-video .video-content {
145
+ position: relative !important;
146
+ display: block !important;
147
+ overflow: hidden !important;
148
+ transform: none !important;
149
+ will-change: auto !important;
150
+ }
151
+
152
+ .css3d-resolution-wrapper.node-type-image .image-content > img,
153
+ .css3d-resolution-wrapper.node-type-video .video-content > video {
154
+ position: absolute !important;
155
+ inset: 0 !important;
156
+ display: block !important;
157
+ width: 100% !important;
158
+ height: 100% !important;
159
+ min-width: 100% !important;
160
+ min-height: 100% !important;
161
+ flex: none !important;
162
+ object-position: center center !important;
163
+ }
164
+
165
+ .css3d-resolution-wrapper.node-type-video .video-content > canvas.mind-map-video-proxy {
166
+ position: absolute !important;
167
+ inset: 0 !important;
168
+ display: none !important;
169
+ width: 100% !important;
170
+ height: 100% !important;
171
+ min-width: 100% !important;
172
+ min-height: 100% !important;
173
+ pointer-events: none !important;
174
+ background: transparent !important;
175
+ }
176
+
177
+ .css3d-resolution-wrapper.node-type-video .video-content.mind-map-video-proxy-active > canvas.mind-map-video-proxy {
178
+ display: block !important;
179
+ }
180
+
181
+ .css3d-resolution-wrapper.node-type-video .video-content.mind-map-video-proxy-active > video {
182
+ inset: auto !important;
183
+ left: -200vw !important;
184
+ top: -200vh !important;
185
+ width: 1px !important;
186
+ height: 1px !important;
187
+ min-width: 1px !important;
188
+ min-height: 1px !important;
189
+ opacity: 0 !important;
190
+ pointer-events: none !important;
191
+ }
192
+
193
+ body.mind-debug-video-hide-surface .css3d-resolution-wrapper.node-type-video .video-content > video {
194
+ display: none !important;
195
+ }
196
+
197
+ body.mind-debug-video-tint-layout .css3d-resolution-wrapper.node-type-video .video-content {
198
+ position: relative !important;
199
+ background: rgba(251, 113, 133, 0.24) !important;
200
+ outline: 2px dashed rgba(251, 113, 133, 0.92) !important;
201
+ outline-offset: -2px !important;
202
+ }
203
+
204
+ body.mind-debug-video-tint-layout .css3d-resolution-wrapper.node-type-video .video-content > video {
205
+ background: transparent !important;
206
+ }
207
+
208
+ body.mind-debug-video-tint-layout .css3d-resolution-wrapper.node-type-video .video-content::before {
209
+ content: '';
210
+ position: absolute;
211
+ left: var(--mind-debug-video-draw-left, 0px);
212
+ top: var(--mind-debug-video-draw-top, 0px);
213
+ width: var(--mind-debug-video-draw-width, 100%);
214
+ height: var(--mind-debug-video-draw-height, 100%);
215
+ border: 2px dashed rgba(45, 212, 191, 0.95);
216
+ background: rgba(45, 212, 191, 0.14);
217
+ box-sizing: border-box;
218
+ pointer-events: none;
219
+ z-index: 2;
220
+ }
221
+
222
+ body.mind-debug-video-tint-layout .css3d-resolution-wrapper.node-type-video .video-content::after {
223
+ content: attr(data-debug-video-layout);
224
+ position: absolute;
225
+ left: 6px;
226
+ bottom: 6px;
227
+ padding: 2px 6px;
228
+ border-radius: 4px;
229
+ background: rgba(15, 23, 42, 0.82);
230
+ color: #f8fafc;
231
+ font: 11px/1.25 Consolas, 'Courier New', monospace;
232
+ white-space: nowrap;
233
+ pointer-events: none;
234
+ z-index: 3;
235
+ }
236
+
237
+ /* ▲▲▲ [GPU Compositing] ▲▲▲ */
238
+
239
+ /* ▼▼▼ [Fix] Disable transform transition to prevent initial position tweening ▼▼▼ */
240
+ .css3d-resolution-wrapper {
241
+ -webkit-transition: none !important;
242
+ transition: none !important;
243
+ }
244
+ /* ▲▲▲ [Fix] ▲▲▲ */
245
+
246
+ body.is-resizing .css3d-resolution-wrapper {
247
+ -webkit-transition: none !important;
248
+ transition: none !important;
249
+ }
250
+
251
+ body.is-zooming .css3d-resolution-wrapper,
252
+ body.is-panning .css3d-resolution-wrapper {
253
+ -webkit-transition: none !important;
254
+ transition: none !important;
255
+ }
256
+
257
+ body.is-zooming .css3d-resolution-wrapper.selected,
258
+ body.is-panning .css3d-resolution-wrapper.selected,
259
+ body.mindcanvas-is-moving .css3d-resolution-wrapper.selected,
260
+ body.mindcanvas-is-dense .css3d-resolution-wrapper.selected {
261
+ -webkit-filter: saturate(1.08) !important;
262
+ filter: saturate(1.08) !important;
263
+ }
264
+
265
+ body.is-zooming .node-menu-wrapper,
266
+ body.is-panning .node-menu-wrapper,
267
+ body.is-zooming .map-node-memo__icon-popover,
268
+ body.is-panning .map-node-memo__icon-popover {
269
+ -webkit-backdrop-filter: none !important;
270
+ backdrop-filter: none !important;
271
+ -webkit-box-shadow: none !important;
272
+ box-shadow: none !important;
273
+ -webkit-transition: none !important;
274
+ transition: none !important;
275
+ }
276
+
277
+ .mindcanvas-node-toolbar,
278
+ .global-ai-input-shell {
279
+ position: relative;
280
+ isolation: isolate;
281
+ overflow: hidden;
282
+ }
283
+
284
+ .mindcanvas-toolbar-stack > .mindcanvas-node-toolbar {
285
+ pointer-events: auto;
286
+ }
287
+
288
+ .mindcanvas-node-toolbar {
289
+ border-color: rgba(203, 213, 225, 0.68) !important;
290
+ background:
291
+ linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(241, 245, 249, 0.36)) !important;
292
+ -webkit-backdrop-filter: blur(18px) saturate(1.18);
293
+ backdrop-filter: blur(18px) saturate(1.18);
294
+ box-shadow:
295
+ 0 14px 28px rgba(15, 23, 42, 0.08),
296
+ 0 2px 10px rgba(148, 163, 184, 0.14),
297
+ inset 0 1px 0 rgba(255, 255, 255, 0.82),
298
+ inset 0 0 0 1px rgba(255, 255, 255, 0.22);
299
+ overflow: visible !important;
300
+ }
301
+
302
+ .mindcanvas-toolbar-button-shell {
303
+ position: relative;
304
+ display: inline-flex;
305
+ align-items: center;
306
+ justify-content: center;
307
+ flex: 0 0 auto;
308
+ }
309
+
310
+ .mindcanvas-node-toolbar > .mindcanvas-toolbar-button-shell:has(.mindcanvas-toolbar-hint) {
311
+ z-index: 90;
312
+ }
313
+
314
+ .mindcanvas-ai-task-template-anchor {
315
+ position: relative;
316
+ display: inline-flex;
317
+ align-items: center;
318
+ gap: 0;
319
+ z-index: 3;
320
+ }
321
+
322
+ .mindcanvas-ai-task-template-menu {
323
+ position: absolute;
324
+ top: calc(100% + 8px);
325
+ left: 50%;
326
+ z-index: 90;
327
+ display: grid;
328
+ min-width: 196px;
329
+ padding: 6px;
330
+ border-radius: 8px;
331
+ border: 1px solid rgba(203, 213, 225, 0.86);
332
+ background: rgba(255, 255, 255, 0.96);
333
+ box-shadow:
334
+ 0 20px 44px rgba(15, 23, 42, 0.16),
335
+ 0 4px 12px rgba(15, 23, 42, 0.08),
336
+ inset 0 1px 0 rgba(255, 255, 255, 0.92);
337
+ transform: translateX(-50%);
338
+ -webkit-backdrop-filter: blur(16px) saturate(1.08);
339
+ backdrop-filter: blur(16px) saturate(1.08);
340
+ }
341
+
342
+ .mindcanvas-ai-task-template-menu__item {
343
+ position: relative;
344
+ display: grid;
345
+ grid-template-columns: 22px minmax(0, 1fr);
346
+ align-items: center;
347
+ gap: 8px;
348
+ min-height: 34px;
349
+ padding: 0 10px;
350
+ border-radius: 6px;
351
+ color: #334155;
352
+ font-size: 12px;
353
+ font-weight: 700;
354
+ letter-spacing: 0;
355
+ text-align: left;
356
+ white-space: nowrap;
357
+ }
358
+
359
+ .mindcanvas-ai-task-template-menu__item:hover,
360
+ .mindcanvas-ai-task-template-menu__item:focus-visible {
361
+ background: rgba(219, 234, 254, 0.72);
362
+ color: #1d4ed8;
363
+ }
364
+
365
+ .mindcanvas-ai-task-template-menu__item i {
366
+ width: 18px;
367
+ text-align: center;
368
+ font-size: 13px;
369
+ }
370
+
371
+ .mindcanvas-ai-task-template-menu__hint {
372
+ position: absolute;
373
+ top: 50%;
374
+ left: calc(100% + 10px);
375
+ z-index: 130;
376
+ display: grid;
377
+ width: max-content;
378
+ min-width: 214px;
379
+ max-width: min(300px, calc(100vw - 32px));
380
+ padding: 9px 12px;
381
+ border-radius: 12px;
382
+ border: 1px solid rgba(203, 213, 225, 0.82);
383
+ background:
384
+ linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88));
385
+ box-shadow:
386
+ 0 14px 38px rgba(15, 23, 42, 0.16),
387
+ 0 3px 10px rgba(15, 23, 42, 0.08),
388
+ inset 0 1px 0 rgba(255, 255, 255, 0.88);
389
+ color: #334155;
390
+ pointer-events: none;
391
+ white-space: normal;
392
+ opacity: 0;
393
+ visibility: hidden;
394
+ transform: translateX(-4px) translateY(-50%);
395
+ transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
396
+ -webkit-backdrop-filter: blur(16px) saturate(1.08);
397
+ backdrop-filter: blur(16px) saturate(1.08);
398
+ }
399
+
400
+ .mindcanvas-ai-task-template-menu__hint::before {
401
+ content: "";
402
+ position: absolute;
403
+ top: 50%;
404
+ left: -5px;
405
+ width: 10px;
406
+ height: 10px;
407
+ border-left: 1px solid rgba(203, 213, 225, 0.82);
408
+ border-bottom: 1px solid rgba(203, 213, 225, 0.82);
409
+ background: linear-gradient(225deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88));
410
+ transform: translateY(-50%) rotate(45deg);
411
+ }
412
+
413
+ .mindcanvas-ai-task-template-menu__hint-title {
414
+ font-size: 13px;
415
+ font-weight: 800;
416
+ color: #0f172a;
417
+ }
418
+
419
+ .mindcanvas-ai-task-template-menu__hint-description {
420
+ margin-top: 4px;
421
+ font-size: 12px;
422
+ font-weight: 600;
423
+ line-height: 1.5;
424
+ color: #64748b;
425
+ }
426
+
427
+ .mindcanvas-ai-task-template-menu__item:hover .mindcanvas-ai-task-template-menu__hint,
428
+ .mindcanvas-ai-task-template-menu__item:focus-visible .mindcanvas-ai-task-template-menu__hint {
429
+ opacity: 1;
430
+ visibility: visible;
431
+ transform: translateX(0) translateY(-50%);
432
+ }
433
+
434
+ .mindcanvas-toolbar-button-shell:has(.mindcanvas-toolbar-menu) {
435
+ z-index: 120;
436
+ }
437
+
438
+ .mindcanvas-node-toolbar__button--active,
439
+ .mindcanvas-node-toolbar__button--menu[aria-expanded="true"] {
440
+ color: #1d4ed8 !important;
441
+ background: rgba(219, 234, 254, 0.78) !important;
442
+ box-shadow:
443
+ 0 8px 18px rgba(37, 99, 235, 0.12),
444
+ inset 0 1px 0 rgba(255, 255, 255, 0.72);
445
+ }
446
+
447
+ .mindcanvas-toolbar-menu {
448
+ position: absolute;
449
+ top: calc(100% + 9px);
450
+ left: 50%;
451
+ z-index: 120;
452
+ display: grid;
453
+ gap: 7px;
454
+ width: min(356px, calc(100vw - 32px));
455
+ padding: 10px;
456
+ border-radius: 8px;
457
+ border: 1px solid rgba(203, 213, 225, 0.88);
458
+ background: rgba(255, 255, 255, 0.97);
459
+ box-shadow:
460
+ 0 22px 48px rgba(15, 23, 42, 0.18),
461
+ 0 5px 14px rgba(15, 23, 42, 0.08),
462
+ inset 0 1px 0 rgba(255, 255, 255, 0.92);
463
+ transform: translateX(-50%);
464
+ -webkit-backdrop-filter: blur(18px) saturate(1.1);
465
+ backdrop-filter: blur(18px) saturate(1.1);
466
+ }
467
+
468
+ .mindcanvas-toolbar-menu--tools {
469
+ width: min(320px, calc(100vw - 32px));
470
+ }
471
+
472
+ .mindcanvas-toolbar-menu--skills {
473
+ width: min(390px, calc(100vw - 32px));
474
+ max-height: min(78vh, 680px);
475
+ overflow: auto;
476
+ }
477
+
478
+ .mindcanvas-toolbar-menu__title {
479
+ padding: 0 2px 2px;
480
+ color: #0f172a;
481
+ font-size: 12px;
482
+ font-weight: 850;
483
+ letter-spacing: 0;
484
+ }
485
+
486
+ .mindcanvas-toolbar-menu__subtitle {
487
+ margin: -1px 2px 8px;
488
+ color: #64748b;
489
+ font-size: 11px;
490
+ font-weight: 620;
491
+ line-height: 1.35;
492
+ }
493
+
494
+ .mindcanvas-toolbar-menu__format-list {
495
+ display: grid;
496
+ grid-template-columns: repeat(3, minmax(0, 1fr));
497
+ gap: 6px;
498
+ }
499
+
500
+ .mindcanvas-toolbar-menu__format {
501
+ display: inline-flex;
502
+ align-items: center;
503
+ justify-content: center;
504
+ gap: 5px;
505
+ min-height: 30px;
506
+ padding: 0 7px;
507
+ border-radius: 6px;
508
+ border: 1px solid rgba(203, 213, 225, 0.78);
509
+ background: rgba(248, 250, 252, 0.9);
510
+ color: #334155;
511
+ font-size: 11px;
512
+ font-weight: 780;
513
+ white-space: nowrap;
514
+ }
515
+
516
+ .mindcanvas-toolbar-menu__format i {
517
+ width: 13px;
518
+ text-align: center;
519
+ color: #2563eb;
520
+ }
521
+
522
+ .mindcanvas-toolbar-menu__action {
523
+ display: grid;
524
+ grid-template-columns: 28px minmax(0, 1fr);
525
+ align-items: center;
526
+ gap: 9px;
527
+ min-height: 46px;
528
+ width: 100%;
529
+ padding: 8px 10px;
530
+ border: 1px solid transparent;
531
+ border-radius: 7px;
532
+ background: transparent;
533
+ color: #334155;
534
+ text-align: left;
535
+ cursor: pointer;
536
+ }
537
+
538
+ .mindcanvas-toolbar-menu__action:hover,
539
+ .mindcanvas-toolbar-menu__action:focus-visible {
540
+ border-color: rgba(191, 219, 254, 0.8);
541
+ background: rgba(239, 246, 255, 0.86);
542
+ color: #1d4ed8;
543
+ outline: none;
544
+ }
545
+
546
+ .mindcanvas-toolbar-menu__action--primary {
547
+ border-color: rgba(147, 197, 253, 0.68);
548
+ background: rgba(239, 246, 255, 0.82);
549
+ }
550
+
551
+ .mindcanvas-toolbar-menu__action i,
552
+ .mindcanvas-toolbar-menu__guide i {
553
+ width: 22px;
554
+ color: #2563eb;
555
+ text-align: center;
556
+ font-size: 14px;
557
+ }
558
+
559
+ .mindcanvas-toolbar-menu__action span {
560
+ display: grid;
561
+ min-width: 0;
562
+ gap: 2px;
563
+ }
564
+
565
+ .mindcanvas-toolbar-menu__action strong {
566
+ color: inherit;
567
+ font-size: 12px;
568
+ font-weight: 820;
569
+ letter-spacing: 0;
570
+ line-height: 1.15;
571
+ }
572
+
573
+ .mindcanvas-toolbar-menu__action small {
574
+ color: #64748b;
575
+ font-size: 11px;
576
+ font-weight: 620;
577
+ line-height: 1.3;
578
+ }
579
+
580
+ .mindcanvas-toolbar-menu__guide {
581
+ display: grid;
582
+ grid-template-columns: 28px minmax(0, 1fr);
583
+ align-items: center;
584
+ gap: 9px;
585
+ min-height: 30px;
586
+ padding: 4px 10px;
587
+ border-radius: 6px;
588
+ color: #475569;
589
+ font-size: 11px;
590
+ font-weight: 690;
591
+ line-height: 1.3;
592
+ }
593
+
594
+ .mindcanvas-toolbar-menu__section-label {
595
+ margin-top: 2px;
596
+ padding: 8px 2px 0;
597
+ border-top: 1px solid rgba(226, 232, 240, 0.9);
598
+ color: #64748b;
599
+ font-size: 10px;
600
+ font-weight: 840;
601
+ letter-spacing: 0;
602
+ text-transform: uppercase;
603
+ }
604
+
605
+ .mindcanvas-skill-picker {
606
+ display: grid;
607
+ gap: 6px;
608
+ }
609
+
610
+ .mindcanvas-skill-picker__item {
611
+ display: grid;
612
+ grid-template-columns: minmax(0, 1fr) 18px;
613
+ align-items: center;
614
+ gap: 8px;
615
+ width: 100%;
616
+ padding: 9px 10px;
617
+ border: 1px solid rgba(203, 213, 225, 0.82);
618
+ border-radius: 7px;
619
+ background: rgba(248, 250, 252, 0.92);
620
+ color: #334155;
621
+ text-align: left;
622
+ cursor: pointer;
623
+ }
624
+
625
+ .mindcanvas-skill-picker__item--active,
626
+ .mindcanvas-skill-picker__item:hover,
627
+ .mindcanvas-skill-picker__item:focus-visible {
628
+ border-color: rgba(96, 165, 250, 0.74);
629
+ background: rgba(239, 246, 255, 0.92);
630
+ color: #1d4ed8;
631
+ outline: none;
632
+ }
633
+
634
+ .mindcanvas-skill-picker__item span,
635
+ .mindcanvas-skill-form__summary {
636
+ display: grid;
637
+ gap: 2px;
638
+ min-width: 0;
639
+ }
640
+
641
+ .mindcanvas-skill-picker__item strong,
642
+ .mindcanvas-skill-form__summary strong {
643
+ font-size: 12px;
644
+ font-weight: 850;
645
+ line-height: 1.15;
646
+ }
647
+
648
+ .mindcanvas-skill-picker__item small,
649
+ .mindcanvas-skill-form__summary span {
650
+ color: #64748b;
651
+ font-size: 11px;
652
+ font-weight: 620;
653
+ line-height: 1.35;
654
+ }
655
+
656
+ .mindcanvas-skill-form {
657
+ display: grid;
658
+ gap: 8px;
659
+ padding-top: 7px;
660
+ border-top: 1px solid rgba(226, 232, 240, 0.9);
661
+ }
662
+
663
+ .mindcanvas-skill-form__field {
664
+ display: grid;
665
+ gap: 4px;
666
+ }
667
+
668
+ .mindcanvas-skill-form__field > span {
669
+ color: #475569;
670
+ font-size: 10px;
671
+ font-weight: 820;
672
+ letter-spacing: 0;
673
+ }
674
+
675
+ .mindcanvas-skill-form__field input,
676
+ .mindcanvas-skill-form__field textarea {
677
+ width: 100%;
678
+ min-width: 0;
679
+ border: 1px solid rgba(203, 213, 225, 0.88);
680
+ border-radius: 7px;
681
+ background: rgba(255, 255, 255, 0.92);
682
+ color: #0f172a;
683
+ font-size: 12px;
684
+ font-weight: 650;
685
+ line-height: 1.35;
686
+ outline: none;
687
+ }
688
+
689
+ .mindcanvas-skill-form__field input {
690
+ height: 34px;
691
+ padding: 0 10px;
692
+ }
693
+
694
+ .mindcanvas-skill-form__field textarea {
695
+ resize: vertical;
696
+ min-height: 76px;
697
+ padding: 8px 10px;
698
+ }
699
+
700
+ .mindcanvas-skill-form__field input:focus,
701
+ .mindcanvas-skill-form__field textarea:focus {
702
+ border-color: rgba(59, 130, 246, 0.82);
703
+ box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
704
+ }
705
+
706
+ .mindcanvas-skill-form__status {
707
+ padding: 7px 9px;
708
+ border-radius: 7px;
709
+ background: rgba(248, 250, 252, 0.92);
710
+ color: #475569;
711
+ font-size: 11px;
712
+ font-weight: 700;
713
+ line-height: 1.35;
714
+ }
715
+
716
+ .mindcanvas-skill-form__status--success {
717
+ background: rgba(236, 253, 245, 0.9);
718
+ color: #047857;
719
+ }
720
+
721
+ .mindcanvas-skill-form__status--warning {
722
+ background: rgba(255, 247, 237, 0.92);
723
+ color: #9a3412;
724
+ }
725
+
726
+ .mindcanvas-skill-form__run {
727
+ display: inline-flex;
728
+ align-items: center;
729
+ justify-content: center;
730
+ gap: 7px;
731
+ min-height: 36px;
732
+ border: 1px solid rgba(20, 184, 166, 0.38);
733
+ border-radius: 7px;
734
+ background: #0f8f7f;
735
+ color: white;
736
+ font-size: 12px;
737
+ font-weight: 850;
738
+ cursor: pointer;
739
+ }
740
+
741
+ .mindcanvas-skill-form__run:disabled {
742
+ cursor: not-allowed;
743
+ border-color: rgba(203, 213, 225, 0.84);
744
+ background: #cbd5e1;
745
+ }
746
+
747
+ .mindcanvas-node-toolbar::before,
748
+ .global-ai-input-shell::before {
749
+ content: '';
750
+ position: absolute;
751
+ inset: 1px;
752
+ border-radius: inherit;
753
+ pointer-events: none;
754
+ background:
755
+ radial-gradient(circle at top left, rgba(255, 255, 255, 0.68), transparent 42%),
756
+ linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03));
757
+ opacity: 0.9;
758
+ z-index: 0;
759
+ }
760
+
761
+ .mindcanvas-node-toolbar > *,
762
+ .global-ai-input-shell > * {
763
+ position: relative;
764
+ z-index: 1;
765
+ }
766
+
767
+ .global-ai-input-shell {
768
+ overflow: visible;
769
+ border-color: rgba(203, 213, 225, 0.66) !important;
770
+ background:
771
+ linear-gradient(180deg, rgba(248, 250, 252, 0.62), rgba(226, 232, 240, 0.36)) !important;
772
+ -webkit-backdrop-filter: blur(22px) saturate(1.22);
773
+ backdrop-filter: blur(22px) saturate(1.22);
774
+ box-shadow:
775
+ 0 20px 40px rgba(15, 23, 42, 0.1),
776
+ 0 6px 18px rgba(148, 163, 184, 0.14),
777
+ inset 0 1px 0 rgba(255, 255, 255, 0.88),
778
+ inset 0 0 0 1px rgba(255, 255, 255, 0.16);
779
+ }
780
+
781
+ .global-ai-input-shell:hover,
782
+ .mindcanvas-node-toolbar:hover {
783
+ border-color: rgba(191, 219, 254, 0.74) !important;
784
+ box-shadow:
785
+ 0 24px 44px rgba(15, 23, 42, 0.12),
786
+ 0 8px 20px rgba(125, 211, 252, 0.12),
787
+ inset 0 1px 0 rgba(255, 255, 255, 0.92),
788
+ inset 0 0 0 1px rgba(255, 255, 255, 0.2);
789
+ }
790
+
791
+ .app-sidebar-glass {
792
+ position: fixed !important;
793
+ isolation: isolate;
794
+ overflow: hidden;
795
+ border-right-color: rgba(203, 213, 225, 0.54) !important;
796
+ background:
797
+ linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(241, 245, 249, 0.3)) !important;
798
+ -webkit-backdrop-filter: blur(18px) saturate(1.16);
799
+ backdrop-filter: blur(18px) saturate(1.16);
800
+ box-shadow:
801
+ 0 10px 24px rgba(15, 23, 42, 0.05),
802
+ 0 2px 10px rgba(148, 163, 184, 0.1),
803
+ inset -1px 0 0 rgba(255, 255, 255, 0.3),
804
+ inset 0 1px 0 rgba(255, 255, 255, 0.7);
805
+ }
806
+
807
+ .mindcanvas-tabbar-shell .canvas-tab-bar {
808
+ position: relative;
809
+ isolation: isolate;
810
+ overflow: hidden;
811
+ }
812
+
813
+ .mindcanvas-tabbar-shell .canvas-tab-bar {
814
+ background:
815
+ linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(241, 245, 249, 0.3)) !important;
816
+ border-bottom-color: rgba(203, 213, 225, 0.54) !important;
817
+ -webkit-backdrop-filter: blur(18px) saturate(1.16);
818
+ backdrop-filter: blur(18px) saturate(1.16);
819
+ box-shadow:
820
+ 0 8px 18px rgba(15, 23, 42, 0.05),
821
+ inset 0 1px 0 rgba(255, 255, 255, 0.76),
822
+ inset 0 -1px 0 rgba(255, 255, 255, 0.16);
823
+ }
824
+
825
+ .app-sidebar-glass::before,
826
+ .mindcanvas-tabbar-shell .canvas-tab-bar::before {
827
+ content: '';
828
+ position: absolute;
829
+ inset: 1px;
830
+ pointer-events: none;
831
+ background:
832
+ radial-gradient(circle at top left, rgba(255, 255, 255, 0.64), transparent 42%),
833
+ linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03));
834
+ opacity: 0.92;
835
+ z-index: 0;
836
+ }
837
+
838
+ .app-sidebar-glass > *,
839
+ .mindcanvas-tabbar-shell .canvas-tab-bar > * {
840
+ position: relative;
841
+ z-index: 1;
842
+ }
843
+
844
+ .app-sidebar-glass .sidebar-icon-btn {
845
+ color: #5f6b7a;
846
+ border: 1px solid transparent;
847
+ background: rgba(255, 255, 255, 0.04);
848
+ }
849
+
850
+ .app-sidebar-glass .sidebar-icon-btn:hover {
851
+ color: #334155;
852
+ border-color: rgba(255, 255, 255, 0.28);
853
+ background: rgba(255, 255, 255, 0.28);
854
+ box-shadow: 0 6px 14px rgba(148, 163, 184, 0.12);
855
+ }
856
+
857
+ .app-sidebar-glass .sidebar-icon-btn.active,
858
+ .app-sidebar-glass .sidebar-icon-btn[aria-current="page"] {
859
+ background: rgba(255, 255, 255, 0.4);
860
+ color: #1d4ed8;
861
+ border-color: rgba(191, 219, 254, 0.44);
862
+ box-shadow:
863
+ 0 6px 14px rgba(59, 130, 246, 0.08),
864
+ inset 0 1px 0 rgba(255, 255, 255, 0.48);
865
+ }
866
+
867
+ .mindcanvas-tabbar-shell .canvas-tab {
868
+ color: #64748b;
869
+ border-right-color: rgba(203, 213, 225, 0.42);
870
+ transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
871
+ }
872
+
873
+ .mindcanvas-tabbar-shell .canvas-tab:hover {
874
+ background: rgba(255, 255, 255, 0.28);
875
+ color: #334155;
876
+ }
877
+
878
+ .mindcanvas-tabbar-shell .canvas-tab.active {
879
+ background: rgba(255, 255, 255, 0.44);
880
+ color: #1d4ed8;
881
+ box-shadow:
882
+ inset 0 -2px 0 rgba(59, 130, 246, 0.86),
883
+ inset 0 1px 0 rgba(255, 255, 255, 0.42);
884
+ }
885
+
886
+ .mindcanvas-tabbar-shell .canvas-tab .close-btn:hover,
887
+ .mindcanvas-tabbar-shell .canvas-tab-new:hover {
888
+ background: rgba(255, 255, 255, 0.28);
889
+ }
890
+
891
+ .mindcanvas-tabbar-shell .canvas-tab-new {
892
+ color: #7c8797;
893
+ }
894
+
895
+ @media (prefers-color-scheme: dark) {
896
+ .mindcanvas-node-toolbar {
897
+ border-color: rgba(71, 85, 105, 0.68) !important;
898
+ background:
899
+ linear-gradient(180deg, rgba(30, 41, 59, 0.62), rgba(15, 23, 42, 0.4)) !important;
900
+ box-shadow:
901
+ 0 14px 26px rgba(2, 6, 23, 0.34),
902
+ 0 24px 44px rgba(2, 6, 23, 0.26),
903
+ 0 2px 4px rgba(2, 6, 23, 0.18),
904
+ inset 0 0 0 1px rgba(148, 163, 184, 0.08);
905
+ }
906
+
907
+ .mindcanvas-ai-task-template-menu {
908
+ border-color: rgba(71, 85, 105, 0.86);
909
+ background: rgba(15, 23, 42, 0.96);
910
+ box-shadow:
911
+ 0 20px 44px rgba(2, 6, 23, 0.34),
912
+ 0 4px 12px rgba(2, 6, 23, 0.22),
913
+ inset 0 1px 0 rgba(255, 255, 255, 0.06);
914
+ }
915
+
916
+ .mindcanvas-ai-task-template-menu__item {
917
+ color: rgba(226, 232, 240, 0.86);
918
+ }
919
+
920
+ .mindcanvas-ai-task-template-menu__item:hover,
921
+ .mindcanvas-ai-task-template-menu__item:focus-visible {
922
+ background: rgba(37, 99, 235, 0.22);
923
+ color: #bfdbfe;
924
+ }
925
+
926
+ .mindcanvas-ai-task-template-menu__hint {
927
+ border-color: rgba(71, 85, 105, 0.82);
928
+ background:
929
+ linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
930
+ box-shadow:
931
+ 0 14px 38px rgba(2, 6, 23, 0.32),
932
+ 0 3px 10px rgba(2, 6, 23, 0.22),
933
+ inset 0 1px 0 rgba(148, 163, 184, 0.16);
934
+ color: rgba(226, 232, 240, 0.86);
935
+ }
936
+
937
+ .mindcanvas-ai-task-template-menu__hint::before {
938
+ border-color: rgba(71, 85, 105, 0.82);
939
+ background: linear-gradient(225deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
940
+ }
941
+
942
+ .mindcanvas-ai-task-template-menu__hint-title {
943
+ color: #f8fafc;
944
+ }
945
+
946
+ .mindcanvas-ai-task-template-menu__hint-description {
947
+ color: rgba(226, 232, 240, 0.78);
948
+ }
949
+
950
+ .mindcanvas-node-toolbar__button--active,
951
+ .mindcanvas-node-toolbar__button--menu[aria-expanded="true"] {
952
+ color: #bfdbfe !important;
953
+ background: rgba(37, 99, 235, 0.24) !important;
954
+ box-shadow:
955
+ 0 8px 18px rgba(2, 6, 23, 0.28),
956
+ inset 0 1px 0 rgba(255, 255, 255, 0.06);
957
+ }
958
+
959
+ .mindcanvas-toolbar-menu {
960
+ border-color: rgba(71, 85, 105, 0.86);
961
+ background: rgba(15, 23, 42, 0.96);
962
+ box-shadow:
963
+ 0 22px 48px rgba(2, 6, 23, 0.38),
964
+ 0 5px 14px rgba(2, 6, 23, 0.24),
965
+ inset 0 1px 0 rgba(255, 255, 255, 0.06);
966
+ }
967
+
968
+ .mindcanvas-toolbar-menu__title {
969
+ color: #f8fafc;
970
+ }
971
+
972
+ .mindcanvas-toolbar-menu__format {
973
+ border-color: rgba(71, 85, 105, 0.78);
974
+ background: rgba(30, 41, 59, 0.74);
975
+ color: rgba(226, 232, 240, 0.88);
976
+ }
977
+
978
+ .mindcanvas-toolbar-menu__format i,
979
+ .mindcanvas-toolbar-menu__action i,
980
+ .mindcanvas-toolbar-menu__guide i {
981
+ color: #93c5fd;
982
+ }
983
+
984
+ .mindcanvas-toolbar-menu__action {
985
+ color: rgba(226, 232, 240, 0.88);
986
+ }
987
+
988
+ .mindcanvas-toolbar-menu__action:hover,
989
+ .mindcanvas-toolbar-menu__action:focus-visible {
990
+ border-color: rgba(96, 165, 250, 0.34);
991
+ background: rgba(37, 99, 235, 0.2);
992
+ color: #bfdbfe;
993
+ }
994
+
995
+ .mindcanvas-toolbar-menu__action--primary {
996
+ border-color: rgba(96, 165, 250, 0.32);
997
+ background: rgba(37, 99, 235, 0.16);
998
+ }
999
+
1000
+ .mindcanvas-toolbar-menu__action small,
1001
+ .mindcanvas-toolbar-menu__guide {
1002
+ color: rgba(203, 213, 225, 0.76);
1003
+ }
1004
+
1005
+ .mindcanvas-toolbar-menu__section-label {
1006
+ border-top-color: rgba(71, 85, 105, 0.78);
1007
+ color: rgba(148, 163, 184, 0.86);
1008
+ }
1009
+
1010
+ .mindcanvas-skill-form {
1011
+ border-top-color: rgba(71, 85, 105, 0.78);
1012
+ }
1013
+
1014
+ .mindcanvas-skill-picker__item {
1015
+ border-color: rgba(71, 85, 105, 0.72);
1016
+ background: rgba(30, 41, 59, 0.72);
1017
+ color: rgba(226, 232, 240, 0.88);
1018
+ }
1019
+
1020
+ .mindcanvas-skill-picker__item--active,
1021
+ .mindcanvas-skill-picker__item:hover,
1022
+ .mindcanvas-skill-picker__item:focus-visible {
1023
+ border-color: rgba(96, 165, 250, 0.42);
1024
+ background: rgba(37, 99, 235, 0.2);
1025
+ color: #bfdbfe;
1026
+ }
1027
+
1028
+ .mindcanvas-skill-picker__item small,
1029
+ .mindcanvas-skill-form__summary span,
1030
+ .mindcanvas-skill-form__field > span {
1031
+ color: rgba(203, 213, 225, 0.76);
1032
+ }
1033
+
1034
+ .mindcanvas-skill-form__field input,
1035
+ .mindcanvas-skill-form__field textarea {
1036
+ border-color: rgba(71, 85, 105, 0.78);
1037
+ background: rgba(15, 23, 42, 0.58);
1038
+ color: #f8fafc;
1039
+ }
1040
+
1041
+ .mindcanvas-skill-form__status {
1042
+ background: rgba(30, 41, 59, 0.74);
1043
+ color: rgba(203, 213, 225, 0.82);
1044
+ }
1045
+
1046
+ .mindcanvas-skill-form__status--success {
1047
+ background: rgba(6, 78, 59, 0.38);
1048
+ color: #6ee7b7;
1049
+ }
1050
+
1051
+ .mindcanvas-skill-form__status--warning {
1052
+ background: rgba(124, 45, 18, 0.32);
1053
+ color: #fdba74;
1054
+ }
1055
+
1056
+ .global-ai-input-shell {
1057
+ border-color: rgba(71, 85, 105, 0.72) !important;
1058
+ background:
1059
+ linear-gradient(180deg, rgba(30, 41, 59, 0.66), rgba(15, 23, 42, 0.44)) !important;
1060
+ box-shadow:
1061
+ 0 14px 26px rgba(2, 6, 23, 0.34),
1062
+ 0 24px 44px rgba(2, 6, 23, 0.26),
1063
+ 0 2px 4px rgba(2, 6, 23, 0.18),
1064
+ inset 0 0 0 1px rgba(148, 163, 184, 0.08);
1065
+ }
1066
+
1067
+ .app-sidebar-glass {
1068
+ border-right-color: rgba(71, 85, 105, 0.52) !important;
1069
+ background:
1070
+ linear-gradient(180deg, rgba(30, 41, 59, 0.56), rgba(15, 23, 42, 0.34)) !important;
1071
+ box-shadow:
1072
+ 0 10px 22px rgba(2, 6, 23, 0.22),
1073
+ 0 18px 34px rgba(2, 6, 23, 0.18),
1074
+ inset -1px 0 0 rgba(148, 163, 184, 0.08),
1075
+ inset 0 1px 0 rgba(255, 255, 255, 0.04);
1076
+ }
1077
+
1078
+ .mindcanvas-tabbar-shell .canvas-tab-bar {
1079
+ background:
1080
+ linear-gradient(180deg, rgba(30, 41, 59, 0.58), rgba(15, 23, 42, 0.34)) !important;
1081
+ border-bottom-color: rgba(71, 85, 105, 0.54) !important;
1082
+ box-shadow:
1083
+ 0 10px 22px rgba(2, 6, 23, 0.18),
1084
+ inset 0 1px 0 rgba(255, 255, 255, 0.04),
1085
+ inset 0 -1px 0 rgba(148, 163, 184, 0.06);
1086
+ }
1087
+
1088
+ .mindcanvas-node-toolbar::before,
1089
+ .global-ai-input-shell::before,
1090
+ .app-sidebar-glass::before,
1091
+ .mindcanvas-tabbar-shell .canvas-tab-bar::before {
1092
+ background:
1093
+ radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 38%),
1094
+ linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
1095
+ opacity: 1;
1096
+ }
1097
+
1098
+ .app-sidebar-glass .sidebar-icon-btn {
1099
+ color: rgba(226, 232, 240, 0.82);
1100
+ background: rgba(15, 23, 42, 0.02);
1101
+ }
1102
+
1103
+ .app-sidebar-glass .sidebar-icon-btn:hover {
1104
+ color: #f8fafc;
1105
+ border-color: rgba(148, 163, 184, 0.16);
1106
+ background: rgba(148, 163, 184, 0.12);
1107
+ box-shadow: 0 8px 16px rgba(2, 6, 23, 0.16);
1108
+ }
1109
+
1110
+ .app-sidebar-glass .sidebar-icon-btn.active,
1111
+ .app-sidebar-glass .sidebar-icon-btn[aria-current="page"] {
1112
+ background: rgba(59, 130, 246, 0.14);
1113
+ border-color: rgba(96, 165, 250, 0.18);
1114
+ color: #93c5fd;
1115
+ box-shadow:
1116
+ 0 8px 16px rgba(2, 6, 23, 0.18),
1117
+ inset 0 1px 0 rgba(255, 255, 255, 0.04);
1118
+ }
1119
+
1120
+ .mindcanvas-tabbar-shell .canvas-tab {
1121
+ color: rgba(226, 232, 240, 0.74);
1122
+ border-right-color: rgba(71, 85, 105, 0.4);
1123
+ }
1124
+
1125
+ .mindcanvas-tabbar-shell .canvas-tab:hover {
1126
+ background: rgba(148, 163, 184, 0.12);
1127
+ color: #f8fafc;
1128
+ }
1129
+
1130
+ .mindcanvas-tabbar-shell .canvas-tab.active {
1131
+ background: rgba(148, 163, 184, 0.16);
1132
+ color: #93c5fd;
1133
+ box-shadow:
1134
+ inset 0 -2px 0 rgba(96, 165, 250, 0.92),
1135
+ inset 0 1px 0 rgba(255, 255, 255, 0.03);
1136
+ }
1137
+
1138
+ .mindcanvas-tabbar-shell .canvas-tab .close-btn:hover,
1139
+ .mindcanvas-tabbar-shell .canvas-tab-new:hover {
1140
+ background: rgba(148, 163, 184, 0.14);
1141
+ }
1142
+
1143
+ .mindcanvas-tabbar-shell .canvas-tab-new {
1144
+ color: rgba(226, 232, 240, 0.6);
1145
+ }
1146
+ }
1147
+
1148
+ /* ▼▼▼ [CRITICAL] Zoom/Drag 중 포인터 이벤트 비활성화 ▼▼▼ */
1149
+ /* Hover raycast is already short-circuited in JS during pan, so keep CSS hover/focus
1150
+ intact while middle-button panning. We still suppress hit-testing for zoom/drag. */
1151
+ #css3d-dom-wrapper.is-dragging,
1152
+ body.is-zooming #css3d-dom-wrapper {
1153
+ pointer-events: none !important;
1154
+ }
1155
+
1156
+ html.mindcanvas-browser-selection-locked,
1157
+ body.mindcanvas-browser-selection-locked,
1158
+ body.is-node-dragging,
1159
+ body.is-resizing,
1160
+ body.is-zooming {
1161
+ user-select: none !important;
1162
+ -webkit-user-select: none !important;
1163
+ }
1164
+
1165
+ body.mindcanvas-browser-selection-locked *,
1166
+ body.is-node-dragging *,
1167
+ body.is-resizing *,
1168
+ #css3d-dom-wrapper.is-panning,
1169
+ #css3d-dom-wrapper.is-panning *,
1170
+ body.is-zooming #css3d-dom-wrapper *,
1171
+ #css3d-dom-wrapper.is-dragging,
1172
+ #css3d-dom-wrapper.is-dragging *,
1173
+ .multi-select-overlay,
1174
+ .multi-select-overlay * {
1175
+ user-select: none !important;
1176
+ -webkit-user-select: none !important;
1177
+ }
1178
+
1179
+ body.mindcanvas-browser-selection-locked .mind-map-text-overlay.mind-map-text-overlay-selectable .mind-map-text-overlay-fragment,
1180
+ body.mindcanvas-browser-selection-locked .mind-map-text-overlay.mind-map-text-overlay-selectable .mind-map-text-overlay-fragment *,
1181
+ body.mindcanvas-browser-selection-locked .mind-map-text-overlay-v2-card,
1182
+ body.mindcanvas-browser-selection-locked .mind-map-text-overlay-v2-card *,
1183
+ body.is-node-dragging .mind-map-text-overlay.mind-map-text-overlay-selectable .mind-map-text-overlay-fragment,
1184
+ body.is-node-dragging .mind-map-text-overlay.mind-map-text-overlay-selectable .mind-map-text-overlay-fragment *,
1185
+ body.is-node-dragging .mind-map-text-overlay-v2-card,
1186
+ body.is-node-dragging .mind-map-text-overlay-v2-card *,
1187
+ body.is-resizing .mind-map-text-overlay.mind-map-text-overlay-selectable .mind-map-text-overlay-fragment,
1188
+ body.is-resizing .mind-map-text-overlay.mind-map-text-overlay-selectable .mind-map-text-overlay-fragment *,
1189
+ body.is-resizing .mind-map-text-overlay-v2-card,
1190
+ body.is-resizing .mind-map-text-overlay-v2-card *,
1191
+ body.is-zooming .mind-map-text-overlay.mind-map-text-overlay-selectable .mind-map-text-overlay-fragment,
1192
+ body.is-zooming .mind-map-text-overlay.mind-map-text-overlay-selectable .mind-map-text-overlay-fragment *,
1193
+ #css3d-dom-wrapper.is-panning .mind-map-text-overlay.mind-map-text-overlay-selectable .mind-map-text-overlay-fragment,
1194
+ #css3d-dom-wrapper.is-panning .mind-map-text-overlay.mind-map-text-overlay-selectable .mind-map-text-overlay-fragment * {
1195
+ user-select: none !important;
1196
+ -webkit-user-select: none !important;
1197
+ cursor: inherit !important;
1198
+ }
1199
+
1200
+ /* 노드 드래그 중 grabbing 커서 강제 (CSS3D DOM 요소가 덮어씌우는 것 방지) */
1201
+ body.is-node-dragging,
1202
+ body.is-node-dragging * {
1203
+ cursor: grabbing !important;
1204
+ }
1205
+
1206
+ /* ▲▲▲ [CRITICAL] ▲▲▲ */
1207
+
1208
+ /* ▼▼▼ [Perf] CSS3D 노드 최소화된 box-shadow ▼▼▼ */
1209
+ /* box-shadow 대신 border로 시각적 테두리 구현 (GPU 부담 감소) */
1210
+ .map-node-note {
1211
+ /* 기본: border만 사용, shadow 제거 */
1212
+ box-shadow: none;
1213
+ /* 노트 노드는 선택 시 드래그 이동이므로 grab 커서 (편집 모드에서만 text) */
1214
+ cursor: grab !important;
1215
+ }
1216
+
1217
+ .map-node-memo {
1218
+ cursor: grab !important;
1219
+ }
1220
+
1221
+ .map-node-note:focus-within {
1222
+ cursor: text !important;
1223
+ }
1224
+
1225
+ .map-node-note.selected {
1226
+ /* 선택 시에만 최소한의 glow */
1227
+ box-shadow: 0 0 0 2px rgba(var(--mind-node-selection-glow-rgb), 0.14);
1228
+ }
1229
+
1230
+ /* ▲▲▲ [Perf] ▲▲▲ */
1231
+
1232
+ /* Mind map selection highlight overrides (keep in sync with editing theme) */
1233
+
1234
+ .map-node-bubble.selected {
1235
+ border-color: var(--mind-node-selection-edge) !important;
1236
+ box-shadow: 0 0 0 2px rgba(var(--mind-node-selection-glow-rgb), 0.18),
1237
+ 0 0 22px rgba(var(--mind-node-selection-glow-rgb), 0.18),
1238
+ 0 10px 15px -3px rgba(0, 0, 0, 0.2) !important;
1239
+ overflow: hidden !important;
1240
+ }
1241
+
1242
+ .map-node-note.selected,
1243
+ .map-node-note:focus-within {
1244
+ border-color: var(--mind-node-selection-edge) !important;
1245
+ box-shadow:
1246
+ 0 0 18px 0 rgba(var(--mind-node-selection-glow-rgb), 0.24),
1247
+ 0 0 32px 0 rgba(var(--mind-node-selection-glow-soft-rgb), 0.16) !important;
1248
+ overflow: hidden !important;
1249
+ }
1250
+
1251
+ /* Note/Image hard edge lives on the inner CSS3D card in app.css.
1252
+ Keep the soft wrapper shadow, but strip the dark stroke from the card itself. */
1253
+ .map-node-note,
1254
+ .map-node-note.selected,
1255
+ .map-node-note:focus-within,
1256
+ .map-node-image-container,
1257
+ .map-node-image-container.selected {
1258
+ border: none !important;
1259
+ border-color: transparent !important;
1260
+ outline: none !important;
1261
+ -webkit-box-shadow: none !important;
1262
+ box-shadow: none !important;
1263
+ }
1264
+
1265
+ .css3d-resolution-wrapper.node-type-note {
1266
+ -webkit-box-shadow:
1267
+ 0 0 6px rgba(15, 23, 42, 0.25),
1268
+ 0 0 16px rgba(15, 23, 42, 0.18),
1269
+ 0 0 30px rgba(15, 23, 42, 0.12),
1270
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1271
+ box-shadow:
1272
+ 0 0 6px rgba(15, 23, 42, 0.25),
1273
+ 0 0 16px rgba(15, 23, 42, 0.18),
1274
+ 0 0 30px rgba(15, 23, 42, 0.12),
1275
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1276
+ }
1277
+
1278
+ .css3d-resolution-wrapper.selected {
1279
+ outline: 1px solid rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.24) !important;
1280
+ outline-offset: 1px;
1281
+ -webkit-box-shadow:
1282
+ 0 0 4px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.56),
1283
+ 0 0 12px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.44),
1284
+ 0 0 28px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.32),
1285
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft, 191, 219, 254), 0.26) !important;
1286
+ box-shadow:
1287
+ 0 0 4px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.56),
1288
+ 0 0 12px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.44),
1289
+ 0 0 28px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.32),
1290
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft, 191, 219, 254), 0.26) !important;
1291
+ -webkit-filter: saturate(1.08) !important;
1292
+ filter: saturate(1.08) !important;
1293
+ }
1294
+
1295
+ .css3d-resolution-wrapper.selection-style-agent.selected {
1296
+ outline: 1px solid rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.24) !important;
1297
+ outline-offset: 1px;
1298
+ -webkit-box-shadow:
1299
+ 0 0 4px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.56),
1300
+ 0 0 12px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.44),
1301
+ 0 0 28px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.32),
1302
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft, 191, 219, 254), 0.26) !important;
1303
+ box-shadow:
1304
+ 0 0 4px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.56),
1305
+ 0 0 12px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.44),
1306
+ 0 0 28px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.32),
1307
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft, 191, 219, 254), 0.26) !important;
1308
+ -webkit-filter: saturate(1.08) !important;
1309
+ filter: saturate(1.08) !important;
1310
+ }
1311
+
1312
+ /* During resize, keep the crisp selection edge but drop the large blur shadow.
1313
+ The blur bleeds underneath overlapping siblings and looks like a second glow. */
1314
+ body.is-resizing .css3d-resolution-wrapper.selected,
1315
+ body.is-resizing .css3d-resolution-wrapper.node-type-note.selected,
1316
+ body.is-resizing .css3d-resolution-wrapper.node-type-image.selected,
1317
+ body.is-resizing .css3d-resolution-wrapper.node-type-video.selected,
1318
+ body.is-resizing .css3d-resolution-wrapper.node-type-embed.selected {
1319
+ outline: 1px solid rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.34) !important;
1320
+ outline-offset: 1px;
1321
+ -webkit-box-shadow: none !important;
1322
+ box-shadow: none !important;
1323
+ -webkit-filter: none !important;
1324
+ filter: none !important;
1325
+ }
1326
+
1327
+ .css3d-resolution-wrapper.node-type-note.selected {
1328
+ -webkit-box-shadow:
1329
+ 0 0 4px rgba(var(--node-selection-glow-rgb), 0.56),
1330
+ 0 0 12px rgba(var(--node-selection-glow-rgb), 0.44),
1331
+ 0 0 28px rgba(var(--node-selection-glow-rgb), 0.32),
1332
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft), 0.26) !important;
1333
+ box-shadow:
1334
+ 0 0 4px rgba(var(--node-selection-glow-rgb), 0.56),
1335
+ 0 0 12px rgba(var(--node-selection-glow-rgb), 0.44),
1336
+ 0 0 28px rgba(var(--node-selection-glow-rgb), 0.32),
1337
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft), 0.26) !important;
1338
+ -webkit-filter: saturate(1.08) !important;
1339
+ filter: saturate(1.08) !important;
1340
+ }
1341
+
1342
+ html.mindcanvas-platform-apple .css3d-resolution-wrapper.selected,
1343
+ html.mindcanvas-platform-apple .css3d-resolution-wrapper.selection-style-agent.selected,
1344
+ html.mindcanvas-platform-apple .css3d-resolution-wrapper.node-type-note.selected,
1345
+ html.mindcanvas-platform-apple .css3d-resolution-wrapper.node-type-image.selected,
1346
+ html.mindcanvas-platform-apple .css3d-resolution-wrapper.node-type-video.selected,
1347
+ html.mindcanvas-platform-apple .css3d-resolution-wrapper.node-type-embed.selected,
1348
+ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-related:not(.selected) {
1349
+ -webkit-filter: none !important;
1350
+ filter: none !important;
1351
+ }
1352
+
1353
+ .css3d-resolution-wrapper.node-type-image {
1354
+ -webkit-box-shadow:
1355
+ 0 0 6px rgba(15, 23, 42, 0.25),
1356
+ 0 0 16px rgba(15, 23, 42, 0.18),
1357
+ 0 0 30px rgba(15, 23, 42, 0.12),
1358
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1359
+ box-shadow:
1360
+ 0 0 6px rgba(15, 23, 42, 0.25),
1361
+ 0 0 16px rgba(15, 23, 42, 0.18),
1362
+ 0 0 30px rgba(15, 23, 42, 0.12),
1363
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1364
+ }
1365
+
1366
+ .css3d-resolution-wrapper.node-type-video,
1367
+ .css3d-resolution-wrapper.node-type-embed {
1368
+ -webkit-box-shadow:
1369
+ 0 0 6px rgba(15, 23, 42, 0.25),
1370
+ 0 0 16px rgba(15, 23, 42, 0.18),
1371
+ 0 0 30px rgba(15, 23, 42, 0.12),
1372
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1373
+ box-shadow:
1374
+ 0 0 6px rgba(15, 23, 42, 0.25),
1375
+ 0 0 16px rgba(15, 23, 42, 0.18),
1376
+ 0 0 30px rgba(15, 23, 42, 0.12),
1377
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1378
+ }
1379
+
1380
+ .css3d-resolution-wrapper.node-type-image.selected {
1381
+ -webkit-box-shadow:
1382
+ 0 0 4px rgba(var(--node-selection-glow-rgb), 0.56),
1383
+ 0 0 12px rgba(var(--node-selection-glow-rgb), 0.44),
1384
+ 0 0 28px rgba(var(--node-selection-glow-rgb), 0.32),
1385
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft), 0.26) !important;
1386
+ box-shadow:
1387
+ 0 0 4px rgba(var(--node-selection-glow-rgb), 0.56),
1388
+ 0 0 12px rgba(var(--node-selection-glow-rgb), 0.44),
1389
+ 0 0 28px rgba(var(--node-selection-glow-rgb), 0.32),
1390
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft), 0.26) !important;
1391
+ -webkit-filter: saturate(1.08) !important;
1392
+ filter: saturate(1.08) !important;
1393
+ }
1394
+
1395
+ .css3d-resolution-wrapper.node-type-video.selected,
1396
+ .css3d-resolution-wrapper.node-type-embed.selected {
1397
+ outline: 1px solid rgba(var(--node-selection-glow-rgb), 0.24) !important;
1398
+ outline-offset: 1px;
1399
+ -webkit-box-shadow:
1400
+ 0 0 6px rgba(15, 23, 42, 0.25),
1401
+ 0 0 16px rgba(15, 23, 42, 0.18),
1402
+ 0 0 30px rgba(15, 23, 42, 0.12),
1403
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1404
+ box-shadow:
1405
+ 0 0 6px rgba(15, 23, 42, 0.25),
1406
+ 0 0 16px rgba(15, 23, 42, 0.18),
1407
+ 0 0 30px rgba(15, 23, 42, 0.12),
1408
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1409
+ -webkit-filter: none !important;
1410
+ filter: none !important;
1411
+ }
1412
+
1413
+ .css3d-resolution-wrapper.node-type-video.selected-media-safe,
1414
+ .css3d-resolution-wrapper.node-type-embed.selected-media-safe {
1415
+ outline: none !important;
1416
+ -webkit-box-shadow:
1417
+ 0 0 6px rgba(15, 23, 42, 0.25),
1418
+ 0 0 16px rgba(15, 23, 42, 0.18),
1419
+ 0 0 30px rgba(15, 23, 42, 0.12),
1420
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1421
+ box-shadow:
1422
+ 0 0 6px rgba(15, 23, 42, 0.25),
1423
+ 0 0 16px rgba(15, 23, 42, 0.18),
1424
+ 0 0 30px rgba(15, 23, 42, 0.12),
1425
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1426
+ -webkit-filter: none !important;
1427
+ filter: none !important;
1428
+ }
1429
+
1430
+ .css3d-resolution-wrapper.node-type-video.selected-media-safe .map-node.selected,
1431
+ .css3d-resolution-wrapper.node-type-embed.selected-media-safe .map-node.selected {
1432
+ outline: 1px solid rgba(var(--node-selection-glow-rgb), 0.82) !important;
1433
+ outline-offset: -1px;
1434
+ -webkit-box-shadow:
1435
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb), 0.18) inset,
1436
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb-soft), 0.12) !important;
1437
+ box-shadow:
1438
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb), 0.18) inset,
1439
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb-soft), 0.12) !important;
1440
+ }
1441
+
1442
+ .map-node-memo.selected,
1443
+ .map-node-memo:focus-within {
1444
+ overflow: hidden !important;
1445
+ }
1446
+
1447
+ .map-node-code.selected,
1448
+ .map-node-code:focus-within {
1449
+ border-color: var(--mind-node-selection-edge) !important;
1450
+ box-shadow:
1451
+ 0 0 18px 0 rgba(var(--mind-node-selection-glow-rgb), 0.24),
1452
+ 0 0 32px 0 rgba(var(--mind-node-selection-glow-soft-rgb), 0.16) !important;
1453
+ overflow: hidden !important;
1454
+ }
1455
+
1456
+ .map-node-agent:not(.map-node-memo).selected,
1457
+ .map-node-agent:not(.map-node-memo):focus-within {
1458
+ border-color: rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.82) !important;
1459
+ box-shadow:
1460
+ 0 0 18px 0 rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.24),
1461
+ 0 0 32px 0 rgba(var(--node-selection-glow-rgb-soft, 191, 219, 254), 0.16) !important;
1462
+ overflow: visible !important;
1463
+ }
1464
+
1465
+ /* Use the wrapper as the single source of truth for CSS3D selection glow.
1466
+ Agent wrappers intentionally mirror the edit-state glow so selection/editing
1467
+ keep the same visual signature even when overlays swap in and out. */
1468
+ .css3d-resolution-wrapper.selected .map-node-bubble.selected,
1469
+ .css3d-resolution-wrapper.selected .map-node-code.selected,
1470
+ .css3d-resolution-wrapper.selected .map-node-code:focus-within,
1471
+ .css3d-resolution-wrapper.selected .map-node-agent.selected,
1472
+ .css3d-resolution-wrapper.selected .map-node-agent:focus-within {
1473
+ -webkit-box-shadow: none !important;
1474
+ box-shadow: none !important;
1475
+ }
1476
+
1477
+ .map-node.map-node-agent,
1478
+ .map-node-memo.map-node-agent {
1479
+ contain: layout style !important;
1480
+ content-visibility: visible !important;
1481
+ contain-intrinsic-size: auto !important;
1482
+ }
1483
+
1484
+ .map-node-memo.map-node-agent.selected,
1485
+ .map-node-memo.map-node-agent:focus-within {
1486
+ overflow: visible !important;
1487
+ }
1488
+
1489
+ /* Enable pointer events only when a note node is selected (CSS3D wrapper) */
1490
+ .css3d-resolution-wrapper.selected {
1491
+ pointer-events: auto !important;
1492
+ }
1493
+
1494
+ .css3d-resolution-wrapper.selected,
1495
+ .map-node-bubble.selected,
1496
+ .map-node-note.selected,
1497
+ .map-node-note:focus-within,
1498
+ .map-node-memo.selected,
1499
+ .map-node-memo:focus-within,
1500
+ .map-node-code.selected,
1501
+ .map-node-code:focus-within,
1502
+ .map-node-agent.selected,
1503
+ .map-node-agent:focus-within {
1504
+ -webkit-transition: none !important;
1505
+ transition: none !important;
1506
+ }
1507
+
1508
+ .css3d-resolution-wrapper.selected .map-node-note,
1509
+ .css3d-resolution-wrapper.selected .map-node-note *,
1510
+ .css3d-resolution-wrapper.selected .map-node-memo,
1511
+ .css3d-resolution-wrapper.selected .map-node-memo * {
1512
+ pointer-events: auto !important;
1513
+ }
1514
+
1515
+
1516
+ /* Hide scrollbars after editing when selected but not actively focused */
1517
+ .map-node-note.selected:not(:focus-within) .note-textarea {
1518
+ overflow: hidden !important;
1519
+ scrollbar-width: none !important;
1520
+ cursor: grab !important;
1521
+ }
1522
+
1523
+ .map-node-note.selected:not(:focus-within) .note-textarea::-webkit-scrollbar {
1524
+ width: 0 !important;
1525
+ height: 0 !important;
1526
+ }
1527
+
1528
+ .map-node-memo .map-node-memo__body,
1529
+ .map-node-memo .map-node-memo__title {
1530
+ pointer-events: auto;
1531
+ }
1532
+
1533
+ .map-node-file.selected {
1534
+ border-color: var(--mind-node-selection-edge) !important;
1535
+ }
1536
+
1537
+ /* Sticky LOD cache: keep DOM, toggle visibility via class */
1538
+ .node-container.lod-low .markdown-content {
1539
+ display: none !important;
1540
+ }
1541
+
1542
+ .node-container.lod-low .simple-content {
1543
+ display: block !important;
1544
+ }
1545
+
1546
+ .node-container.lod-high .simple-content {
1547
+ display: none !important;
1548
+ }
1549
+
1550
+ .node-container.lod-high .markdown-content {
1551
+ display: block !important;
1552
+ }
1553
+
1554
+ .css3d-resolution-wrapper.lod-low .markdown-content,
1555
+ .css3d-resolution-wrapper.lod-low .map-node-memo__body,
1556
+ .css3d-resolution-wrapper.lod-low .map-node-memo__body-view,
1557
+ .css3d-resolution-wrapper.lod-low .map-node-memo__agent-plan-body,
1558
+ .css3d-resolution-wrapper.lod-low .map-node-memo__agent-console-body,
1559
+ .css3d-resolution-wrapper.lod-low .node-response,
1560
+ .css3d-resolution-wrapper.lod-low .note-content,
1561
+ .css3d-resolution-wrapper.lod-low .code-content,
1562
+ .css3d-resolution-wrapper.lod-low .text-content {
1563
+ display: none !important;
1564
+ }
1565
+
1566
+ .css3d-resolution-wrapper.lod-low .simple-content {
1567
+ display: block !important;
1568
+ }
1569
+
1570
+ .css3d-resolution-wrapper.lod-low {
1571
+ --mind-node-detail-opacity: 0.72;
1572
+ }
1573
+
1574
+ .mind-map-text-overlay-v2-layer {
1575
+ position: absolute;
1576
+ inset: 0;
1577
+ overflow: hidden;
1578
+ pointer-events: none;
1579
+ z-index: 20;
1580
+ contain: layout style paint;
1581
+ }
1582
+
1583
+ .mind-map-text-overlay-v2-layer.is-motion-hint {
1584
+ will-change: transform;
1585
+ backface-visibility: hidden;
1586
+ -webkit-backface-visibility: hidden;
1587
+ }
1588
+
1589
+ .mind-map-text-overlay-v2-card {
1590
+ position: absolute;
1591
+ display: none;
1592
+ box-sizing: border-box;
1593
+ pointer-events: auto;
1594
+ transform-origin: 0 0;
1595
+ -webkit-font-smoothing: antialiased;
1596
+ -moz-osx-font-smoothing: grayscale;
1597
+ text-rendering: optimizeLegibility;
1598
+ contain: layout style paint;
1599
+ }
1600
+
1601
+ .mind-map-text-overlay-v2-card[data-content-type="image"],
1602
+ .mind-map-text-overlay-v2-card[data-content-type="video"],
1603
+ .mind-map-text-overlay-v2-card[data-content-type="embed"] {
1604
+ display: none !important;
1605
+ pointer-events: none !important;
1606
+ background: transparent !important;
1607
+ background-color: transparent !important;
1608
+ box-shadow: none !important;
1609
+ }
1610
+
1611
+ .mind-map-text-overlay-v2-card.is-selection {
1612
+ z-index: 8;
1613
+ }
1614
+
1615
+ .mind-map-text-overlay-v2-card.is-editing {
1616
+ z-index: 12;
1617
+ }
1618
+
1619
+ .mind-map-text-overlay-v2-card.is-passive {
1620
+ pointer-events: none;
1621
+ /* CSS3D owns card background/edge/glow; passive overlay only contributes
1622
+ readable text fragments and must never paint over the CSS3D chrome. */
1623
+ contain: layout style;
1624
+ overflow: visible;
1625
+ background: transparent !important;
1626
+ background-color: transparent !important;
1627
+ background-image: none !important;
1628
+ }
1629
+
1630
+ .mind-map-text-overlay-v2-card.is-passive .mind-map-text-overlay-v2-body {
1631
+ pointer-events: auto;
1632
+ text-rendering: optimizeLegibility;
1633
+ -webkit-font-smoothing: antialiased;
1634
+ -moz-osx-font-smoothing: grayscale;
1635
+ }
1636
+
1637
+ body.is-panning .mind-map-text-overlay-v2-card.is-passive .mind-map-text-overlay-v2-body {
1638
+ pointer-events: none !important;
1639
+ }
1640
+
1641
+ .mind-map-text-overlay-v2-shell {
1642
+ width: 100%;
1643
+ height: 100%;
1644
+ box-sizing: border-box;
1645
+ overflow: hidden;
1646
+ background: rgba(255, 255, 255, 0.985);
1647
+ color: #1f2937;
1648
+ --mind-map-text-scrollbar-size: 8px;
1649
+ --mind-map-text-scrollbar-size-x: 8px;
1650
+ --mind-map-text-scrollbar-size-y: 8px;
1651
+ --mind-map-text-scrollbar-gutter: 14px;
1652
+ }
1653
+
1654
+ .mind-map-text-overlay-v2-source-clone {
1655
+ width: 100%;
1656
+ height: 100%;
1657
+ box-sizing: border-box;
1658
+ --mind-map-text-scrollbar-size: 8px;
1659
+ --mind-map-text-scrollbar-size-x: 8px;
1660
+ --mind-map-text-scrollbar-size-y: 8px;
1661
+ --mind-map-text-scrollbar-gutter: 14px;
1662
+ }
1663
+
1664
+ .mind-map-text-overlay-v2-content-shell {
1665
+ position: relative;
1666
+ overflow: visible;
1667
+ pointer-events: none;
1668
+ background: transparent !important;
1669
+ border: 0 !important;
1670
+ box-shadow: none !important;
1671
+ outline: none !important;
1672
+ }
1673
+
1674
+ .mind-map-text-overlay-v2-fragment {
1675
+ position: absolute;
1676
+ background: transparent !important;
1677
+ box-shadow: none !important;
1678
+ }
1679
+
1680
+ .mind-map-text-overlay-v2-readonly-memo-surface,
1681
+ .mind-map-text-overlay-v2-readonly-memo-surface .map-node-memo__shell,
1682
+ .mind-map-text-overlay-v2-readonly-memo-surface .map-node-memo__header,
1683
+ .mind-map-text-overlay-v2-readonly-memo-surface .map-node-memo__icon-wrap,
1684
+ .mind-map-text-overlay-v2-readonly-memo-surface .map-node-memo__title-wrap,
1685
+ .mind-map-text-overlay-v2-readonly-memo-surface .map-node-memo__title,
1686
+ .mind-map-text-overlay-v2-readonly-memo-surface .map-node-memo__body-view,
1687
+ .mind-map-text-overlay-v2-readonly-memo-surface .map-node-memo__agent-results {
1688
+ background: transparent !important;
1689
+ background-color: transparent !important;
1690
+ background-image: none !important;
1691
+ border-color: transparent !important;
1692
+ box-shadow: none !important;
1693
+ -webkit-box-shadow: none !important;
1694
+ outline: none !important;
1695
+ filter: none !important;
1696
+ -webkit-filter: none !important;
1697
+ backdrop-filter: none !important;
1698
+ -webkit-backdrop-filter: none !important;
1699
+ }
1700
+
1701
+ .mind-map-text-overlay-v2-readonly-memo-surface .map-node-memo__header {
1702
+ display: flex !important;
1703
+ align-items: center !important;
1704
+ gap: 12px !important;
1705
+ min-width: 0 !important;
1706
+ }
1707
+
1708
+ .mind-map-text-overlay-v2-readonly-memo-surface .map-node-memo__icon-wrap {
1709
+ display: flex !important;
1710
+ flex: 0 0 auto !important;
1711
+ align-items: center !important;
1712
+ justify-content: center !important;
1713
+ }
1714
+
1715
+ .mind-map-text-overlay-v2-readonly-memo-surface .map-node-memo__title-wrap {
1716
+ display: flex !important;
1717
+ flex: 1 1 auto !important;
1718
+ min-width: 0 !important;
1719
+ }
1720
+
1721
+ .mind-map-text-overlay-v2-readonly-memo-surface .map-node-memo__title {
1722
+ width: 100% !important;
1723
+ min-width: 0 !important;
1724
+ flex: 1 1 auto !important;
1725
+ }
1726
+
1727
+ .mind-map-text-overlay-v2-shell.type-text,
1728
+ .mind-map-text-overlay-v2-shell.type-markdown {
1729
+ display: grid;
1730
+ grid-template-rows: auto 1fr;
1731
+ gap: 10px;
1732
+ padding: 18px;
1733
+ border: 3px solid #374151;
1734
+ border-radius: 18px;
1735
+ }
1736
+
1737
+ .mind-map-text-overlay-v2-shell.type-note {
1738
+ display: block;
1739
+ padding: 16px;
1740
+ border: none;
1741
+ border-radius: 18px;
1742
+ }
1743
+
1744
+ .mind-map-text-overlay-v2-shell.type-memo {
1745
+ display: grid;
1746
+ grid-template-rows: auto 1fr;
1747
+ gap: 12px;
1748
+ padding: 18px;
1749
+ border-radius: 30px;
1750
+ border: 2px solid rgba(55, 65, 81, 0.16);
1751
+ box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
1752
+ }
1753
+
1754
+ .mind-map-text-overlay-v2-title,
1755
+ .mind-map-text-overlay-v2-memo-title {
1756
+ font-weight: 700;
1757
+ line-height: 1.2;
1758
+ color: #111827;
1759
+ }
1760
+
1761
+ .mind-map-text-overlay-v2-memo-title {
1762
+ width: 100%;
1763
+ border: none;
1764
+ outline: none;
1765
+ background: transparent;
1766
+ font-size: 1.05rem;
1767
+ padding: 0;
1768
+ }
1769
+
1770
+ .mind-map-text-overlay-v2-body {
1771
+ min-height: 0;
1772
+ height: 100%;
1773
+ overflow: auto;
1774
+ padding-right: var(--mind-map-text-scrollbar-gutter);
1775
+ }
1776
+
1777
+ .mind-map-text-overlay,
1778
+ .css3d-resolution-wrapper {
1779
+ --mind-map-text-scrollbar-size: 8px;
1780
+ --mind-map-text-scrollbar-size-x: 8px;
1781
+ --mind-map-text-scrollbar-size-y: 8px;
1782
+ --mind-map-text-scrollbar-gutter: 14px;
1783
+ }
1784
+
1785
+ .css3d-resolution-wrapper .thin-scrollbar,
1786
+ .css3d-resolution-wrapper .note-textarea,
1787
+ .css3d-resolution-wrapper .note-content,
1788
+ .css3d-resolution-wrapper .markdown-body,
1789
+ .css3d-resolution-wrapper .prose,
1790
+ .css3d-resolution-wrapper .code-body,
1791
+ .css3d-resolution-wrapper .map-node-memo__body,
1792
+ .css3d-resolution-wrapper .map-node-memo__body-view,
1793
+ .mind-map-text-overlay .thin-scrollbar,
1794
+ .mind-map-text-overlay .note-textarea,
1795
+ .mind-map-text-overlay .note-content,
1796
+ .mind-map-text-overlay .markdown-body,
1797
+ .mind-map-text-overlay .prose,
1798
+ .mind-map-text-overlay .code-body,
1799
+ .mind-map-text-overlay .map-node-memo__body,
1800
+ .mind-map-text-overlay .map-node-memo__body-view,
1801
+ .mind-map-text-overlay-v2-card .thin-scrollbar,
1802
+ .mind-map-text-overlay-v2-card .note-textarea,
1803
+ .mind-map-text-overlay-v2-card .note-content,
1804
+ .mind-map-text-overlay-v2-card .markdown-body,
1805
+ .mind-map-text-overlay-v2-card .prose,
1806
+ .mind-map-text-overlay-v2-card .code-body,
1807
+ .mind-map-text-overlay-v2-card .map-node-memo__body,
1808
+ .mind-map-text-overlay-v2-card .map-node-memo__body-view {
1809
+ box-sizing: border-box;
1810
+ scrollbar-gutter: stable;
1811
+ padding-right: var(--mind-map-text-scrollbar-gutter) !important;
1812
+ }
1813
+
1814
+ .css3d-resolution-wrapper.node-type-note .map-node-note,
1815
+ .css3d-resolution-wrapper .map-node-note {
1816
+ min-height: 0 !important;
1817
+ }
1818
+
1819
+ .css3d-resolution-wrapper.node-type-note .note-content,
1820
+ .css3d-resolution-wrapper .map-node-note .note-content,
1821
+ .css3d-resolution-wrapper .map-node-note .node-response.note-content {
1822
+ display: block !important;
1823
+ flex: 1 1 auto !important;
1824
+ min-height: 0 !important;
1825
+ height: 100% !important;
1826
+ max-height: 100% !important;
1827
+ overflow-x: hidden !important;
1828
+ overflow-y: auto !important;
1829
+ scrollbar-gutter: stable !important;
1830
+ scrollbar-width: thin !important;
1831
+ scrollbar-color: rgba(0, 0, 0, 0.2) transparent !important;
1832
+ overscroll-behavior: contain !important;
1833
+ pointer-events: auto !important;
1834
+ }
1835
+
1836
+ .css3d-resolution-wrapper .note-textarea,
1837
+ .mind-map-text-overlay .note-textarea,
1838
+ .mind-map-text-overlay-v2-card .note-textarea,
1839
+ .mind-map-edit-overlay-card .note-textarea {
1840
+ text-decoration: none !important;
1841
+ text-decoration-skip-ink: none !important;
1842
+ text-underline-offset: 0 !important;
1843
+ color: transparent !important;
1844
+ text-shadow: 0 0 0 #1f2937 !important;
1845
+ -webkit-text-fill-color: transparent !important;
1846
+ caret-color: #1f2937 !important;
1847
+ }
1848
+
1849
+ .css3d-resolution-wrapper .note-textarea::selection,
1850
+ .mind-map-text-overlay .note-textarea::selection,
1851
+ .mind-map-text-overlay-v2-card .note-textarea::selection,
1852
+ .mind-map-edit-overlay-card .note-textarea::selection {
1853
+ background-color: #3b82f6 !important;
1854
+ color: transparent !important;
1855
+ text-shadow: 0 0 0 #ffffff !important;
1856
+ }
1857
+
1858
+ .css3d-resolution-wrapper .map-node-memo__body,
1859
+ .mind-map-text-overlay .map-node-memo__body,
1860
+ .mind-map-text-overlay-v2-card .map-node-memo__body,
1861
+ .mind-map-edit-overlay-card .map-node-memo__body {
1862
+ padding-top: 16px !important;
1863
+ padding-right: var(--mind-map-text-scrollbar-gutter, 14px) !important;
1864
+ padding-bottom: 16px !important;
1865
+ padding-left: 18px !important;
1866
+ text-indent: 0 !important;
1867
+ caret-color: #1f2937 !important;
1868
+ }
1869
+
1870
+ .css3d-resolution-wrapper .map-node-memo.map-node-automation .map-node-memo__body-view,
1871
+ .css3d-resolution-wrapper .map-node-memo.map-node-automation .map-node-memo__body,
1872
+ .mind-map-text-overlay .map-node-memo.map-node-automation .map-node-memo__body-view,
1873
+ .mind-map-text-overlay .map-node-memo.map-node-automation .map-node-memo__body,
1874
+ .mind-map-text-overlay-v2-card .map-node-memo.map-node-automation .map-node-memo__body-view,
1875
+ .mind-map-text-overlay-v2-card .map-node-memo.map-node-automation .map-node-memo__body,
1876
+ .mind-map-edit-overlay-card .map-node-memo.map-node-automation .map-node-memo__body-view,
1877
+ .mind-map-edit-overlay-card .map-node-memo.map-node-automation .map-node-memo__body {
1878
+ border-radius: 0 !important;
1879
+ }
1880
+
1881
+ .css3d-resolution-wrapper .thin-scrollbar::-webkit-scrollbar,
1882
+ .css3d-resolution-wrapper .note-textarea::-webkit-scrollbar,
1883
+ .css3d-resolution-wrapper .note-content::-webkit-scrollbar,
1884
+ .css3d-resolution-wrapper .markdown-body::-webkit-scrollbar,
1885
+ .css3d-resolution-wrapper .prose::-webkit-scrollbar,
1886
+ .css3d-resolution-wrapper .code-body::-webkit-scrollbar,
1887
+ .css3d-resolution-wrapper .map-node-memo__body::-webkit-scrollbar,
1888
+ .css3d-resolution-wrapper .map-node-memo__body-view::-webkit-scrollbar,
1889
+ .mind-map-text-overlay .thin-scrollbar::-webkit-scrollbar,
1890
+ .mind-map-text-overlay .note-textarea::-webkit-scrollbar,
1891
+ .mind-map-text-overlay .note-content::-webkit-scrollbar,
1892
+ .mind-map-text-overlay .markdown-body::-webkit-scrollbar,
1893
+ .mind-map-text-overlay .prose::-webkit-scrollbar,
1894
+ .mind-map-text-overlay .code-body::-webkit-scrollbar,
1895
+ .mind-map-text-overlay .map-node-memo__body::-webkit-scrollbar,
1896
+ .mind-map-text-overlay .map-node-memo__body-view::-webkit-scrollbar,
1897
+ .mind-map-text-overlay-v2-card .thin-scrollbar::-webkit-scrollbar,
1898
+ .mind-map-text-overlay-v2-card .note-textarea::-webkit-scrollbar,
1899
+ .mind-map-text-overlay-v2-card .note-content::-webkit-scrollbar,
1900
+ .mind-map-text-overlay-v2-card .markdown-body::-webkit-scrollbar,
1901
+ .mind-map-text-overlay-v2-card .prose::-webkit-scrollbar,
1902
+ .mind-map-text-overlay-v2-card .code-body::-webkit-scrollbar,
1903
+ .mind-map-text-overlay-v2-card .map-node-memo__body::-webkit-scrollbar,
1904
+ .mind-map-text-overlay-v2-card .map-node-memo__body-view::-webkit-scrollbar {
1905
+ width: var(--mind-map-text-scrollbar-size-x, var(--mind-map-text-scrollbar-size));
1906
+ height: var(--mind-map-text-scrollbar-size-y, var(--mind-map-text-scrollbar-size));
1907
+ }
1908
+
1909
+ .mind-map-text-overlay .note-textarea,
1910
+ .mind-map-text-overlay .note-content,
1911
+ .mind-map-text-overlay .markdown-body,
1912
+ .mind-map-text-overlay .prose,
1913
+ .mind-map-text-overlay .code-body,
1914
+ .mind-map-text-overlay [id^="node-response-"],
1915
+ .mind-map-text-overlay [id^="node-textarea-"],
1916
+ .mind-map-text-overlay-v2-card .note-textarea,
1917
+ .mind-map-text-overlay-v2-card .note-content,
1918
+ .mind-map-text-overlay-v2-card .markdown-body,
1919
+ .mind-map-text-overlay-v2-card .prose,
1920
+ .mind-map-text-overlay-v2-card .code-body,
1921
+ .mind-map-text-overlay-v2-card [id^="node-response-"],
1922
+ .mind-map-text-overlay-v2-card [id^="node-textarea-"] {
1923
+ box-sizing: border-box !important;
1924
+ scrollbar-gutter: stable !important;
1925
+ scrollbar-width: thin !important;
1926
+ scrollbar-color: rgba(0, 0, 0, 0.2) transparent !important;
1927
+ padding-right: 14px !important;
1928
+ }
1929
+
1930
+ .mind-map-text-overlay-v2-editing-note-surface .node-response,
1931
+ .mind-map-text-overlay-v2-editing-note-surface .note-content,
1932
+ .mind-map-edit-overlay-card .node-response,
1933
+ .mind-map-edit-overlay-card .note-content {
1934
+ padding-right: 0 !important;
1935
+ overflow: hidden !important;
1936
+ scrollbar-gutter: auto !important;
1937
+ }
1938
+
1939
+ .mind-map-text-overlay-v2-editing-note-surface .note-textarea,
1940
+ .mind-map-edit-overlay-card .note-textarea {
1941
+ padding-right: 14px !important;
1942
+ scrollbar-gutter: stable !important;
1943
+ }
1944
+
1945
+ .mind-map-text-overlay .note-textarea::-webkit-scrollbar,
1946
+ .mind-map-text-overlay .note-content::-webkit-scrollbar,
1947
+ .mind-map-text-overlay .markdown-body::-webkit-scrollbar,
1948
+ .mind-map-text-overlay .code-body::-webkit-scrollbar,
1949
+ .mind-map-text-overlay .prose::-webkit-scrollbar,
1950
+ .mind-map-text-overlay [id^="node-response-"]::-webkit-scrollbar,
1951
+ .mind-map-text-overlay [id^="node-textarea-"]::-webkit-scrollbar,
1952
+ .mind-map-text-overlay-v2-card .note-textarea::-webkit-scrollbar,
1953
+ .mind-map-text-overlay-v2-card .note-content::-webkit-scrollbar,
1954
+ .mind-map-text-overlay-v2-card .markdown-body::-webkit-scrollbar,
1955
+ .mind-map-text-overlay-v2-card .code-body::-webkit-scrollbar,
1956
+ .mind-map-text-overlay-v2-card .prose::-webkit-scrollbar,
1957
+ .mind-map-text-overlay-v2-card [id^="node-response-"]::-webkit-scrollbar,
1958
+ .mind-map-text-overlay-v2-card [id^="node-textarea-"]::-webkit-scrollbar {
1959
+ width: 8px !important;
1960
+ height: 8px !important;
1961
+ }
1962
+
1963
+ .mind-map-text-overlay .note-textarea::-webkit-scrollbar-thumb,
1964
+ .mind-map-text-overlay .note-content::-webkit-scrollbar-thumb,
1965
+ .mind-map-text-overlay .markdown-body::-webkit-scrollbar-thumb,
1966
+ .mind-map-text-overlay .code-body::-webkit-scrollbar-thumb,
1967
+ .mind-map-text-overlay .prose::-webkit-scrollbar-thumb,
1968
+ .mind-map-text-overlay [id^="node-response-"]::-webkit-scrollbar-thumb,
1969
+ .mind-map-text-overlay [id^="node-textarea-"]::-webkit-scrollbar-thumb,
1970
+ .mind-map-text-overlay-v2-card .note-textarea::-webkit-scrollbar-thumb,
1971
+ .mind-map-text-overlay-v2-card .note-content::-webkit-scrollbar-thumb,
1972
+ .mind-map-text-overlay-v2-card .markdown-body::-webkit-scrollbar-thumb,
1973
+ .mind-map-text-overlay-v2-card .code-body::-webkit-scrollbar-thumb,
1974
+ .mind-map-text-overlay-v2-card .prose::-webkit-scrollbar-thumb,
1975
+ .mind-map-text-overlay-v2-card [id^="node-response-"]::-webkit-scrollbar-thumb,
1976
+ .mind-map-text-overlay-v2-card [id^="node-textarea-"]::-webkit-scrollbar-thumb {
1977
+ background: rgba(0, 0, 0, 0.2) !important;
1978
+ border-radius: 10px !important;
1979
+ }
1980
+
1981
+ .mind-map-text-overlay .note-textarea::-webkit-scrollbar-track,
1982
+ .mind-map-text-overlay .note-content::-webkit-scrollbar-track,
1983
+ .mind-map-text-overlay .markdown-body::-webkit-scrollbar-track,
1984
+ .mind-map-text-overlay .code-body::-webkit-scrollbar-track,
1985
+ .mind-map-text-overlay .prose::-webkit-scrollbar-track,
1986
+ .mind-map-text-overlay [id^="node-response-"]::-webkit-scrollbar-track,
1987
+ .mind-map-text-overlay [id^="node-textarea-"]::-webkit-scrollbar-track,
1988
+ .mind-map-text-overlay-v2-card .note-textarea::-webkit-scrollbar-track,
1989
+ .mind-map-text-overlay-v2-card .note-content::-webkit-scrollbar-track,
1990
+ .mind-map-text-overlay-v2-card .markdown-body::-webkit-scrollbar-track,
1991
+ .mind-map-text-overlay-v2-card .code-body::-webkit-scrollbar-track,
1992
+ .mind-map-text-overlay-v2-card .prose::-webkit-scrollbar-track,
1993
+ .mind-map-text-overlay-v2-card [id^="node-response-"]::-webkit-scrollbar-track,
1994
+ .mind-map-text-overlay-v2-card [id^="node-textarea-"]::-webkit-scrollbar-track {
1995
+ background: transparent !important;
1996
+ }
1997
+
1998
+ .mind-map-text-overlay .note-textarea:hover,
1999
+ .mind-map-text-overlay .note-content:hover,
2000
+ .mind-map-text-overlay .markdown-body:hover,
2001
+ .mind-map-text-overlay .code-body:hover,
2002
+ .mind-map-text-overlay .prose:hover,
2003
+ .mind-map-text-overlay [id^="node-response-"]:hover,
2004
+ .mind-map-text-overlay [id^="node-textarea-"]:hover,
2005
+ .mind-map-text-overlay-v2-card .note-textarea:hover,
2006
+ .mind-map-text-overlay-v2-card .note-content:hover,
2007
+ .mind-map-text-overlay-v2-card .markdown-body:hover,
2008
+ .mind-map-text-overlay-v2-card .code-body:hover,
2009
+ .mind-map-text-overlay-v2-card .prose:hover,
2010
+ .mind-map-text-overlay-v2-card [id^="node-response-"]:hover,
2011
+ .mind-map-text-overlay-v2-card [id^="node-textarea-"]:hover {
2012
+ scrollbar-color: rgba(0, 0, 0, 0.38) transparent !important;
2013
+ }
2014
+
2015
+ .mind-map-text-overlay .note-textarea:hover::-webkit-scrollbar-thumb,
2016
+ .mind-map-text-overlay .note-content:hover::-webkit-scrollbar-thumb,
2017
+ .mind-map-text-overlay .markdown-body:hover::-webkit-scrollbar-thumb,
2018
+ .mind-map-text-overlay .code-body:hover::-webkit-scrollbar-thumb,
2019
+ .mind-map-text-overlay .prose:hover::-webkit-scrollbar-thumb,
2020
+ .mind-map-text-overlay [id^="node-response-"]:hover::-webkit-scrollbar-thumb,
2021
+ .mind-map-text-overlay [id^="node-textarea-"]:hover::-webkit-scrollbar-thumb,
2022
+ .mind-map-text-overlay .note-textarea::-webkit-scrollbar-thumb:hover,
2023
+ .mind-map-text-overlay .note-content::-webkit-scrollbar-thumb:hover,
2024
+ .mind-map-text-overlay .markdown-body::-webkit-scrollbar-thumb:hover,
2025
+ .mind-map-text-overlay .code-body::-webkit-scrollbar-thumb:hover,
2026
+ .mind-map-text-overlay .prose::-webkit-scrollbar-thumb:hover,
2027
+ .mind-map-text-overlay [id^="node-response-"]::-webkit-scrollbar-thumb:hover,
2028
+ .mind-map-text-overlay [id^="node-textarea-"]::-webkit-scrollbar-thumb:hover,
2029
+ .mind-map-text-overlay-v2-card .note-textarea:hover::-webkit-scrollbar-thumb,
2030
+ .mind-map-text-overlay-v2-card .note-content:hover::-webkit-scrollbar-thumb,
2031
+ .mind-map-text-overlay-v2-card .markdown-body:hover::-webkit-scrollbar-thumb,
2032
+ .mind-map-text-overlay-v2-card .code-body:hover::-webkit-scrollbar-thumb,
2033
+ .mind-map-text-overlay-v2-card .prose:hover::-webkit-scrollbar-thumb,
2034
+ .mind-map-text-overlay-v2-card [id^="node-response-"]:hover::-webkit-scrollbar-thumb,
2035
+ .mind-map-text-overlay-v2-card [id^="node-textarea-"]:hover::-webkit-scrollbar-thumb,
2036
+ .mind-map-text-overlay-v2-card .note-textarea::-webkit-scrollbar-thumb:hover,
2037
+ .mind-map-text-overlay-v2-card .note-content::-webkit-scrollbar-thumb:hover,
2038
+ .mind-map-text-overlay-v2-card .markdown-body::-webkit-scrollbar-thumb:hover,
2039
+ .mind-map-text-overlay-v2-card .code-body::-webkit-scrollbar-thumb:hover,
2040
+ .mind-map-text-overlay-v2-card .prose::-webkit-scrollbar-thumb:hover,
2041
+ .mind-map-text-overlay-v2-card [id^="node-response-"]::-webkit-scrollbar-thumb:hover,
2042
+ .mind-map-text-overlay-v2-card [id^="node-textarea-"]::-webkit-scrollbar-thumb:hover {
2043
+ background: rgba(0, 0, 0, 0.38) !important;
2044
+ }
2045
+
2046
+ .mind-map-text-overlay .prose,
2047
+ .mind-map-text-overlay [id^="node-response-"],
2048
+ .mind-map-text-overlay-v2-card .prose,
2049
+ .mind-map-text-overlay-v2-card [id^="node-response-"] {
2050
+ padding-right: 14px !important;
2051
+ }
2052
+
2053
+ .mind-map-text-overlay .code-body,
2054
+ .mind-map-text-overlay-v2-card .code-body {
2055
+ box-sizing: border-box !important;
2056
+ width: 100% !important;
2057
+ max-width: 100% !important;
2058
+ margin-right: 0 !important;
2059
+ padding-right: 14px !important;
2060
+ }
2061
+
2062
+ .mind-map-text-overlay .code-body > .code-body-content,
2063
+ .mind-map-text-overlay-v2-card .code-body > .code-body-content {
2064
+ display: block !important;
2065
+ min-width: 100% !important;
2066
+ width: max-content !important;
2067
+ box-sizing: border-box !important;
2068
+ padding: 2px 0 2px 0 !important;
2069
+ white-space: inherit !important;
2070
+ overflow-wrap: inherit !important;
2071
+ }
2072
+
2073
+ .mind-map-text-overlay-v2-body.is-nowrap,
2074
+ .mind-map-text-overlay-v2-body.is-nowrap .mind-map-text-overlay-v2-plain {
2075
+ white-space: pre !important;
2076
+ overflow-wrap: normal !important;
2077
+ }
2078
+
2079
+ .mind-map-text-overlay-v2-plain {
2080
+ white-space: pre-wrap;
2081
+ overflow-wrap: break-word;
2082
+ }
2083
+
2084
+ .mind-map-text-overlay-v2-textarea {
2085
+ width: 100%;
2086
+ height: 100%;
2087
+ border: none;
2088
+ outline: none;
2089
+ resize: none;
2090
+ background: transparent;
2091
+ color: inherit;
2092
+ font: inherit;
2093
+ line-height: 1.6;
2094
+ box-sizing: border-box;
2095
+ }
2096
+
2097
+ .mind-map-text-overlay-v2-card .map-node-bubble,
2098
+ .mind-map-text-overlay-v2-card .map-node-note,
2099
+ .mind-map-text-overlay-v2-card .map-node-memo {
2100
+ max-width: none !important;
2101
+ min-width: 0 !important;
2102
+ }
2103
+
2104
+ .mind-map-text-overlay-v2-card.is-editing .mind-map-text-overlay-v2-editing-note-surface,
2105
+ .mind-map-text-overlay-v2-card.is-editing .mind-map-text-overlay-v2-editing-note-surface .node-content-wrapper,
2106
+ .mind-map-text-overlay-v2-card.is-editing .mind-map-text-overlay-v2-editing-note-surface .node-content,
2107
+ .mind-map-text-overlay-v2-card.is-editing .mind-map-text-overlay-v2-editing-note-surface .node-response,
2108
+ .mind-map-text-overlay-v2-card.is-editing .mind-map-text-overlay-v2-editing-note-surface .note-content,
2109
+ .mind-map-text-overlay-v2-card.is-editing .mind-map-text-overlay-v2-editing-note-surface .note-textarea {
2110
+ background: transparent !important;
2111
+ background-color: transparent !important;
2112
+ background-image: none !important;
2113
+ border-color: transparent !important;
2114
+ box-shadow: none !important;
2115
+ -webkit-box-shadow: none !important;
2116
+ outline: none !important;
2117
+ filter: none !important;
2118
+ -webkit-filter: none !important;
2119
+ backdrop-filter: none !important;
2120
+ -webkit-backdrop-filter: none !important;
2121
+ }
2122
+
2123
+ .mind-map-text-overlay-v2-card.is-editing .mind-map-text-overlay-v2-editing-memo-surface .map-node-memo__body {
2124
+ color: #1f2937 !important;
2125
+ caret-color: #1f2937 !important;
2126
+ }
2127
+
2128
+ .mind-map-text-overlay-v2-card.is-editing .mind-map-text-overlay-v2-editing-surface .map-node-memo__header {
2129
+ display: flex !important;
2130
+ align-items: center !important;
2131
+ gap: 12px !important;
2132
+ min-width: 0 !important;
2133
+ }
2134
+
2135
+ .mind-map-text-overlay-v2-card.is-editing .mind-map-text-overlay-v2-editing-surface .map-node-memo__icon-wrap {
2136
+ display: flex !important;
2137
+ flex: 0 0 auto !important;
2138
+ align-items: center !important;
2139
+ justify-content: center !important;
2140
+ }
2141
+
2142
+ .mind-map-text-overlay-v2-card.is-editing .mind-map-text-overlay-v2-editing-surface .map-node-memo__title-wrap {
2143
+ display: flex !important;
2144
+ flex: 1 1 auto !important;
2145
+ min-width: 0 !important;
2146
+ }
2147
+
2148
+ .mind-map-text-overlay-v2-card.is-editing .mind-map-text-overlay-v2-editing-surface .map-node-memo__title {
2149
+ width: 100% !important;
2150
+ min-width: 0 !important;
2151
+ flex: 1 1 auto !important;
2152
+ }
2153
+
2154
+ .mind-map-v2-source-suspended .node-content-wrapper,
2155
+ .mind-map-v2-source-suspended .node-content,
2156
+ .mind-map-v2-source-suspended .node-response,
2157
+ .mind-map-v2-source-suspended [id^="node-response-"],
2158
+ .mind-map-v2-source-suspended [id^="node-textarea-"],
2159
+ .mind-map-v2-source-suspended .text-content,
2160
+ .mind-map-v2-source-suspended .prose,
2161
+ .mind-map-v2-source-suspended .markdown-body,
2162
+ .mind-map-v2-source-suspended .code-body,
2163
+ .mind-map-v2-source-suspended .note-content,
2164
+ .mind-map-v2-source-suspended .note-textarea,
2165
+ .mind-map-v2-source-suspended .map-node-memo__title,
2166
+ .mind-map-v2-source-suspended .map-node-memo__body,
2167
+ .mind-map-v2-source-suspended .map-node-memo__body-view,
2168
+ .mind-map-v2-source-suspended .map-node-memo__icon-wrap,
2169
+ .mind-map-v2-source-suspended .map-node-memo__icon-button,
2170
+ .mind-map-v2-source-suspended .map-node-memo__icon-popover,
2171
+ .mind-map-v2-source-suspended .map-node-memo__agent-plan-title,
2172
+ .mind-map-v2-source-suspended .map-node-memo__agent-plan-chips,
2173
+ .mind-map-v2-source-suspended .map-node-memo__agent-plan-body,
2174
+ .mind-map-v2-source-suspended .map-node-memo__agent-console-title,
2175
+ .mind-map-v2-source-suspended .map-node-memo__agent-console-body {
2176
+ opacity: 0 !important;
2177
+ visibility: hidden !important;
2178
+ content-visibility: visible !important;
2179
+ contain: layout style paint !important;
2180
+ pointer-events: none !important;
2181
+ user-select: none !important;
2182
+ -webkit-user-select: none !important;
2183
+ caret-color: transparent !important;
2184
+ }
2185
+
2186
+ .css3d-resolution-wrapper.node-type-image .mind-map-v2-source-suspended,
2187
+ .css3d-resolution-wrapper.node-type-video .mind-map-v2-source-suspended,
2188
+ .css3d-resolution-wrapper.node-type-embed .mind-map-v2-source-suspended,
2189
+ .css3d-resolution-wrapper.node-type-image .mind-map-text-overlay-source-suspended,
2190
+ .css3d-resolution-wrapper.node-type-video .mind-map-text-overlay-source-suspended,
2191
+ .css3d-resolution-wrapper.node-type-embed .mind-map-text-overlay-source-suspended {
2192
+ opacity: 1 !important;
2193
+ visibility: visible !important;
2194
+ content-visibility: visible !important;
2195
+ contain: none !important;
2196
+ pointer-events: none !important;
2197
+ user-select: none !important;
2198
+ -webkit-user-select: none !important;
2199
+ caret-color: auto !important;
2200
+ }
2201
+
2202
+ .css3d-resolution-wrapper.node-type-csv-table,
2203
+ .css3d-resolution-wrapper.node-type-csv-table > .map-node,
2204
+ .css3d-resolution-wrapper.node-type-csv-table .node-content-wrapper,
2205
+ .map-node-csv-table .node-content-wrapper--csv-table {
2206
+ min-width: 0 !important;
2207
+ min-height: 0 !important;
2208
+ max-width: 100% !important;
2209
+ max-height: 100% !important;
2210
+ box-sizing: border-box !important;
2211
+ overflow: hidden !important;
2212
+ }
2213
+
2214
+ .css3d-resolution-wrapper.node-type-csv-table > .map-node.map-node-csv-table,
2215
+ .css3d-resolution-wrapper.node-type-csv-table .map-node-csv-table,
2216
+ .mind-map-text-overlay-v2-source-clone.map-node-csv-table,
2217
+ .map-node-csv-table {
2218
+ border: 1px solid #111827 !important;
2219
+ box-shadow: none !important;
2220
+ }
2221
+
2222
+ .css3d-resolution-wrapper.node-type-csv-table .node-content-wrapper,
2223
+ .map-node-csv-table .node-content-wrapper--csv-table {
2224
+ display: flex !important;
2225
+ flex-direction: column !important;
2226
+ }
2227
+
2228
+ .css3d-resolution-wrapper.node-type-csv-table .node-response.csv-table-scroll,
2229
+ .map-node-csv-table .node-response.csv-table-scroll {
2230
+ width: 100% !important;
2231
+ height: auto !important;
2232
+ max-height: 100% !important;
2233
+ flex: 1 1 0% !important;
2234
+ min-height: 0 !important;
2235
+ overflow: auto !important;
2236
+ scrollbar-gutter: stable both-edges !important;
2237
+ padding-right: 0 !important;
2238
+ overscroll-behavior: contain;
2239
+ }
2240
+
2241
+ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .node-response.csv-table-scroll {
2242
+ display: block !important;
2243
+ visibility: visible !important;
2244
+ opacity: 1 !important;
2245
+ width: 100% !important;
2246
+ height: auto !important;
2247
+ max-height: 100% !important;
2248
+ flex: 1 1 0% !important;
2249
+ min-height: 0 !important;
2250
+ overflow: hidden !important;
2251
+ pointer-events: none !important;
2252
+ user-select: none !important;
2253
+ -webkit-user-select: none !important;
2254
+ }
2255
+
2256
+ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table {
2257
+ display: table !important;
2258
+ color: #111827 !important;
2259
+ }
2260
+
2261
+ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table thead {
2262
+ display: table-header-group !important;
2263
+ }
2264
+
2265
+ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table tbody {
2266
+ display: table-row-group !important;
2267
+ }
2268
+
2269
+ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table tr {
2270
+ display: table-row !important;
2271
+ }
2272
+
2273
+ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table th,
2274
+ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table td {
2275
+ display: table-cell !important;
2276
+ }
2277
+
2278
+ .css3d-resolution-wrapper.node-type-image,
2279
+ .css3d-resolution-wrapper.node-type-video,
2280
+ .css3d-resolution-wrapper.node-type-embed {
2281
+ --mind-media-surface-bleed: 0px;
2282
+ overflow: hidden !important;
2283
+ box-sizing: border-box !important;
2284
+ isolation: isolate !important;
2285
+ background: transparent !important;
2286
+ border: 0 !important;
2287
+ outline: 0 !important;
2288
+ }
2289
+
2290
+ .css3d-resolution-wrapper.node-type-image > .map-node,
2291
+ .css3d-resolution-wrapper.node-type-video > .map-node,
2292
+ .css3d-resolution-wrapper.node-type-embed > .map-node,
2293
+ .css3d-resolution-wrapper.node-type-image .node-content-wrapper,
2294
+ .css3d-resolution-wrapper.node-type-video .node-content-wrapper,
2295
+ .css3d-resolution-wrapper.node-type-embed .node-content-wrapper,
2296
+ .css3d-resolution-wrapper.node-type-image .node-response,
2297
+ .css3d-resolution-wrapper.node-type-video .node-response,
2298
+ .css3d-resolution-wrapper.node-type-embed .node-response {
2299
+ width: 100% !important;
2300
+ height: 100% !important;
2301
+ padding: 0 !important;
2302
+ margin: 0 !important;
2303
+ border: 0 !important;
2304
+ outline: 0 !important;
2305
+ box-sizing: border-box !important;
2306
+ overflow: hidden !important;
2307
+ background: transparent !important;
2308
+ scrollbar-gutter: auto !important;
2309
+ scrollbar-width: none !important;
2310
+ }
2311
+
2312
+ .css3d-resolution-wrapper.node-type-image .node-response::-webkit-scrollbar,
2313
+ .css3d-resolution-wrapper.node-type-video .node-response::-webkit-scrollbar,
2314
+ .css3d-resolution-wrapper.node-type-embed .node-response::-webkit-scrollbar {
2315
+ width: 0 !important;
2316
+ height: 0 !important;
2317
+ display: none !important;
2318
+ }
2319
+
2320
+ .css3d-resolution-wrapper.node-type-image img,
2321
+ .css3d-resolution-wrapper.node-type-video video,
2322
+ .css3d-resolution-wrapper.node-type-video canvas.mind-map-video-proxy,
2323
+ .css3d-resolution-wrapper.node-type-embed iframe,
2324
+ .css3d-resolution-wrapper.node-type-embed .embed-iframe-shell,
2325
+ .css3d-resolution-wrapper.node-type-embed .embed-card {
2326
+ contain: none !important;
2327
+ isolation: isolate !important;
2328
+ max-width: none !important;
2329
+ max-height: none !important;
2330
+ }
2331
+
2332
+ .css3d-resolution-wrapper.node-type-image img,
2333
+ .css3d-resolution-wrapper.node-type-video video,
2334
+ .css3d-resolution-wrapper.node-type-video canvas.mind-map-video-proxy,
2335
+ .css3d-resolution-wrapper.node-type-embed .embed-iframe-shell,
2336
+ .css3d-resolution-wrapper.node-type-embed .embed-card {
2337
+ position: absolute !important;
2338
+ left: 0 !important;
2339
+ top: 0 !important;
2340
+ right: auto !important;
2341
+ bottom: auto !important;
2342
+ width: calc(100% + var(--mind-media-surface-bleed, 0px)) !important;
2343
+ height: calc(100% + var(--mind-media-surface-bleed, 0px)) !important;
2344
+ }
2345
+
2346
+ .mind-map-v2-source-suspended .map-node-memo__agent-console-panel,
2347
+ .mind-map-v2-source-suspended .map-node-memo__agent-console-title,
2348
+ .mind-map-v2-source-suspended .map-node-memo__agent-console-body,
2349
+ .mind-map-v2-source-suspended .map-node-memo__agent-console-body * {
2350
+ opacity: 1 !important;
2351
+ visibility: visible !important;
2352
+ content-visibility: visible !important;
2353
+ contain: none !important;
2354
+ pointer-events: auto !important;
2355
+ user-select: text !important;
2356
+ -webkit-user-select: text !important;
2357
+ caret-color: auto !important;
2358
+ }
2359
+
2360
+ .sidebar-section-divider {
2361
+ width: 22px;
2362
+ height: 1px;
2363
+ margin: 6px 0;
2364
+ background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(148, 163, 184, 0.7), rgba(148, 163, 184, 0));
2365
+ }
2366
+
2367
+ .sidebar-icon-btn--launcher {
2368
+ position: relative;
2369
+ }
2370
+
2371
+ .sidebar-icon-btn--launcher.sidebar-icon-btn--launcher-active::after {
2372
+ content: '';
2373
+ position: absolute;
2374
+ right: 4px;
2375
+ top: 50%;
2376
+ width: 5px;
2377
+ height: 5px;
2378
+ border-radius: 999px;
2379
+ transform: translateY(-50%);
2380
+ background: #2563eb;
2381
+ box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
2382
+ }
2383
+
2384
+ .sidebar-hover-card,
2385
+ .template-launcher-panel,
2386
+ .mindcanvas-toolbar-hint {
2387
+ border: 1px solid rgba(203, 213, 225, 0.82);
2388
+ background:
2389
+ linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88));
2390
+ box-shadow:
2391
+ 0 20px 40px rgba(15, 23, 42, 0.12),
2392
+ 0 8px 20px rgba(148, 163, 184, 0.14),
2393
+ inset 0 1px 0 rgba(255, 255, 255, 0.92);
2394
+ -webkit-backdrop-filter: blur(18px) saturate(1.12);
2395
+ backdrop-filter: blur(18px) saturate(1.12);
2396
+ }
2397
+
2398
+ .sidebar-hover-card {
2399
+ width: 280px;
2400
+ padding: 14px 16px;
2401
+ border-radius: 18px;
2402
+ opacity: 1;
2403
+ transform: translateY(0);
2404
+ transition: opacity 220ms ease, transform 220ms ease;
2405
+ }
2406
+
2407
+ .sidebar-hover-card--fade-out {
2408
+ opacity: 0;
2409
+ transform: translateY(-6px);
2410
+ }
2411
+
2412
+ .sidebar-hover-card__eyebrow,
2413
+ .template-launcher-panel__eyebrow {
2414
+ font-size: 10px;
2415
+ font-weight: 800;
2416
+ letter-spacing: 0.16em;
2417
+ text-transform: uppercase;
2418
+ color: #64748b;
2419
+ }
2420
+
2421
+ .sidebar-hover-card__title,
2422
+ .mindcanvas-toolbar-hint__title {
2423
+ margin-top: 6px;
2424
+ font-size: 14px;
2425
+ font-weight: 700;
2426
+ color: #0f172a;
2427
+ }
2428
+
2429
+ .sidebar-hover-card__description,
2430
+ .mindcanvas-toolbar-hint__description,
2431
+ .template-launcher-panel__description {
2432
+ margin-top: 4px;
2433
+ font-size: 12px;
2434
+ line-height: 1.55;
2435
+ color: #475569;
2436
+ }
2437
+
2438
+ .template-launcher-panel {
2439
+ width: min(340px, calc(100vw - 92px));
2440
+ border-radius: 22px;
2441
+ padding: 18px;
2442
+ }
2443
+
2444
+ .template-launcher-panel__title {
2445
+ margin-top: 8px;
2446
+ font-size: 20px;
2447
+ font-weight: 800;
2448
+ letter-spacing: -0.03em;
2449
+ color: #0f172a;
2450
+ }
2451
+
2452
+ .template-launcher-panel__prompt {
2453
+ margin-top: 18px;
2454
+ font-size: 12px;
2455
+ font-weight: 700;
2456
+ color: #334155;
2457
+ }
2458
+
2459
+ .template-launcher-panel__chips {
2460
+ display: flex;
2461
+ flex-wrap: wrap;
2462
+ gap: 8px;
2463
+ margin-top: 10px;
2464
+ }
2465
+
2466
+ .template-launcher-panel__form {
2467
+ display: flex;
2468
+ flex-direction: column;
2469
+ gap: 12px;
2470
+ margin-top: 16px;
2471
+ }
2472
+
2473
+ .template-launcher-field {
2474
+ display: flex;
2475
+ flex-direction: column;
2476
+ gap: 6px;
2477
+ }
2478
+
2479
+ .template-launcher-field__label {
2480
+ font-size: 12px;
2481
+ font-weight: 700;
2482
+ color: #0f172a;
2483
+ }
2484
+
2485
+ .template-launcher-field__description {
2486
+ font-size: 11px;
2487
+ line-height: 1.5;
2488
+ color: #64748b;
2489
+ }
2490
+
2491
+ .template-launcher-field__input,
2492
+ .template-launcher-field__textarea,
2493
+ .template-launcher-field__select {
2494
+ width: 100%;
2495
+ border: 1px solid rgba(203, 213, 225, 0.9);
2496
+ border-radius: 14px;
2497
+ background: rgba(255, 255, 255, 0.92);
2498
+ color: #0f172a;
2499
+ font-size: 12px;
2500
+ line-height: 1.5;
2501
+ padding: 10px 12px;
2502
+ transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
2503
+ }
2504
+
2505
+ .template-launcher-field__textarea {
2506
+ min-height: 88px;
2507
+ resize: vertical;
2508
+ }
2509
+
2510
+ .template-launcher-field__input:focus,
2511
+ .template-launcher-field__textarea:focus,
2512
+ .template-launcher-field__select:focus {
2513
+ outline: none;
2514
+ border-color: rgba(59, 130, 246, 0.56);
2515
+ box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
2516
+ background: #ffffff;
2517
+ }
2518
+
2519
+ .template-launcher-panel__validation {
2520
+ margin-top: 12px;
2521
+ font-size: 11px;
2522
+ font-weight: 700;
2523
+ color: #b45309;
2524
+ }
2525
+
2526
+ .template-launcher-chip {
2527
+ display: inline-flex;
2528
+ align-items: center;
2529
+ justify-content: center;
2530
+ min-height: 34px;
2531
+ padding: 0 12px;
2532
+ border-radius: 999px;
2533
+ border: 1px solid rgba(203, 213, 225, 0.9);
2534
+ background: rgba(255, 255, 255, 0.8);
2535
+ color: #334155;
2536
+ font-size: 12px;
2537
+ font-weight: 700;
2538
+ transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
2539
+ }
2540
+
2541
+ .template-launcher-chip:hover {
2542
+ border-color: rgba(125, 211, 252, 0.82);
2543
+ background: rgba(240, 249, 255, 0.94);
2544
+ color: #0f172a;
2545
+ transform: translateY(-1px);
2546
+ }
2547
+
2548
+ .template-launcher-chip--active {
2549
+ border-color: rgba(59, 130, 246, 0.42);
2550
+ background: linear-gradient(180deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.08));
2551
+ color: #1d4ed8;
2552
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
2553
+ }
2554
+
2555
+ .template-launcher-panel__footer {
2556
+ display: flex;
2557
+ justify-content: flex-end;
2558
+ gap: 10px;
2559
+ margin-top: 20px;
2560
+ }
2561
+
2562
+ .template-launcher-panel__secondary,
2563
+ .template-launcher-panel__primary {
2564
+ height: 38px;
2565
+ padding: 0 14px;
2566
+ border-radius: 999px;
2567
+ font-size: 12px;
2568
+ font-weight: 800;
2569
+ transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
2570
+ }
2571
+
2572
+ .template-launcher-panel__secondary {
2573
+ border: 1px solid rgba(203, 213, 225, 0.9);
2574
+ background: rgba(255, 255, 255, 0.82);
2575
+ color: #475569;
2576
+ }
2577
+
2578
+ .template-launcher-panel__primary {
2579
+ border: 1px solid rgba(29, 78, 216, 0.14);
2580
+ background: linear-gradient(180deg, #2563eb, #1d4ed8);
2581
+ color: #ffffff;
2582
+ box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
2583
+ }
2584
+
2585
+ .template-launcher-panel__primary:disabled {
2586
+ cursor: not-allowed;
2587
+ opacity: 0.62;
2588
+ box-shadow: none;
2589
+ transform: none;
2590
+ }
2591
+
2592
+ .template-launcher-panel__secondary:hover,
2593
+ .template-launcher-panel__primary:hover {
2594
+ transform: translateY(-1px);
2595
+ }
2596
+
2597
+ .css3d-resolution-wrapper.node-type-templatelauncher {
2598
+ overflow: visible !important;
2599
+ }
2600
+
2601
+ .css3d-resolution-wrapper.node-type-templatelauncher > .map-node-template-card {
2602
+ border: 1px solid #111827 !important;
2603
+ border-radius: 8px !important;
2604
+ background: #f8fafc;
2605
+ box-shadow: none !important;
2606
+ }
2607
+
2608
+ /* Template launcher and Multi Desktop Monitor own their visual chrome on the
2609
+ card itself. Keep the CSS3D wrapper neutral so motion CSS3D and the passive
2610
+ DOM overlay do not stack different selection chrome. */
2611
+ .css3d-resolution-wrapper.node-type-templatelauncher.selected {
2612
+ outline: none !important;
2613
+ -webkit-box-shadow: none !important;
2614
+ box-shadow: none !important;
2615
+ -webkit-filter: none !important;
2616
+ filter: none !important;
2617
+ }
2618
+
2619
+ .css3d-resolution-wrapper.node-type-templatelauncher.selected > .map-node-template-card {
2620
+ box-shadow: none !important;
2621
+ }
2622
+
2623
+ .map-node-template-card,
2624
+ .map-node-template-card * {
2625
+ box-sizing: border-box;
2626
+ }
2627
+
2628
+ .map-node-template-card {
2629
+ border: 1px solid #111827 !important;
2630
+ border-radius: 8px;
2631
+ color: #10212f;
2632
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
2633
+ box-shadow: none !important;
2634
+ }
2635
+
2636
+ .template-card__shell {
2637
+ display: flex;
2638
+ flex-direction: column;
2639
+ width: 100%;
2640
+ height: 100%;
2641
+ gap: 12px;
2642
+ padding: 18px;
2643
+ border: 0;
2644
+ border-radius: 8px;
2645
+ background: #f8fafc;
2646
+ overflow: hidden;
2647
+ }
2648
+
2649
+ .template-card__header {
2650
+ display: grid;
2651
+ grid-template-columns: 42px minmax(0, 1fr);
2652
+ gap: 12px;
2653
+ align-items: start;
2654
+ flex: 0 0 auto;
2655
+ }
2656
+
2657
+ .template-card__icon {
2658
+ display: inline-flex;
2659
+ width: 42px;
2660
+ height: 42px;
2661
+ align-items: center;
2662
+ justify-content: center;
2663
+ border: 1px solid rgba(13, 148, 136, 0.22);
2664
+ border-radius: 8px;
2665
+ background: #ecfeff;
2666
+ color: #0f766e;
2667
+ font-size: 17px;
2668
+ }
2669
+
2670
+ .template-card__title-block {
2671
+ display: grid;
2672
+ grid-template-columns: auto minmax(0, 1fr);
2673
+ column-gap: 8px;
2674
+ row-gap: 2px;
2675
+ align-items: baseline;
2676
+ min-width: 0;
2677
+ }
2678
+
2679
+ .template-card__eyebrow {
2680
+ grid-column: 1 / -1;
2681
+ color: #64748b;
2682
+ font-size: 10px;
2683
+ font-weight: 800;
2684
+ letter-spacing: 0;
2685
+ text-transform: uppercase;
2686
+ }
2687
+
2688
+ .template-card__title {
2689
+ min-width: 0;
2690
+ margin-top: 0;
2691
+ color: #0f172a;
2692
+ font-size: 20px;
2693
+ font-weight: 800;
2694
+ line-height: 1.15;
2695
+ overflow: hidden;
2696
+ text-overflow: ellipsis;
2697
+ white-space: nowrap;
2698
+ }
2699
+
2700
+ .template-card__summary {
2701
+ min-width: 0;
2702
+ margin-top: 0;
2703
+ color: #475569;
2704
+ font-size: 12px;
2705
+ font-weight: 700;
2706
+ line-height: 1.2;
2707
+ overflow: hidden;
2708
+ text-overflow: ellipsis;
2709
+ white-space: nowrap;
2710
+ }
2711
+
2712
+ .template-card__prompt {
2713
+ flex: 0 0 auto;
2714
+ max-height: 62px;
2715
+ overflow: hidden;
2716
+ border-left: 3px solid #f59e0b;
2717
+ padding: 8px 10px;
2718
+ background: #fff7ed;
2719
+ color: #744210;
2720
+ font-size: 12px;
2721
+ font-weight: 650;
2722
+ line-height: 1.45;
2723
+ overflow-wrap: anywhere;
2724
+ }
2725
+
2726
+ .template-card__options {
2727
+ display: flex;
2728
+ flex: 0 0 auto;
2729
+ gap: 7px;
2730
+ overflow-x: auto;
2731
+ padding-bottom: 2px;
2732
+ scrollbar-width: thin;
2733
+ }
2734
+
2735
+ .template-card__option {
2736
+ flex: 0 0 auto;
2737
+ min-height: 32px;
2738
+ border: 1px solid rgba(148, 163, 184, 0.75);
2739
+ border-radius: 8px;
2740
+ background: #ffffff;
2741
+ color: #334155;
2742
+ padding: 0 11px;
2743
+ font-size: 12px;
2744
+ font-weight: 760;
2745
+ }
2746
+
2747
+ .template-card__option:hover {
2748
+ border-color: rgba(13, 148, 136, 0.45);
2749
+ color: #0f766e;
2750
+ }
2751
+
2752
+ .template-card__option.is-active {
2753
+ border-color: rgba(13, 148, 136, 0.6);
2754
+ background: #ccfbf1;
2755
+ color: #115e59;
2756
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
2757
+ }
2758
+
2759
+ .template-card__option-description {
2760
+ min-height: 17px;
2761
+ color: #64748b;
2762
+ font-size: 11px;
2763
+ font-weight: 650;
2764
+ line-height: 1.45;
2765
+ overflow-wrap: anywhere;
2766
+ }
2767
+
2768
+ .template-card__form {
2769
+ display: flex;
2770
+ flex: 1 1 auto;
2771
+ min-height: 0;
2772
+ flex-direction: column;
2773
+ gap: 11px;
2774
+ overflow-y: auto;
2775
+ padding-right: 6px;
2776
+ scrollbar-width: thin;
2777
+ scrollbar-color: rgba(15, 23, 42, 0.22) transparent;
2778
+ }
2779
+
2780
+ .template-card__field {
2781
+ display: flex;
2782
+ flex-direction: column;
2783
+ gap: 5px;
2784
+ }
2785
+
2786
+ .template-card__label {
2787
+ color: #0f172a;
2788
+ font-size: 12px;
2789
+ font-weight: 800;
2790
+ line-height: 1.2;
2791
+ }
2792
+
2793
+ .template-card__description {
2794
+ color: #64748b;
2795
+ font-size: 11px;
2796
+ line-height: 1.42;
2797
+ overflow-wrap: anywhere;
2798
+ }
2799
+
2800
+ .template-card__input,
2801
+ .template-card__textarea,
2802
+ .template-card__select {
2803
+ width: 100%;
2804
+ border: 1px solid rgba(148, 163, 184, 0.7);
2805
+ border-radius: 8px;
2806
+ background: #ffffff;
2807
+ color: #0f172a;
2808
+ font-size: 12px;
2809
+ line-height: 1.45;
2810
+ padding: 9px 10px;
2811
+ outline: none;
2812
+ }
2813
+
2814
+ .template-card__textarea {
2815
+ min-height: 88px;
2816
+ resize: vertical;
2817
+ }
2818
+
2819
+ .template-card__input:focus,
2820
+ .template-card__textarea:focus,
2821
+ .template-card__select:focus {
2822
+ border-color: rgba(13, 148, 136, 0.65);
2823
+ box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
2824
+ }
2825
+
2826
+ .template-card__empty {
2827
+ border: 1px dashed rgba(148, 163, 184, 0.7);
2828
+ border-radius: 8px;
2829
+ padding: 14px;
2830
+ color: #64748b;
2831
+ font-size: 12px;
2832
+ font-weight: 700;
2833
+ }
2834
+
2835
+ .template-card__footer {
2836
+ display: grid;
2837
+ grid-template-columns: minmax(0, 1fr) auto;
2838
+ align-items: center;
2839
+ gap: 12px;
2840
+ flex: 0 0 auto;
2841
+ padding-top: 10px;
2842
+ border-top: 1px solid rgba(148, 163, 184, 0.24);
2843
+ }
2844
+
2845
+ .template-card__status {
2846
+ min-width: 0;
2847
+ color: #64748b;
2848
+ font-size: 11px;
2849
+ font-weight: 750;
2850
+ line-height: 1.35;
2851
+ overflow-wrap: anywhere;
2852
+ }
2853
+
2854
+ .template-card__status[data-status="busy"] {
2855
+ color: #0369a1;
2856
+ }
2857
+
2858
+ .template-card__status[data-status="success"] {
2859
+ color: #047857;
2860
+ }
2861
+
2862
+ .template-card__status[data-status="error"] {
2863
+ color: #b45309;
2864
+ }
2865
+
2866
+ .template-card__generate {
2867
+ display: inline-flex;
2868
+ height: 38px;
2869
+ align-items: center;
2870
+ justify-content: center;
2871
+ gap: 8px;
2872
+ border: 1px solid rgba(15, 118, 110, 0.28);
2873
+ border-radius: 8px;
2874
+ background: #0f766e;
2875
+ color: #ffffff;
2876
+ padding: 0 14px;
2877
+ font-size: 12px;
2878
+ font-weight: 850;
2879
+ white-space: nowrap;
2880
+ }
2881
+
2882
+ .map-node-template-card.map-node-remote-fleet .template-card__shell--remote-fleet {
2883
+ gap: 10px;
2884
+ padding: 14px;
2885
+ background: #f8fafc;
2886
+ }
2887
+
2888
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle {
2889
+ position: absolute;
2890
+ z-index: 30;
2891
+ pointer-events: auto;
2892
+ touch-action: none;
2893
+ opacity: 0;
2894
+ border: 1px solid transparent;
2895
+ background: transparent;
2896
+ box-shadow: none;
2897
+ transition: none;
2898
+ }
2899
+
2900
+ .css3d-resolution-wrapper.node-type-templatelauncher > .css3d-resize-hit-layer .remote-fleet-resize-handle {
2901
+ position: absolute;
2902
+ z-index: 30;
2903
+ pointer-events: auto;
2904
+ touch-action: none;
2905
+ opacity: 0;
2906
+ border: 1px solid transparent;
2907
+ background: transparent;
2908
+ box-shadow: none;
2909
+ transition: none;
2910
+ }
2911
+
2912
+ .css3d-resolution-wrapper.selected .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle,
2913
+ .map-node-template-card.map-node-remote-fleet:hover .remote-fleet-resize-handle,
2914
+ .map-node-template-card.map-node-remote-fleet:focus-within .remote-fleet-resize-handle {
2915
+ opacity: 0;
2916
+ }
2917
+
2918
+ .css3d-resolution-wrapper.node-type-templatelauncher.selected > .css3d-resize-hit-layer .remote-fleet-resize-handle,
2919
+ .css3d-resolution-wrapper.node-type-templatelauncher:hover > .css3d-resize-hit-layer .remote-fleet-resize-handle,
2920
+ .css3d-resolution-wrapper.node-type-templatelauncher:focus-within > .css3d-resize-hit-layer .remote-fleet-resize-handle {
2921
+ opacity: 0;
2922
+ }
2923
+
2924
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle:hover {
2925
+ opacity: 0;
2926
+ border-color: transparent;
2927
+ background: transparent;
2928
+ }
2929
+
2930
+ .css3d-resolution-wrapper.node-type-templatelauncher > .css3d-resize-hit-layer .remote-fleet-resize-handle:hover {
2931
+ opacity: 0;
2932
+ border-color: transparent;
2933
+ background: transparent;
2934
+ }
2935
+
2936
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.nw,
2937
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.ne,
2938
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.sw,
2939
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.se {
2940
+ width: 18px;
2941
+ height: 18px;
2942
+ }
2943
+
2944
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.nw {
2945
+ top: -6px;
2946
+ left: -6px;
2947
+ cursor: nwse-resize;
2948
+ }
2949
+
2950
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.ne {
2951
+ top: -6px;
2952
+ right: -6px;
2953
+ cursor: nesw-resize;
2954
+ }
2955
+
2956
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.sw {
2957
+ bottom: -6px;
2958
+ left: -6px;
2959
+ cursor: nesw-resize;
2960
+ }
2961
+
2962
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.se {
2963
+ right: -6px;
2964
+ bottom: -6px;
2965
+ cursor: nwse-resize;
2966
+ }
2967
+
2968
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.n,
2969
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.s {
2970
+ left: 14px;
2971
+ right: 14px;
2972
+ height: 12px;
2973
+ cursor: ns-resize;
2974
+ }
2975
+
2976
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.n {
2977
+ top: -5px;
2978
+ }
2979
+
2980
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.s {
2981
+ bottom: -5px;
2982
+ }
2983
+
2984
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.w,
2985
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.e {
2986
+ top: 14px;
2987
+ bottom: 14px;
2988
+ width: 12px;
2989
+ cursor: ew-resize;
2990
+ }
2991
+
2992
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.w {
2993
+ left: -5px;
2994
+ }
2995
+
2996
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.e {
2997
+ right: -5px;
2998
+ }
2999
+
3000
+ .map-node-template-card.map-node-remote-fleet .template-card__header--remote-fleet {
3001
+ align-items: center;
3002
+ }
3003
+
3004
+ .map-node-template-card.map-node-remote-fleet .template-card__icon--remote-fleet {
3005
+ border-color: rgba(37, 99, 235, 0.22);
3006
+ background: #eff6ff;
3007
+ color: #2563eb;
3008
+ }
3009
+
3010
+ .map-node-template-card.map-node-remote-fleet .template-card__remote-fleet-body {
3011
+ flex: 1 1 auto;
3012
+ min-height: 0;
3013
+ overflow: hidden;
3014
+ border: 1px solid rgba(148, 163, 184, 0.28);
3015
+ border-radius: 8px;
3016
+ background: #ffffff;
3017
+ }
3018
+
3019
+ .map-node-template-card.map-node-remote-device .template-card__shell--remote-fleet {
3020
+ gap: 0;
3021
+ padding: 8px;
3022
+ }
3023
+
3024
+ .map-node-template-card.map-node-remote-device .template-card__remote-fleet-body {
3025
+ border: 0;
3026
+ border-radius: 0;
3027
+ background: transparent;
3028
+ }
3029
+
3030
+ .template-card__generate:hover {
3031
+ background: #115e59;
3032
+ }
3033
+
3034
+ .template-card__generate:disabled {
3035
+ cursor: not-allowed;
3036
+ opacity: 0.62;
3037
+ }
3038
+
3039
+ .mindcanvas-toolbar-hint {
3040
+ position: absolute;
3041
+ top: calc(100% + 10px);
3042
+ left: 50%;
3043
+ z-index: 2;
3044
+ width: max-content;
3045
+ min-width: 220px;
3046
+ max-width: min(340px, calc(100vw - 32px));
3047
+ padding: 9px 12px;
3048
+ border-radius: 14px;
3049
+ pointer-events: none;
3050
+ opacity: 0;
3051
+ transform: translateX(-50%) translateY(-2px);
3052
+ animation: mindcanvas-toolbar-tooltip-in 120ms ease-out forwards;
3053
+ transition: opacity 220ms ease, transform 220ms ease;
3054
+ }
3055
+
3056
+ .mindcanvas-toolbar-hint--fade-out {
3057
+ opacity: 0;
3058
+ transform: translateX(-50%) translateY(-6px);
3059
+ }
3060
+
3061
+ .mindcanvas-toolbar-hint::before {
3062
+ content: "";
3063
+ position: absolute;
3064
+ top: -5px;
3065
+ left: 50%;
3066
+ width: 10px;
3067
+ height: 10px;
3068
+ border-top: 1px solid rgba(203, 213, 225, 0.82);
3069
+ border-left: 1px solid rgba(203, 213, 225, 0.82);
3070
+ background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88));
3071
+ transform: translateX(-50%) rotate(45deg);
3072
+ }
3073
+
3074
+ @keyframes mindcanvas-toolbar-tooltip-in {
3075
+ to {
3076
+ opacity: 1;
3077
+ transform: translateX(-50%) translateY(0);
3078
+ }
3079
+ }
3080
+
3081
+ .template-studio-chooser {
3082
+ width: min(420px, calc(100vw - 96px));
3083
+ padding: 24px 24px 20px;
3084
+ border-radius: 28px;
3085
+ border: 1px solid rgba(148, 163, 184, 0.26);
3086
+ background:
3087
+ linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
3088
+ box-shadow:
3089
+ 0 28px 54px rgba(15, 23, 42, 0.18),
3090
+ inset 0 1px 0 rgba(255, 255, 255, 0.82);
3091
+ backdrop-filter: blur(22px);
3092
+ }
3093
+
3094
+ .template-studio-chooser__actions {
3095
+ display: grid;
3096
+ gap: 12px;
3097
+ margin-top: 18px;
3098
+ }
3099
+
3100
+ .template-studio-chooser__action {
3101
+ display: grid;
3102
+ grid-template-columns: auto 1fr;
3103
+ gap: 14px;
3104
+ align-items: start;
3105
+ width: 100%;
3106
+ padding: 14px 16px;
3107
+ border-radius: 20px;
3108
+ border: 1px solid rgba(203, 213, 225, 0.9);
3109
+ background: rgba(255, 255, 255, 0.88);
3110
+ color: #0f172a;
3111
+ text-align: left;
3112
+ transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
3113
+ }
3114
+
3115
+ .template-studio-chooser__action:hover {
3116
+ transform: translateY(-1px);
3117
+ border-color: rgba(59, 130, 246, 0.28);
3118
+ box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
3119
+ }
3120
+
3121
+ .template-studio-chooser__action-icon {
3122
+ display: inline-flex;
3123
+ align-items: center;
3124
+ justify-content: center;
3125
+ width: 36px;
3126
+ height: 36px;
3127
+ border-radius: 14px;
3128
+ background: rgba(219, 234, 254, 0.92);
3129
+ color: #2563eb;
3130
+ }
3131
+
3132
+ .template-studio-chooser__action-title {
3133
+ display: block;
3134
+ font-size: 13px;
3135
+ font-weight: 700;
3136
+ letter-spacing: -0.01em;
3137
+ }
3138
+
3139
+ .template-studio-chooser__action-description {
3140
+ display: block;
3141
+ margin-top: 4px;
3142
+ font-size: 12px;
3143
+ line-height: 1.55;
3144
+ color: #475569;
3145
+ }
3146
+
3147
+ .template-studio-toolbar-stack {
3148
+ display: flex;
3149
+ flex-direction: column;
3150
+ align-items: flex-end;
3151
+ gap: 10px;
3152
+ pointer-events: auto;
3153
+ }
3154
+
3155
+ .template-studio-toolbar {
3156
+ gap: 8px;
3157
+ max-width: min(720px, calc(100vw - 112px));
3158
+ }
3159
+
3160
+ .template-studio-toolbar__badge {
3161
+ display: inline-flex;
3162
+ align-items: center;
3163
+ gap: 8px;
3164
+ padding: 0 2px 0 0;
3165
+ font-size: 11px;
3166
+ font-weight: 800;
3167
+ letter-spacing: 0.08em;
3168
+ text-transform: uppercase;
3169
+ color: #0f172a;
3170
+ }
3171
+
3172
+ .template-studio-toolbar__meta {
3173
+ max-width: 220px;
3174
+ overflow: hidden;
3175
+ text-overflow: ellipsis;
3176
+ white-space: nowrap;
3177
+ font-size: 12px;
3178
+ font-weight: 600;
3179
+ color: #475569;
3180
+ }
3181
+
3182
+ .template-studio-toolbar__meta--selected {
3183
+ max-width: 180px;
3184
+ }
3185
+
3186
+ .template-studio-toolbar__button {
3187
+ min-width: 36px;
3188
+ }
3189
+
3190
+ .template-studio-toolbar__button--active {
3191
+ background: rgba(37, 99, 235, 0.12);
3192
+ color: #1d4ed8;
3193
+ }
3194
+
3195
+ .template-studio-toolbar__token {
3196
+ font-size: 11px;
3197
+ font-weight: 700;
3198
+ letter-spacing: -0.01em;
3199
+ }
3200
+
3201
+ .template-studio-panel {
3202
+ display: flex;
3203
+ flex-direction: column;
3204
+ gap: 18px;
3205
+ overflow: auto;
3206
+ padding: 18px;
3207
+ border-radius: 26px;
3208
+ border: 1px solid rgba(203, 213, 225, 0.9);
3209
+ background: rgba(255, 255, 255, 0.9);
3210
+ box-shadow:
3211
+ 0 24px 54px rgba(15, 23, 42, 0.16),
3212
+ inset 0 1px 0 rgba(255, 255, 255, 0.72);
3213
+ backdrop-filter: blur(24px);
3214
+ }
3215
+
3216
+ .template-studio-panel__section {
3217
+ display: flex;
3218
+ flex-direction: column;
3219
+ gap: 10px;
3220
+ }
3221
+
3222
+ .template-studio-panel__eyebrow {
3223
+ font-size: 10px;
3224
+ font-weight: 800;
3225
+ letter-spacing: 0.14em;
3226
+ text-transform: uppercase;
3227
+ color: #64748b;
3228
+ }
3229
+
3230
+ .template-studio-panel__field {
3231
+ display: flex;
3232
+ flex-direction: column;
3233
+ gap: 6px;
3234
+ font-size: 12px;
3235
+ font-weight: 600;
3236
+ color: #334155;
3237
+ }
3238
+
3239
+ .template-studio-panel__input,
3240
+ .template-studio-panel__select,
3241
+ .template-studio-panel__textarea {
3242
+ width: 100%;
3243
+ border-radius: 14px;
3244
+ border: 1px solid rgba(203, 213, 225, 0.9);
3245
+ background: rgba(255, 255, 255, 0.92);
3246
+ color: #0f172a;
3247
+ font-size: 13px;
3248
+ line-height: 1.5;
3249
+ padding: 10px 12px;
3250
+ outline: none;
3251
+ transition: border-color 140ms ease, box-shadow 140ms ease;
3252
+ }
3253
+
3254
+ .template-studio-panel__textarea {
3255
+ min-height: 88px;
3256
+ resize: vertical;
3257
+ }
3258
+
3259
+ .template-studio-panel__input:focus,
3260
+ .template-studio-panel__select:focus,
3261
+ .template-studio-panel__textarea:focus {
3262
+ border-color: rgba(59, 130, 246, 0.72);
3263
+ box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
3264
+ }
3265
+
3266
+ .template-studio-panel__checkbox {
3267
+ display: inline-flex;
3268
+ align-items: center;
3269
+ gap: 10px;
3270
+ font-size: 12px;
3271
+ font-weight: 600;
3272
+ color: #334155;
3273
+ }
3274
+
3275
+ .template-studio-panel__node-summary {
3276
+ display: flex;
3277
+ flex-direction: column;
3278
+ gap: 3px;
3279
+ padding: 12px 14px;
3280
+ border-radius: 18px;
3281
+ border: 1px solid rgba(226, 232, 240, 0.92);
3282
+ background: rgba(248, 250, 252, 0.92);
3283
+ }
3284
+
3285
+ .template-studio-panel__node-title {
3286
+ font-size: 13px;
3287
+ font-weight: 700;
3288
+ color: #0f172a;
3289
+ }
3290
+
3291
+ .template-studio-panel__node-subtitle {
3292
+ font-size: 11px;
3293
+ font-weight: 600;
3294
+ color: #64748b;
3295
+ }
3296
+
3297
+ .template-studio-panel__hint {
3298
+ padding: 12px 14px;
3299
+ border-radius: 16px;
3300
+ border: 1px dashed rgba(148, 163, 184, 0.68);
3301
+ background: rgba(248, 250, 252, 0.84);
3302
+ font-size: 12px;
3303
+ line-height: 1.6;
3304
+ color: #475569;
3305
+ }
3306
+
3307
+ .template-studio-panel__issues {
3308
+ display: flex;
3309
+ flex-direction: column;
3310
+ gap: 8px;
3311
+ }
3312
+
3313
+ .template-studio-panel__issue {
3314
+ display: flex;
3315
+ flex-direction: column;
3316
+ gap: 3px;
3317
+ padding: 10px 12px;
3318
+ border-radius: 16px;
3319
+ border: 1px solid rgba(251, 191, 36, 0.32);
3320
+ background: rgba(255, 251, 235, 0.92);
3321
+ font-size: 12px;
3322
+ color: #92400e;
3323
+ }
3324
+
3325
+ .template-studio-panel__manifest-actions {
3326
+ display: flex;
3327
+ justify-content: flex-end;
3328
+ }
3329
+
3330
+ .template-studio-panel__manifest {
3331
+ margin: 0;
3332
+ max-height: 280px;
3333
+ overflow: auto;
3334
+ border-radius: 18px;
3335
+ border: 1px solid rgba(226, 232, 240, 0.92);
3336
+ background: rgba(248, 250, 252, 0.94);
3337
+ padding: 14px;
3338
+ font-size: 11px;
3339
+ line-height: 1.6;
3340
+ color: #0f172a;
3341
+ white-space: pre-wrap;
3342
+ word-break: break-word;
3343
+ }
3344
+
3345
+ @media (prefers-color-scheme: dark) {
3346
+ .sidebar-section-divider {
3347
+ background: linear-gradient(90deg, rgba(71, 85, 105, 0), rgba(148, 163, 184, 0.66), rgba(71, 85, 105, 0));
3348
+ }
3349
+
3350
+ .sidebar-icon-btn--launcher.sidebar-icon-btn--launcher-active::after {
3351
+ background: #93c5fd;
3352
+ box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.12);
3353
+ }
3354
+
3355
+ .sidebar-hover-card,
3356
+ .template-launcher-panel,
3357
+ .mindcanvas-toolbar-hint {
3358
+ border-color: rgba(71, 85, 105, 0.82);
3359
+ background:
3360
+ linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
3361
+ box-shadow:
3362
+ 0 22px 42px rgba(2, 6, 23, 0.34),
3363
+ inset 0 1px 0 rgba(255, 255, 255, 0.04);
3364
+ }
3365
+
3366
+ .mindcanvas-toolbar-hint::before {
3367
+ border-color: rgba(71, 85, 105, 0.82);
3368
+ background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
3369
+ }
3370
+
3371
+ .sidebar-hover-card__eyebrow,
3372
+ .template-launcher-panel__eyebrow {
3373
+ color: rgba(148, 163, 184, 0.82);
3374
+ }
3375
+
3376
+ .sidebar-hover-card__title,
3377
+ .mindcanvas-toolbar-hint__title,
3378
+ .template-launcher-panel__title {
3379
+ color: #f8fafc;
3380
+ }
3381
+
3382
+ .sidebar-hover-card__description,
3383
+ .mindcanvas-toolbar-hint__description,
3384
+ .template-launcher-panel__description,
3385
+ .template-launcher-panel__prompt {
3386
+ color: rgba(226, 232, 240, 0.8);
3387
+ }
3388
+
3389
+ .template-launcher-chip {
3390
+ border-color: rgba(71, 85, 105, 0.82);
3391
+ background: rgba(30, 41, 59, 0.74);
3392
+ color: rgba(226, 232, 240, 0.88);
3393
+ }
3394
+
3395
+ .template-launcher-chip:hover {
3396
+ border-color: rgba(96, 165, 250, 0.72);
3397
+ background: rgba(30, 64, 175, 0.22);
3398
+ color: #eff6ff;
3399
+ }
3400
+
3401
+ .template-launcher-chip--active {
3402
+ border-color: rgba(96, 165, 250, 0.54);
3403
+ background: rgba(30, 64, 175, 0.32);
3404
+ color: #93c5fd;
3405
+ }
3406
+
3407
+ .template-launcher-field__label {
3408
+ color: #f8fafc;
3409
+ }
3410
+
3411
+ .template-launcher-field__description,
3412
+ .template-launcher-panel__validation {
3413
+ color: rgba(226, 232, 240, 0.72);
3414
+ }
3415
+
3416
+ .template-launcher-field__input,
3417
+ .template-launcher-field__textarea,
3418
+ .template-launcher-field__select {
3419
+ border-color: rgba(71, 85, 105, 0.82);
3420
+ background: rgba(15, 23, 42, 0.68);
3421
+ color: #f8fafc;
3422
+ }
3423
+
3424
+ .template-launcher-field__input:focus,
3425
+ .template-launcher-field__textarea:focus,
3426
+ .template-launcher-field__select:focus {
3427
+ border-color: rgba(96, 165, 250, 0.72);
3428
+ box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
3429
+ background: rgba(15, 23, 42, 0.82);
3430
+ }
3431
+
3432
+ .template-launcher-panel__secondary {
3433
+ border-color: rgba(71, 85, 105, 0.82);
3434
+ background: rgba(30, 41, 59, 0.82);
3435
+ color: rgba(226, 232, 240, 0.86);
3436
+ }
3437
+
3438
+ .template-studio-chooser,
3439
+ .template-studio-panel {
3440
+ border-color: rgba(71, 85, 105, 0.82);
3441
+ background:
3442
+ linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.9));
3443
+ box-shadow:
3444
+ 0 24px 54px rgba(2, 6, 23, 0.36),
3445
+ inset 0 1px 0 rgba(255, 255, 255, 0.05);
3446
+ }
3447
+
3448
+ .template-studio-chooser__action {
3449
+ border-color: rgba(71, 85, 105, 0.72);
3450
+ background: rgba(15, 23, 42, 0.64);
3451
+ color: #f8fafc;
3452
+ }
3453
+
3454
+ .template-studio-chooser__action-description,
3455
+ .template-studio-toolbar__meta,
3456
+ .template-studio-panel__eyebrow,
3457
+ .template-studio-panel__node-subtitle,
3458
+ .template-studio-panel__hint {
3459
+ color: rgba(226, 232, 240, 0.72);
3460
+ }
3461
+
3462
+ .template-studio-toolbar__badge,
3463
+ .template-studio-panel__node-title,
3464
+ .template-studio-panel__field,
3465
+ .template-studio-panel__manifest {
3466
+ color: #f8fafc;
3467
+ }
3468
+
3469
+ .template-studio-panel__input,
3470
+ .template-studio-panel__select,
3471
+ .template-studio-panel__textarea,
3472
+ .template-studio-panel__node-summary,
3473
+ .template-studio-panel__manifest {
3474
+ border-color: rgba(71, 85, 105, 0.82);
3475
+ background: rgba(15, 23, 42, 0.68);
3476
+ color: #f8fafc;
3477
+ }
3478
+
3479
+ .template-studio-panel__hint {
3480
+ border-color: rgba(71, 85, 105, 0.8);
3481
+ background: rgba(15, 23, 42, 0.54);
3482
+ }
3483
+
3484
+ .template-studio-panel__issue {
3485
+ border-color: rgba(251, 191, 36, 0.28);
3486
+ background: rgba(120, 53, 15, 0.22);
3487
+ color: #fcd34d;
3488
+ }
3489
+
3490
+ .template-studio-toolbar__button--active {
3491
+ background: rgba(59, 130, 246, 0.18);
3492
+ color: #93c5fd;
3493
+ }
3494
+ }
3495
+
3496
+ /* Low-detail CSS3D proxy policy.
3497
+ MID/FAR overview cards are not a readable text surface. Keeping the full
3498
+ DOM body at that scale turns content into aliasing noise, so non-selected
3499
+ low-detail text-like nodes collapse to a lightweight surface. Keep a
3500
+ screen-pixel outline instead of a layout border so idle and pan frames share
3501
+ the same visible edge without changing hit geometry. NEAR and selected nodes
3502
+ remain high-detail. */
3503
+ html body .css3d-resolution-wrapper.lod-low.node-type-text > .map-node,
3504
+ html body .css3d-resolution-wrapper.lod-low.node-type-markdown > .map-node,
3505
+ html body .css3d-resolution-wrapper.lod-low.node-type-note > .map-node-note,
3506
+ html body .css3d-resolution-wrapper.lod-low.node-type-code > .map-node-code,
3507
+ html body .css3d-resolution-wrapper.lod-low.node-type-memo > .map-node-memo:not(.map-node-template-card):not(.map-node-remote-fleet),
3508
+ html body .css3d-resolution-wrapper.lod-low > .map-node-agent:not(.map-node-template-card):not(.map-node-remote-fleet),
3509
+ html body .css3d-resolution-wrapper.lod-low > .map-node-automation:not(.map-node-template-card):not(.map-node-remote-fleet) {
3510
+ background: rgba(255, 255, 255, 0.92) !important;
3511
+ border: 0 !important;
3512
+ outline: 1px solid var(--mind-node-static-edge) !important;
3513
+ outline-offset: 0 !important;
3514
+ -webkit-box-shadow: none !important;
3515
+ box-shadow: none !important;
3516
+ -webkit-filter: none !important;
3517
+ filter: none !important;
3518
+ }
3519
+
3520
+ html body .css3d-resolution-wrapper.lod-low.node-type-text .node-prompt-row,
3521
+ html body .css3d-resolution-wrapper.lod-low.node-type-markdown .node-prompt-row,
3522
+ html body .css3d-resolution-wrapper.lod-low.node-type-note .node-prompt-row,
3523
+ html body .css3d-resolution-wrapper.lod-low.node-type-code .node-prompt-row,
3524
+ html body .css3d-resolution-wrapper.lod-low.node-type-text .node-prompt,
3525
+ html body .css3d-resolution-wrapper.lod-low.node-type-markdown .node-prompt,
3526
+ html body .css3d-resolution-wrapper.lod-low.node-type-note .node-prompt,
3527
+ html body .css3d-resolution-wrapper.lod-low.node-type-code .node-prompt,
3528
+ html body .css3d-resolution-wrapper.lod-low.node-type-text .ai-loading-row,
3529
+ html body .css3d-resolution-wrapper.lod-low.node-type-markdown .ai-loading-row,
3530
+ html body .css3d-resolution-wrapper.lod-low.node-type-note .ai-loading-row,
3531
+ html body .css3d-resolution-wrapper.lod-low.node-type-code .ai-loading-row,
3532
+ html body .css3d-resolution-wrapper.lod-low.node-type-text hr,
3533
+ html body .css3d-resolution-wrapper.lod-low.node-type-markdown hr,
3534
+ html body .css3d-resolution-wrapper.lod-low.node-type-note hr,
3535
+ html body .css3d-resolution-wrapper.lod-low.node-type-code hr,
3536
+ html body .css3d-resolution-wrapper.lod-low.node-type-memo .map-node-memo__header,
3537
+ html body .css3d-resolution-wrapper.lod-low.node-type-memo .map-node-memo__body,
3538
+ html body .css3d-resolution-wrapper.lod-low.node-type-memo .map-node-memo__body-view,
3539
+ html body .css3d-resolution-wrapper.lod-low.node-type-memo .map-node-memo__agent-actions,
3540
+ html body .css3d-resolution-wrapper.lod-low.node-type-memo .map-node-memo__agent-plan-panel,
3541
+ html body .css3d-resolution-wrapper.lod-low.node-type-memo .map-node-memo__agent-console-panel,
3542
+ html body .css3d-resolution-wrapper.lod-low.node-type-memo .map-node-memo__agent-results,
3543
+ html body .css3d-resolution-wrapper.lod-low.node-type-memo .map-node-memo__automation-pins,
3544
+ html body .css3d-resolution-wrapper.lod-low.node-type-memo .map-node-memo__automation-pin,
3545
+ html body .css3d-resolution-wrapper.lod-low .map-node-memo__automation-pins,
3546
+ html body .css3d-resolution-wrapper.lod-low .map-node-memo__automation-pin,
3547
+ html body .css3d-resolution-wrapper.lod-low .map-node-memo__automation-pin-dot,
3548
+ html body .css3d-resolution-wrapper.lod-low .map-node-memo__automation-pin-label,
3549
+ html body .css3d-resolution-wrapper.lod-low > .map-node-agent .map-node-memo__header,
3550
+ html body .css3d-resolution-wrapper.lod-low > .map-node-automation .map-node-memo__header,
3551
+ html body .css3d-resolution-wrapper.lod-low > .map-node-agent .map-node-memo__automation-pins,
3552
+ html body .css3d-resolution-wrapper.lod-low > .map-node-agent .map-node-memo__automation-pin,
3553
+ html body .css3d-resolution-wrapper.lod-low > .map-node-automation .map-node-memo__automation-pins,
3554
+ html body .css3d-resolution-wrapper.lod-low > .map-node-automation .map-node-memo__automation-pin,
3555
+ html body .css3d-resolution-wrapper.lod-low .css3d-resize-hit-layer {
3556
+ display: none !important;
3557
+ }
3558
+
3559
+ html body .css3d-resolution-wrapper.lod-low.node-type-text .node-content-wrapper,
3560
+ html body .css3d-resolution-wrapper.lod-low.node-type-markdown .node-content-wrapper,
3561
+ html body .css3d-resolution-wrapper.lod-low.node-type-note .node-content-wrapper,
3562
+ html body .css3d-resolution-wrapper.lod-low.node-type-code .node-content-wrapper,
3563
+ html body .css3d-resolution-wrapper.lod-low.node-type-memo .map-node-memo__shell,
3564
+ html body .css3d-resolution-wrapper.lod-low > .map-node-agent .map-node-memo__shell,
3565
+ html body .css3d-resolution-wrapper.lod-low > .map-node-automation .map-node-memo__shell {
3566
+ background: transparent !important;
3567
+ color: transparent !important;
3568
+ font-size: 0 !important;
3569
+ line-height: 0 !important;
3570
+ text-shadow: none !important;
3571
+ padding: 0 !important;
3572
+ border: 0 !important;
3573
+ overflow: hidden !important;
3574
+ }
3575
+
3576
+ html body .css3d-resolution-wrapper.lod-low.node-type-video > .map-node {
3577
+ background: rgba(255, 255, 255, 0.9) !important;
3578
+ border: 0 !important;
3579
+ -webkit-box-shadow: none !important;
3580
+ box-shadow: none !important;
3581
+ outline: 0 !important;
3582
+ overflow: hidden !important;
3583
+ }
3584
+
3585
+ html body .css3d-resolution-wrapper.lod-low.node-type-video .node-response,
3586
+ html body .css3d-resolution-wrapper.lod-low.node-type-video .ai-loading-row,
3587
+ html body .css3d-resolution-wrapper.lod-low.node-type-video video,
3588
+ html body .css3d-resolution-wrapper.lod-low.node-type-video canvas.mind-map-video-proxy,
3589
+ html body .css3d-resolution-wrapper.lod-low.node-type-video .video-content > video,
3590
+ html body .css3d-resolution-wrapper.lod-low.node-type-video .video-content > canvas.mind-map-video-proxy {
3591
+ display: none !important;
3592
+ opacity: 0 !important;
3593
+ pointer-events: none !important;
3594
+ }
3595
+
3596
+ /* Ref visual restore for full-res/high-detail CSS3D nodes.
3597
+ Performance LOD proxies stay flat through the lod-low rules above; NEAR and
3598
+ NORMAL keep the original depth, selection glow, and media wrapper shadow. */
3599
+ html body .css3d-resolution-wrapper:not(.lod-low) {
3600
+ -webkit-box-shadow:
3601
+ 0 0 6px rgba(15, 23, 42, 0.25),
3602
+ 0 0 16px rgba(15, 23, 42, 0.18),
3603
+ 0 0 30px rgba(15, 23, 42, 0.12),
3604
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
3605
+ box-shadow:
3606
+ 0 0 6px rgba(15, 23, 42, 0.25),
3607
+ 0 0 16px rgba(15, 23, 42, 0.18),
3608
+ 0 0 30px rgba(15, 23, 42, 0.12),
3609
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
3610
+ }
3611
+
3612
+ /* Keep the settled full-res edge visually stable with the motion/low-detail shell.
3613
+ Use outline instead of border so the CSS3D hit geometry and layout stay unchanged. */
3614
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-text,
3615
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-markdown,
3616
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-note,
3617
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-code,
3618
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-memo,
3619
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-agent,
3620
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-automation {
3621
+ outline: 1px solid var(--mind-node-static-edge) !important;
3622
+ outline-offset: 0 !important;
3623
+ }
3624
+
3625
+ html body .css3d-resolution-wrapper:not(.lod-low).selected,
3626
+ html body .css3d-resolution-wrapper:not(.lod-low).selection-style-agent.selected {
3627
+ outline: 1px solid rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.24) !important;
3628
+ outline-offset: 1px !important;
3629
+ -webkit-box-shadow:
3630
+ 0 0 4px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.56),
3631
+ 0 0 12px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.44),
3632
+ 0 0 28px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.32),
3633
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft, 191, 219, 254), 0.26) !important;
3634
+ box-shadow:
3635
+ 0 0 4px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.56),
3636
+ 0 0 12px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.44),
3637
+ 0 0 28px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.32),
3638
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft, 191, 219, 254), 0.26) !important;
3639
+ -webkit-filter: saturate(1.08) !important;
3640
+ filter: saturate(1.08) !important;
3641
+ }
3642
+
3643
+ html body .css3d-resolution-wrapper:not(.lod-low).node-type-note,
3644
+ html body .css3d-resolution-wrapper:not(.lod-low).node-type-image,
3645
+ html body .css3d-resolution-wrapper:not(.lod-low).node-type-video,
3646
+ html body .css3d-resolution-wrapper:not(.lod-low).node-type-embed,
3647
+ html body .css3d-resolution-wrapper:not(.lod-low).selected-media-safe {
3648
+ -webkit-box-shadow:
3649
+ 0 0 6px rgba(15, 23, 42, 0.25),
3650
+ 0 0 16px rgba(15, 23, 42, 0.18),
3651
+ 0 0 30px rgba(15, 23, 42, 0.12),
3652
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
3653
+ box-shadow:
3654
+ 0 0 6px rgba(15, 23, 42, 0.25),
3655
+ 0 0 16px rgba(15, 23, 42, 0.18),
3656
+ 0 0 30px rgba(15, 23, 42, 0.12),
3657
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
3658
+ }
3659
+
3660
+ html body .css3d-resolution-wrapper:not(.lod-low).node-type-note.selected,
3661
+ html body .css3d-resolution-wrapper:not(.lod-low).node-type-image.selected {
3662
+ -webkit-box-shadow:
3663
+ 0 0 4px rgba(var(--node-selection-glow-rgb), 0.56),
3664
+ 0 0 12px rgba(var(--node-selection-glow-rgb), 0.44),
3665
+ 0 0 28px rgba(var(--node-selection-glow-rgb), 0.32),
3666
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft), 0.26) !important;
3667
+ box-shadow:
3668
+ 0 0 4px rgba(var(--node-selection-glow-rgb), 0.56),
3669
+ 0 0 12px rgba(var(--node-selection-glow-rgb), 0.44),
3670
+ 0 0 28px rgba(var(--node-selection-glow-rgb), 0.32),
3671
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft), 0.26) !important;
3672
+ -webkit-filter: saturate(1.08) !important;
3673
+ filter: saturate(1.08) !important;
3674
+ }
3675
+
3676
+ html body .css3d-resolution-wrapper:not(.lod-low).node-type-video.selected,
3677
+ html body .css3d-resolution-wrapper:not(.lod-low).node-type-embed.selected {
3678
+ outline: 1px solid rgba(var(--node-selection-glow-rgb), 0.24) !important;
3679
+ outline-offset: 1px !important;
3680
+ }
3681
+
3682
+ html body .css3d-resolution-wrapper:not(.lod-low).node-type-video.selected-media-safe .map-node.selected,
3683
+ html body .css3d-resolution-wrapper:not(.lod-low).node-type-embed.selected-media-safe .map-node.selected {
3684
+ outline: 1px solid rgba(var(--node-selection-glow-rgb), 0.82) !important;
3685
+ outline-offset: -1px !important;
3686
+ -webkit-box-shadow:
3687
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb), 0.18) inset,
3688
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb-soft), 0.12) !important;
3689
+ box-shadow:
3690
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb), 0.18) inset,
3691
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb-soft), 0.12) !important;
3692
+ }
3693
+
3694
+ html body .css3d-resolution-wrapper:not(.lod-low) > .map-node-bubble.selected,
3695
+ html body .css3d-resolution-wrapper:not(.lod-low) > .map-node-note.selected,
3696
+ html body .css3d-resolution-wrapper:not(.lod-low) > .map-node-note:focus-within,
3697
+ html body .css3d-resolution-wrapper:not(.lod-low) > .map-node-code.selected,
3698
+ html body .css3d-resolution-wrapper:not(.lod-low) > .map-node-code:focus-within {
3699
+ -webkit-box-shadow:
3700
+ 0 0 18px 0 rgba(var(--mind-node-selection-glow-rgb), 0.24),
3701
+ 0 0 32px 0 rgba(var(--mind-node-selection-glow-soft-rgb), 0.16) !important;
3702
+ box-shadow:
3703
+ 0 0 18px 0 rgba(var(--mind-node-selection-glow-rgb), 0.24),
3704
+ 0 0 32px 0 rgba(var(--mind-node-selection-glow-soft-rgb), 0.16) !important;
3705
+ }