claudeck 1.0.0

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 (157) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +233 -0
  3. package/cli.js +2 -0
  4. package/config/agent-chains.json +16 -0
  5. package/config/agent-dags.json +16 -0
  6. package/config/agents.json +46 -0
  7. package/config/bot-prompt.json +3 -0
  8. package/config/folders.json +66 -0
  9. package/config/prompts.json +92 -0
  10. package/config/repos.json +86 -0
  11. package/config/telegram-config.json +17 -0
  12. package/config/workflows.json +90 -0
  13. package/db.js +1198 -0
  14. package/package.json +55 -0
  15. package/plugins/claude-editor/client.css +171 -0
  16. package/plugins/claude-editor/client.js +183 -0
  17. package/plugins/event-stream/client.css +207 -0
  18. package/plugins/event-stream/client.js +271 -0
  19. package/plugins/linear/client.css +345 -0
  20. package/plugins/linear/client.js +380 -0
  21. package/plugins/linear/config.json +5 -0
  22. package/plugins/linear/server.js +312 -0
  23. package/plugins/repos/client.css +549 -0
  24. package/plugins/repos/client.js +663 -0
  25. package/plugins/repos/server.js +232 -0
  26. package/plugins/sudoku/client.css +196 -0
  27. package/plugins/sudoku/client.js +329 -0
  28. package/plugins/tasks/client.css +414 -0
  29. package/plugins/tasks/client.js +394 -0
  30. package/plugins/tasks/server.js +116 -0
  31. package/plugins/tic-tac-toe/client.css +167 -0
  32. package/plugins/tic-tac-toe/client.js +241 -0
  33. package/public/css/core/components.css +232 -0
  34. package/public/css/core/layout.css +330 -0
  35. package/public/css/core/print.css +18 -0
  36. package/public/css/core/reset.css +36 -0
  37. package/public/css/core/responsive.css +378 -0
  38. package/public/css/core/theme.css +116 -0
  39. package/public/css/core/variables.css +93 -0
  40. package/public/css/features/agent-monitor.css +297 -0
  41. package/public/css/features/agent-sidebar.css +525 -0
  42. package/public/css/features/agents.css +996 -0
  43. package/public/css/features/analytics.css +181 -0
  44. package/public/css/features/background-sessions.css +321 -0
  45. package/public/css/features/cost-dashboard.css +168 -0
  46. package/public/css/features/home.css +313 -0
  47. package/public/css/features/retro-terminal.css +88 -0
  48. package/public/css/features/telegram.css +127 -0
  49. package/public/css/features/tour.css +148 -0
  50. package/public/css/features/voice-input.css +60 -0
  51. package/public/css/features/welcome.css +241 -0
  52. package/public/css/panels/assistant-bot.css +442 -0
  53. package/public/css/panels/dev-docs.css +292 -0
  54. package/public/css/panels/file-explorer.css +322 -0
  55. package/public/css/panels/git-panel.css +221 -0
  56. package/public/css/panels/mcp-manager.css +199 -0
  57. package/public/css/panels/tips-feed.css +353 -0
  58. package/public/css/ui/commands.css +273 -0
  59. package/public/css/ui/context-gauge.css +76 -0
  60. package/public/css/ui/file-picker.css +69 -0
  61. package/public/css/ui/image-attachments.css +106 -0
  62. package/public/css/ui/messages.css +884 -0
  63. package/public/css/ui/modals.css +122 -0
  64. package/public/css/ui/parallel.css +217 -0
  65. package/public/css/ui/permissions.css +110 -0
  66. package/public/css/ui/right-panel.css +481 -0
  67. package/public/css/ui/sessions.css +689 -0
  68. package/public/css/ui/status-bar.css +425 -0
  69. package/public/css/ui/toolbox.css +206 -0
  70. package/public/data/tips.json +218 -0
  71. package/public/icons/favicon.png +0 -0
  72. package/public/icons/icon-192.png +0 -0
  73. package/public/icons/icon-512.png +0 -0
  74. package/public/icons/whaly.png +0 -0
  75. package/public/index.html +1140 -0
  76. package/public/js/core/api.js +591 -0
  77. package/public/js/core/constants.js +3 -0
  78. package/public/js/core/dom.js +270 -0
  79. package/public/js/core/events.js +10 -0
  80. package/public/js/core/plugin-loader.js +153 -0
  81. package/public/js/core/store.js +39 -0
  82. package/public/js/core/utils.js +25 -0
  83. package/public/js/core/ws.js +64 -0
  84. package/public/js/features/agent-monitor.js +222 -0
  85. package/public/js/features/agents.js +1209 -0
  86. package/public/js/features/analytics.js +397 -0
  87. package/public/js/features/attachments.js +251 -0
  88. package/public/js/features/background-sessions.js +475 -0
  89. package/public/js/features/chat.js +589 -0
  90. package/public/js/features/cost-dashboard.js +152 -0
  91. package/public/js/features/dag-editor.js +399 -0
  92. package/public/js/features/easter-egg.js +46 -0
  93. package/public/js/features/home.js +270 -0
  94. package/public/js/features/projects.js +372 -0
  95. package/public/js/features/prompts.js +228 -0
  96. package/public/js/features/sessions.js +332 -0
  97. package/public/js/features/telegram.js +131 -0
  98. package/public/js/features/tour.js +210 -0
  99. package/public/js/features/voice-input.js +185 -0
  100. package/public/js/features/welcome.js +43 -0
  101. package/public/js/features/workflows.js +277 -0
  102. package/public/js/main.js +51 -0
  103. package/public/js/panels/assistant-bot.js +445 -0
  104. package/public/js/panels/dev-docs.js +380 -0
  105. package/public/js/panels/file-explorer.js +486 -0
  106. package/public/js/panels/git-panel.js +285 -0
  107. package/public/js/panels/mcp-manager.js +311 -0
  108. package/public/js/panels/tips-feed.js +303 -0
  109. package/public/js/ui/commands.js +114 -0
  110. package/public/js/ui/context-gauge.js +100 -0
  111. package/public/js/ui/diff.js +124 -0
  112. package/public/js/ui/disabled-tools.js +36 -0
  113. package/public/js/ui/export.js +74 -0
  114. package/public/js/ui/formatting.js +206 -0
  115. package/public/js/ui/header-dropdowns.js +72 -0
  116. package/public/js/ui/input-meta.js +71 -0
  117. package/public/js/ui/max-turns.js +21 -0
  118. package/public/js/ui/messages.js +387 -0
  119. package/public/js/ui/model-selector.js +20 -0
  120. package/public/js/ui/notifications.js +232 -0
  121. package/public/js/ui/parallel.js +176 -0
  122. package/public/js/ui/permissions.js +168 -0
  123. package/public/js/ui/right-panel.js +173 -0
  124. package/public/js/ui/shortcuts.js +143 -0
  125. package/public/js/ui/sidebar-toggle.js +29 -0
  126. package/public/js/ui/status-bar.js +172 -0
  127. package/public/js/ui/tab-sdk.js +623 -0
  128. package/public/js/ui/theme.js +38 -0
  129. package/public/manifest.json +13 -0
  130. package/public/offline.html +190 -0
  131. package/public/style.css +42 -0
  132. package/public/sw.js +91 -0
  133. package/server/agent-loop.js +385 -0
  134. package/server/dag-executor.js +265 -0
  135. package/server/orchestrator.js +514 -0
  136. package/server/paths.js +61 -0
  137. package/server/plugin-mount.js +56 -0
  138. package/server/push-sender.js +31 -0
  139. package/server/routes/agents.js +294 -0
  140. package/server/routes/bot.js +45 -0
  141. package/server/routes/exec.js +35 -0
  142. package/server/routes/files.js +218 -0
  143. package/server/routes/mcp.js +82 -0
  144. package/server/routes/messages.js +36 -0
  145. package/server/routes/notifications.js +37 -0
  146. package/server/routes/projects.js +207 -0
  147. package/server/routes/prompts.js +53 -0
  148. package/server/routes/sessions.js +103 -0
  149. package/server/routes/stats.js +143 -0
  150. package/server/routes/telegram.js +71 -0
  151. package/server/routes/tips.js +135 -0
  152. package/server/routes/workflows.js +81 -0
  153. package/server/summarizer.js +55 -0
  154. package/server/telegram-poller.js +205 -0
  155. package/server/telegram-sender.js +304 -0
  156. package/server/ws-handler.js +926 -0
  157. package/server.js +179 -0
@@ -0,0 +1,525 @@
1
+ /* ── Agent Sidebar ─────────────────────────────────────── */
2
+ /* Left sidebar panel for agents, chains, DAGs */
3
+
4
+ .agent-sidebar {
5
+ position: relative;
6
+ width: 280px;
7
+ min-width: 220px;
8
+ max-width: 50vw;
9
+ background: var(--bg-secondary);
10
+ border-right: 1px solid var(--border);
11
+ display: flex;
12
+ flex-direction: column;
13
+ overflow: hidden;
14
+ transition: width 0.25s var(--ease-out-expo), opacity 0.2s;
15
+ flex-shrink: 0;
16
+ z-index: 10;
17
+ }
18
+
19
+ .agent-sidebar.hidden {
20
+ width: 0 !important;
21
+ min-width: 0;
22
+ border-right: none;
23
+ opacity: 0;
24
+ pointer-events: none;
25
+ }
26
+
27
+ /* Header */
28
+ .agent-sidebar-header {
29
+ display: flex;
30
+ align-items: center;
31
+ justify-content: space-between;
32
+ height: 38px;
33
+ padding: 0 12px;
34
+ border-bottom: 1px solid var(--border);
35
+ flex-shrink: 0;
36
+ background: linear-gradient(180deg, rgba(86, 212, 221, 0.03) 0%, transparent 100%);
37
+ }
38
+
39
+ .agent-sidebar-title-row {
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 7px;
43
+ }
44
+
45
+ .agent-sidebar-logo {
46
+ color: var(--cyan);
47
+ opacity: 0.8;
48
+ }
49
+
50
+ .agent-sidebar-title {
51
+ font-family: var(--font-display);
52
+ font-size: 11px;
53
+ font-weight: 700;
54
+ text-transform: uppercase;
55
+ letter-spacing: 0.12em;
56
+ color: var(--cyan);
57
+ }
58
+
59
+ .agent-sidebar-close {
60
+ background: none;
61
+ border: none;
62
+ color: var(--text-dim);
63
+ font-size: 18px;
64
+ cursor: pointer;
65
+ width: 26px;
66
+ height: 26px;
67
+ display: flex;
68
+ align-items: center;
69
+ justify-content: center;
70
+ border-radius: var(--radius);
71
+ transition: all 0.15s;
72
+ }
73
+
74
+ .agent-sidebar-close:hover {
75
+ background: var(--bg-tertiary);
76
+ color: var(--text);
77
+ }
78
+
79
+ /* Body — override the old toolbox-panel grid with a vertical stack */
80
+ .agent-sidebar-body {
81
+ flex: 1;
82
+ overflow-y: auto;
83
+ overflow-x: hidden;
84
+ padding: 8px;
85
+ display: flex;
86
+ flex-direction: column;
87
+ gap: 6px;
88
+ }
89
+
90
+ /* Override toolbox-card styling inside sidebar */
91
+ .agent-sidebar-body .toolbox-card {
92
+ background: var(--bg-tertiary);
93
+ border: 1px solid var(--border-subtle);
94
+ border-radius: var(--radius-md);
95
+ padding: 10px 12px;
96
+ cursor: pointer;
97
+ transition: all 0.2s var(--ease-smooth);
98
+ width: 100%;
99
+ }
100
+
101
+ .agent-sidebar-body .toolbox-card:hover {
102
+ border-color: var(--border);
103
+ background: var(--bg-elevated);
104
+ transform: translateX(2px);
105
+ }
106
+
107
+ .agent-sidebar-body .toolbox-card-title {
108
+ font-size: 12px;
109
+ font-weight: 600;
110
+ color: var(--text);
111
+ display: flex;
112
+ align-items: center;
113
+ gap: 6px;
114
+ margin-bottom: 3px;
115
+ }
116
+
117
+ .agent-sidebar-body .toolbox-card-desc {
118
+ font-size: 11px;
119
+ color: var(--text-dim);
120
+ line-height: 1.4;
121
+ display: -webkit-box;
122
+ -webkit-line-clamp: 2;
123
+ -webkit-box-orient: vertical;
124
+ overflow: hidden;
125
+ }
126
+
127
+ /* Section headers */
128
+ .agent-sidebar-body .agent-section-header {
129
+ font-family: var(--font-mono);
130
+ font-size: 9px;
131
+ font-weight: 700;
132
+ text-transform: uppercase;
133
+ letter-spacing: 0.12em;
134
+ color: var(--text-dim);
135
+ padding: 10px 4px 4px;
136
+ border-bottom: 1px solid var(--border-subtle);
137
+ margin: 2px 0;
138
+ }
139
+
140
+ /* Add cards */
141
+ .agent-sidebar-body .toolbox-card-add {
142
+ background: none;
143
+ border: 1px dashed var(--border);
144
+ border-radius: var(--radius-md);
145
+ padding: 8px 12px;
146
+ color: var(--text-dim);
147
+ font-size: 11px;
148
+ font-family: var(--font-sans);
149
+ cursor: pointer;
150
+ text-align: center;
151
+ transition: all 0.15s;
152
+ width: 100%;
153
+ }
154
+
155
+ .agent-sidebar-body .toolbox-card-add:hover {
156
+ border-color: var(--cyan);
157
+ color: var(--cyan);
158
+ }
159
+
160
+ /* Orch card accent */
161
+ .agent-sidebar-body .orch-card {
162
+ border-left: 2px solid var(--user, #7b9bf5);
163
+ }
164
+
165
+ /* Monitor card accent */
166
+ .agent-sidebar-body .monitor-card {
167
+ border-left: 2px solid var(--success);
168
+ }
169
+
170
+ /* Chain card in sidebar */
171
+ .agent-sidebar-body .chain-card {
172
+ border-left: 2px solid var(--accent);
173
+ }
174
+
175
+ .agent-sidebar-body .chain-steps-preview {
176
+ margin-top: 4px;
177
+ }
178
+
179
+ .agent-sidebar-body .chain-step-tag {
180
+ font-size: 9px;
181
+ padding: 1px 4px;
182
+ }
183
+
184
+ /* DAG card in sidebar */
185
+ .agent-sidebar-body .dag-card {
186
+ border-left: 2px solid var(--warning, #e5c07b);
187
+ }
188
+
189
+ .agent-sidebar-body .dag-nodes-preview {
190
+ margin-top: 4px;
191
+ }
192
+
193
+ /* Agent card hover actions in sidebar */
194
+ .agent-sidebar-body .agent-card-actions {
195
+ top: 4px;
196
+ right: 4px;
197
+ }
198
+
199
+ /* ── Enhanced Form Styling ─────────────────────────────── */
200
+
201
+ .agent-form-modal {
202
+ width: 520px;
203
+ max-height: 85vh;
204
+ overflow-y: auto;
205
+ }
206
+
207
+ /* Form sections */
208
+ .af-section {
209
+ margin-bottom: 16px;
210
+ padding: 12px;
211
+ background: var(--bg);
212
+ border: 1px solid var(--border-subtle);
213
+ border-radius: var(--radius-md);
214
+ }
215
+
216
+ .af-section-label {
217
+ font-family: var(--font-display);
218
+ font-size: 9px;
219
+ font-weight: 700;
220
+ text-transform: uppercase;
221
+ letter-spacing: 0.12em;
222
+ color: var(--cyan);
223
+ margin-bottom: 10px;
224
+ padding-bottom: 6px;
225
+ border-bottom: 1px solid var(--border-subtle);
226
+ }
227
+
228
+ .af-grid-2 {
229
+ display: grid;
230
+ grid-template-columns: 1fr 1fr;
231
+ gap: 10px;
232
+ }
233
+
234
+ .af-field {
235
+ margin-bottom: 8px;
236
+ }
237
+
238
+ .af-field:last-child {
239
+ margin-bottom: 0;
240
+ }
241
+
242
+ .af-field label {
243
+ display: block;
244
+ font-size: 10px;
245
+ font-weight: 600;
246
+ text-transform: uppercase;
247
+ letter-spacing: 0.08em;
248
+ color: var(--text-dim);
249
+ margin-bottom: 5px;
250
+ font-family: var(--font-display);
251
+ }
252
+
253
+ .af-field input,
254
+ .af-field textarea,
255
+ .af-field select {
256
+ width: 100%;
257
+ background: var(--bg-secondary);
258
+ border: 1px solid var(--border);
259
+ border-radius: var(--radius);
260
+ padding: 8px 10px;
261
+ color: var(--text);
262
+ font-size: 12px;
263
+ font-family: var(--font-sans);
264
+ outline: none;
265
+ transition: all 0.2s var(--ease-smooth);
266
+ caret-color: var(--cyan);
267
+ }
268
+
269
+ .af-field textarea {
270
+ resize: vertical;
271
+ min-height: 80px;
272
+ line-height: 1.5;
273
+ font-family: var(--font-mono);
274
+ font-size: 11px;
275
+ }
276
+
277
+ .af-field input:focus,
278
+ .af-field textarea:focus,
279
+ .af-field select:focus {
280
+ border-color: var(--cyan);
281
+ box-shadow: 0 0 8px rgba(86, 212, 221, 0.12), 0 0 0 1px rgba(86, 212, 221, 0.08);
282
+ }
283
+
284
+ .af-field select {
285
+ cursor: pointer;
286
+ appearance: none;
287
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233a4250' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
288
+ background-repeat: no-repeat;
289
+ background-position: right 8px center;
290
+ padding-right: 28px;
291
+ }
292
+
293
+ .af-input-with-hint {
294
+ position: relative;
295
+ }
296
+
297
+ .af-hint {
298
+ position: absolute;
299
+ right: 8px;
300
+ top: 50%;
301
+ transform: translateY(-50%);
302
+ font-family: var(--font-mono);
303
+ font-size: 9px;
304
+ color: var(--text-dim);
305
+ pointer-events: none;
306
+ }
307
+
308
+ /* Chain form — agent list inside af-section */
309
+ .af-section .chain-agent-list {
310
+ margin-bottom: 8px;
311
+ }
312
+
313
+ .af-section .chain-add-agent-btn {
314
+ margin-bottom: 0;
315
+ }
316
+
317
+ /* Light theme */
318
+ html[data-theme="light"] .agent-sidebar {
319
+ background: var(--bg-secondary);
320
+ }
321
+
322
+ html[data-theme="light"] .agent-sidebar-header {
323
+ background: linear-gradient(180deg, rgba(42, 138, 154, 0.04) 0%, transparent 100%);
324
+ }
325
+
326
+ html[data-theme="light"] .agent-sidebar-logo,
327
+ html[data-theme="light"] .agent-sidebar-title {
328
+ color: #2a8a9a;
329
+ }
330
+
331
+ html[data-theme="light"] .af-section-label {
332
+ color: #2a8a9a;
333
+ }
334
+
335
+ /* ── Workflow Step Editor ─────────────────────────────── */
336
+
337
+ .wf-steps-list {
338
+ display: flex;
339
+ flex-direction: column;
340
+ gap: 8px;
341
+ margin-bottom: 8px;
342
+ }
343
+
344
+ .wf-step-row {
345
+ display: flex;
346
+ align-items: flex-start;
347
+ gap: 8px;
348
+ padding: 8px;
349
+ background: var(--bg-secondary);
350
+ border: 1px solid var(--border-subtle);
351
+ border-radius: var(--radius);
352
+ }
353
+
354
+ .wf-step-number {
355
+ flex-shrink: 0;
356
+ width: 22px;
357
+ height: 22px;
358
+ display: flex;
359
+ align-items: center;
360
+ justify-content: center;
361
+ border-radius: 50%;
362
+ background: rgba(86, 212, 221, 0.1);
363
+ color: var(--cyan);
364
+ font-family: var(--font-mono);
365
+ font-size: 10px;
366
+ font-weight: 700;
367
+ border: 1px solid rgba(86, 212, 221, 0.2);
368
+ margin-top: 4px;
369
+ }
370
+
371
+ .wf-step-fields {
372
+ flex: 1;
373
+ display: flex;
374
+ flex-direction: column;
375
+ gap: 6px;
376
+ min-width: 0;
377
+ }
378
+
379
+ .wf-step-fields input,
380
+ .wf-step-fields textarea {
381
+ width: 100%;
382
+ background: var(--bg);
383
+ border: 1px solid var(--border);
384
+ border-radius: var(--radius);
385
+ padding: 6px 8px;
386
+ color: var(--text);
387
+ font-size: 12px;
388
+ font-family: var(--font-sans);
389
+ outline: none;
390
+ transition: border-color 0.2s;
391
+ caret-color: var(--cyan);
392
+ }
393
+
394
+ .wf-step-fields textarea {
395
+ resize: vertical;
396
+ min-height: 56px;
397
+ line-height: 1.5;
398
+ font-family: var(--font-mono);
399
+ font-size: 11px;
400
+ }
401
+
402
+ .wf-step-fields input:focus,
403
+ .wf-step-fields textarea:focus {
404
+ border-color: var(--cyan);
405
+ box-shadow: 0 0 8px rgba(86, 212, 221, 0.12);
406
+ }
407
+
408
+ .wf-step-remove {
409
+ flex-shrink: 0;
410
+ background: none;
411
+ border: none;
412
+ color: var(--text-dim);
413
+ font-size: 16px;
414
+ cursor: pointer;
415
+ width: 22px;
416
+ height: 22px;
417
+ display: flex;
418
+ align-items: center;
419
+ justify-content: center;
420
+ border-radius: var(--radius);
421
+ transition: all 0.15s;
422
+ margin-top: 4px;
423
+ }
424
+
425
+ .wf-step-remove:hover {
426
+ background: rgba(255, 80, 80, 0.1);
427
+ color: var(--error, #e55);
428
+ }
429
+
430
+ .wf-step-add {
431
+ background: none;
432
+ border: 1px dashed var(--border);
433
+ border-radius: var(--radius);
434
+ padding: 6px 12px;
435
+ color: var(--text-dim);
436
+ font-size: 11px;
437
+ font-family: var(--font-sans);
438
+ cursor: pointer;
439
+ text-align: center;
440
+ transition: all 0.15s;
441
+ width: 100%;
442
+ }
443
+
444
+ .wf-step-add:hover {
445
+ border-color: var(--cyan);
446
+ color: var(--cyan);
447
+ }
448
+
449
+ /* Workflow card accent in sidebar */
450
+ .agent-sidebar-body .wf-card {
451
+ border-left: 2px solid var(--cyan);
452
+ }
453
+
454
+ html[data-theme="light"] .wf-step-number {
455
+ background: rgba(42, 138, 154, 0.08);
456
+ color: #2a8a9a;
457
+ border-color: rgba(42, 138, 154, 0.15);
458
+ }
459
+
460
+ /* ── Orchestrate Modal ────────────────────────────────── */
461
+
462
+ .orch-explainer {
463
+ padding: 4px 0;
464
+ }
465
+
466
+ .orch-explainer-steps {
467
+ display: flex;
468
+ flex-direction: column;
469
+ gap: 8px;
470
+ }
471
+
472
+ .orch-step {
473
+ display: flex;
474
+ align-items: center;
475
+ gap: 10px;
476
+ font-size: 12px;
477
+ color: var(--text-dim);
478
+ line-height: 1.4;
479
+ }
480
+
481
+ .orch-step-num {
482
+ flex-shrink: 0;
483
+ width: 22px;
484
+ height: 22px;
485
+ display: flex;
486
+ align-items: center;
487
+ justify-content: center;
488
+ border-radius: 50%;
489
+ background: rgba(86, 212, 221, 0.1);
490
+ color: var(--cyan);
491
+ font-family: var(--font-mono);
492
+ font-size: 10px;
493
+ font-weight: 700;
494
+ border: 1px solid rgba(86, 212, 221, 0.2);
495
+ }
496
+
497
+ .dag-explainer-text {
498
+ font-size: 12px;
499
+ color: var(--text-dim);
500
+ line-height: 1.5;
501
+ margin: 0 0 10px;
502
+ }
503
+
504
+ .dag-explainer-text strong {
505
+ color: var(--text);
506
+ }
507
+
508
+ html[data-theme="light"] .orch-step-num {
509
+ background: rgba(42, 138, 154, 0.08);
510
+ color: #2a8a9a;
511
+ border-color: rgba(42, 138, 154, 0.15);
512
+ }
513
+
514
+ /* Mobile: overlay sidebar */
515
+ @media (max-width: 768px) {
516
+ .agent-sidebar {
517
+ position: absolute;
518
+ left: 0;
519
+ top: 0;
520
+ bottom: 0;
521
+ width: 280px;
522
+ z-index: 50;
523
+ box-shadow: var(--shadow-lg);
524
+ }
525
+ }