agentation 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.
@@ -0,0 +1,1456 @@
1
+ /**
2
+ * Agentation - Visual Feedback Toolbar for Rails
3
+ * CSS Styles
4
+ *
5
+ * @version 1.0.0
6
+ * @license MIT
7
+ */
8
+
9
+ /* =============================================================================
10
+ Animation Keyframes
11
+ ============================================================================= */
12
+
13
+ @keyframes agentation-toolbar-enter {
14
+ from {
15
+ opacity: 0;
16
+ transform: scale(0.5) rotate(90deg);
17
+ }
18
+ to {
19
+ opacity: 1;
20
+ transform: scale(1) rotate(0deg);
21
+ }
22
+ }
23
+
24
+ @keyframes agentation-badge-enter {
25
+ from {
26
+ opacity: 0;
27
+ transform: scale(0);
28
+ }
29
+ to {
30
+ opacity: 1;
31
+ transform: scale(1);
32
+ }
33
+ }
34
+
35
+ @keyframes agentation-scale-in {
36
+ from {
37
+ opacity: 0;
38
+ transform: scale(0.85);
39
+ }
40
+ to {
41
+ opacity: 1;
42
+ transform: scale(1);
43
+ }
44
+ }
45
+
46
+ @keyframes agentation-slide-up {
47
+ from {
48
+ opacity: 0;
49
+ transform: scale(0.85) translateY(8px);
50
+ }
51
+ to {
52
+ opacity: 1;
53
+ transform: scale(1) translateY(0);
54
+ }
55
+ }
56
+
57
+ @keyframes agentation-marker-in {
58
+ 0% {
59
+ opacity: 0;
60
+ transform: translate(-50%, -50%) scale(0.3);
61
+ }
62
+ 100% {
63
+ opacity: 1;
64
+ transform: translate(-50%, -50%) scale(1);
65
+ }
66
+ }
67
+
68
+ @keyframes agentation-marker-out {
69
+ 0% {
70
+ opacity: 1;
71
+ transform: translate(-50%, -50%) scale(1);
72
+ }
73
+ 100% {
74
+ opacity: 0;
75
+ transform: translate(-50%, -50%) scale(0.3);
76
+ }
77
+ }
78
+
79
+ @keyframes agentation-fade-in {
80
+ from { opacity: 0; }
81
+ to { opacity: 1; }
82
+ }
83
+
84
+ @keyframes agentation-hover-highlight-in {
85
+ from {
86
+ opacity: 0;
87
+ transform: scale(0.98);
88
+ }
89
+ to {
90
+ opacity: 1;
91
+ transform: scale(1);
92
+ }
93
+ }
94
+
95
+ @keyframes agentation-hover-tooltip-in {
96
+ from {
97
+ opacity: 0;
98
+ transform: scale(0.95) translateY(4px);
99
+ }
100
+ to {
101
+ opacity: 1;
102
+ transform: scale(1) translateY(0);
103
+ }
104
+ }
105
+
106
+ @keyframes agentation-popup-enter {
107
+ from {
108
+ opacity: 0;
109
+ transform: translateX(-50%) scale(0.95) translateY(4px);
110
+ }
111
+ to {
112
+ opacity: 1;
113
+ transform: translateX(-50%) scale(1) translateY(0);
114
+ }
115
+ }
116
+
117
+ @keyframes agentation-popup-exit {
118
+ from {
119
+ opacity: 1;
120
+ transform: translateX(-50%) scale(1) translateY(0);
121
+ }
122
+ to {
123
+ opacity: 0;
124
+ transform: translateX(-50%) scale(0.95) translateY(4px);
125
+ }
126
+ }
127
+
128
+ @keyframes agentation-shake {
129
+ 0%, 100% { transform: translateX(-50%) scale(1) translateY(0) translateX(0); }
130
+ 20% { transform: translateX(-50%) scale(1) translateY(0) translateX(-3px); }
131
+ 40% { transform: translateX(-50%) scale(1) translateY(0) translateX(3px); }
132
+ 60% { transform: translateX(-50%) scale(1) translateY(0) translateX(-2px); }
133
+ 80% { transform: translateX(-50%) scale(1) translateY(0) translateX(2px); }
134
+ }
135
+
136
+ @keyframes agentation-cycle-text-in {
137
+ 0% {
138
+ opacity: 0;
139
+ transform: translateY(-6px);
140
+ }
141
+ 100% {
142
+ opacity: 1;
143
+ transform: translateY(0);
144
+ }
145
+ }
146
+
147
+ /* =============================================================================
148
+ Toolbar
149
+ ============================================================================= */
150
+
151
+ .agentation-toolbar {
152
+ position: fixed;
153
+ bottom: 1.25rem;
154
+ right: 1.25rem;
155
+ z-index: 100000;
156
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
157
+ pointer-events: none;
158
+ display: flex;
159
+ justify-content: flex-end;
160
+ }
161
+
162
+ .agentation-toolbar__container {
163
+ user-select: none;
164
+ margin-left: auto;
165
+ align-self: flex-end;
166
+ display: flex;
167
+ align-items: center;
168
+ justify-content: center;
169
+ background: #1a1a1a;
170
+ color: #fff;
171
+ border: none;
172
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
173
+ pointer-events: auto;
174
+ cursor: grab;
175
+ transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
176
+ }
177
+
178
+ .agentation-toolbar__container--dragging {
179
+ transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
180
+ cursor: grabbing;
181
+ }
182
+
183
+ .agentation-toolbar__container--entrance {
184
+ animation: agentation-toolbar-enter 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
185
+ }
186
+
187
+ .agentation-toolbar__container--collapsed {
188
+ width: 44px;
189
+ height: 44px;
190
+ border-radius: 22px;
191
+ padding: 0;
192
+ cursor: pointer;
193
+ }
194
+
195
+ .agentation-toolbar__container--collapsed:hover {
196
+ background: #2a2a2a;
197
+ }
198
+
199
+ .agentation-toolbar__container--collapsed:active {
200
+ transform: scale(0.95);
201
+ }
202
+
203
+ .agentation-toolbar__container--expanded {
204
+ width: auto;
205
+ min-width: 257px;
206
+ height: 44px;
207
+ border-radius: 1.5rem;
208
+ padding: 0.375rem;
209
+ }
210
+
211
+ .agentation-toolbar__container--light {
212
+ background: #fff;
213
+ color: rgba(0, 0, 0, 0.85);
214
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
215
+ }
216
+
217
+ .agentation-toolbar__container--light.agentation-toolbar__container--collapsed:hover {
218
+ background: #f5f5f5;
219
+ }
220
+
221
+ .agentation-toolbar__toggle-content {
222
+ position: absolute;
223
+ display: flex;
224
+ align-items: center;
225
+ justify-content: center;
226
+ transition: opacity 0.1s cubic-bezier(0.19, 1, 0.22, 1);
227
+ }
228
+
229
+ .agentation-toolbar__toggle-content--visible {
230
+ opacity: 1;
231
+ visibility: visible;
232
+ pointer-events: auto;
233
+ }
234
+
235
+ .agentation-toolbar__toggle-content--hidden {
236
+ opacity: 0;
237
+ pointer-events: none;
238
+ }
239
+
240
+ .agentation-toolbar__controls-content {
241
+ display: flex;
242
+ align-items: center;
243
+ gap: 0.375rem;
244
+ transition: filter 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
245
+ }
246
+
247
+ .agentation-toolbar__controls-content--visible {
248
+ opacity: 1;
249
+ filter: blur(0px);
250
+ transform: scale(1);
251
+ visibility: visible;
252
+ pointer-events: auto;
253
+ }
254
+
255
+ .agentation-toolbar__controls-content--hidden {
256
+ opacity: 0;
257
+ filter: blur(10px);
258
+ transform: scale(0.4);
259
+ pointer-events: none;
260
+ }
261
+
262
+ .agentation-toolbar__badge {
263
+ position: absolute;
264
+ top: -16px;
265
+ right: -16px;
266
+ user-select: none;
267
+ min-width: 18px;
268
+ height: 18px;
269
+ padding: 0 5px;
270
+ border-radius: 9px;
271
+ background: #3c82f7;
272
+ color: white;
273
+ font-size: 0.625rem;
274
+ font-weight: 600;
275
+ display: flex;
276
+ align-items: center;
277
+ justify-content: center;
278
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
279
+ animation: agentation-badge-enter 0.3s cubic-bezier(0.34, 1.2, 0.64, 1) 0.4s both;
280
+ }
281
+
282
+ .agentation-toolbar__button {
283
+ cursor: pointer !important;
284
+ display: flex;
285
+ align-items: center;
286
+ justify-content: center;
287
+ width: 34px;
288
+ height: 34px;
289
+ border-radius: 50%;
290
+ border: none;
291
+ background: transparent;
292
+ color: rgba(255, 255, 255, 0.85);
293
+ transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease, opacity 0.2s ease;
294
+ }
295
+
296
+ .agentation-toolbar__button:hover:not(:disabled) {
297
+ background: rgba(255, 255, 255, 0.12);
298
+ color: #fff;
299
+ }
300
+
301
+ .agentation-toolbar__button:active:not(:disabled) {
302
+ transform: scale(0.92);
303
+ }
304
+
305
+ .agentation-toolbar__button:disabled {
306
+ opacity: 0.35;
307
+ cursor: not-allowed !important;
308
+ }
309
+
310
+ .agentation-toolbar__button[data-active="true"] {
311
+ color: #3c82f7;
312
+ background: rgba(60, 130, 247, 0.25);
313
+ }
314
+
315
+ .agentation-toolbar__button[data-danger]:hover:not(:disabled) {
316
+ background: rgba(255, 59, 48, 0.25);
317
+ color: #ff3b30;
318
+ }
319
+
320
+ .agentation-toolbar__button--light,
321
+ .agentation-toolbar__container--light .agentation-toolbar__button {
322
+ color: rgba(0, 0, 0, 0.5);
323
+ }
324
+
325
+ .agentation-toolbar__button--light:hover:not(:disabled),
326
+ .agentation-toolbar__container--light .agentation-toolbar__button:hover:not(:disabled) {
327
+ background: rgba(0, 0, 0, 0.06);
328
+ color: rgba(0, 0, 0, 0.85);
329
+ }
330
+
331
+ .agentation-toolbar__button--light.agentation-toolbar__button--active,
332
+ .agentation-toolbar__container--light .agentation-toolbar__button--active {
333
+ color: #3c82f7;
334
+ background: rgba(60, 130, 247, 0.15);
335
+ }
336
+
337
+ .agentation-toolbar__button--light.agentation-toolbar__button--danger:hover:not(:disabled),
338
+ .agentation-toolbar__container--light .agentation-toolbar__button--danger:hover:not(:disabled) {
339
+ background: rgba(255, 59, 48, 0.15);
340
+ color: #ff3b30;
341
+ }
342
+
343
+ .agentation-toolbar__divider {
344
+ width: 1px;
345
+ height: 12px;
346
+ background: rgba(255, 255, 255, 0.15);
347
+ margin: 0 0.125rem;
348
+ }
349
+
350
+ .agentation-toolbar__divider--light,
351
+ .agentation-toolbar__container--light .agentation-toolbar__divider {
352
+ background: rgba(0, 0, 0, 0.1);
353
+ }
354
+
355
+ /* =============================================================================
356
+ Overlay
357
+ ============================================================================= */
358
+
359
+ .agentation-overlay {
360
+ position: fixed;
361
+ inset: 0;
362
+ z-index: 99997;
363
+ pointer-events: none;
364
+ cursor: crosshair;
365
+ }
366
+
367
+ .agentation-overlay > * {
368
+ pointer-events: auto;
369
+ }
370
+
371
+ .agentation-drag-selection {
372
+ position: fixed;
373
+ top: 0;
374
+ left: 0;
375
+ border: 2px solid rgba(52, 199, 89, 0.6);
376
+ border-radius: 4px;
377
+ background: rgba(52, 199, 89, 0.08);
378
+ pointer-events: none;
379
+ z-index: 99997;
380
+ will-change: transform, width, height;
381
+ contain: layout style;
382
+ }
383
+
384
+ .agentation-drag-count {
385
+ position: absolute;
386
+ top: 50%;
387
+ left: 50%;
388
+ transform: translate(-50%, -50%);
389
+ background: #34c759;
390
+ color: white;
391
+ font-size: 0.875rem;
392
+ font-weight: 600;
393
+ padding: 0.25rem 0.5rem;
394
+ border-radius: 1rem;
395
+ min-width: 1.5rem;
396
+ text-align: center;
397
+ }
398
+
399
+ .agentation-highlights-container {
400
+ position: fixed;
401
+ top: 0;
402
+ left: 0;
403
+ pointer-events: none;
404
+ z-index: 99996;
405
+ }
406
+
407
+ .agentation-selected-element-highlight {
408
+ position: fixed;
409
+ top: 0;
410
+ left: 0;
411
+ border: 2px solid rgba(52, 199, 89, 0.5);
412
+ border-radius: 4px;
413
+ background: rgba(52, 199, 89, 0.06);
414
+ pointer-events: none;
415
+ will-change: transform, width, height;
416
+ contain: layout style;
417
+ }
418
+
419
+ .agentation-overlay[style*="display: none"] {
420
+ pointer-events: none;
421
+ }
422
+
423
+ /* =============================================================================
424
+ Hover Highlight
425
+ ============================================================================= */
426
+
427
+ .agentation-hover-highlight {
428
+ position: fixed;
429
+ border: 2px solid rgba(60, 130, 247, 0.5);
430
+ border-radius: 4px;
431
+ pointer-events: none !important;
432
+ background: rgba(60, 130, 247, 0.04);
433
+ box-sizing: border-box;
434
+ will-change: opacity;
435
+ contain: layout style;
436
+ }
437
+
438
+ .agentation-hover-highlight--enter {
439
+ animation: agentation-hover-highlight-in 0.12s ease-out forwards;
440
+ }
441
+
442
+ .agentation-hover-tooltip {
443
+ position: fixed;
444
+ font-size: 0.6875rem;
445
+ font-weight: 500;
446
+ color: #fff;
447
+ background: rgba(0, 0, 0, 0.85);
448
+ padding: 0.35rem 0.6rem;
449
+ border-radius: 0.375rem;
450
+ pointer-events: none !important;
451
+ white-space: nowrap;
452
+ max-width: 200px;
453
+ overflow: hidden;
454
+ text-overflow: ellipsis;
455
+ transform: translateX(-50%);
456
+ }
457
+
458
+ .agentation-hover-tooltip--enter {
459
+ animation: agentation-hover-tooltip-in 0.1s ease-out forwards;
460
+ }
461
+
462
+ /* =============================================================================
463
+ Markers Layer
464
+ ============================================================================= */
465
+
466
+ .agentation-markers-layer {
467
+ position: fixed;
468
+ top: 0;
469
+ left: 0;
470
+ right: 0;
471
+ bottom: 0;
472
+ z-index: 99998;
473
+ pointer-events: none;
474
+ }
475
+
476
+ .agentation-markers-layer > * {
477
+ pointer-events: auto;
478
+ }
479
+
480
+ /* =============================================================================
481
+ Annotation Markers
482
+ ============================================================================= */
483
+
484
+ .agentation-marker {
485
+ position: fixed;
486
+ width: 22px;
487
+ height: 22px;
488
+ background: #3c82f7;
489
+ color: white;
490
+ border-radius: 50%;
491
+ display: flex;
492
+ align-items: center;
493
+ justify-content: center;
494
+ font-size: 0.6875rem;
495
+ font-weight: 600;
496
+ transform: translate(-50%, -50%) scale(1);
497
+ opacity: 1;
498
+ cursor: pointer;
499
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
500
+ user-select: none;
501
+ will-change: transform, opacity;
502
+ contain: layout style;
503
+ z-index: 1;
504
+ transition: background-color 0.15s ease, transform 0.1s ease;
505
+ }
506
+
507
+ .agentation-marker:hover {
508
+ z-index: 2;
509
+ transform: translate(-50%, -50%) scale(1.1);
510
+ }
511
+
512
+ .agentation-marker--enter {
513
+ animation: agentation-marker-in 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
514
+ }
515
+
516
+ .agentation-marker--exit {
517
+ animation: agentation-marker-out 0.2s ease-out both;
518
+ pointer-events: none;
519
+ }
520
+
521
+ .agentation-marker--multi-select {
522
+ background: #34c759;
523
+ width: 26px;
524
+ height: 26px;
525
+ border-radius: 6px;
526
+ font-size: 0.75rem;
527
+ }
528
+
529
+ .agentation-marker--hovered {
530
+ background: #ff3b30 !important;
531
+ }
532
+
533
+ .agentation-marker__number {
534
+ display: block;
535
+ }
536
+
537
+ .agentation-marker__tooltip {
538
+ position: fixed;
539
+ z-index: 100002;
540
+ background: #1a1a1a;
541
+ padding: 0.625rem 0.75rem;
542
+ border-radius: 0.75rem;
543
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
544
+ min-width: 120px;
545
+ max-width: 200px;
546
+ pointer-events: none;
547
+ cursor: default;
548
+ transform: translateX(-50%);
549
+ animation: agentation-hover-tooltip-in 0.1s ease-out forwards;
550
+ }
551
+
552
+ .agentation-marker__tooltip--light {
553
+ background: #fff;
554
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
555
+ }
556
+
557
+ .agentation-marker__quote {
558
+ display: block;
559
+ font-size: 0.6875rem;
560
+ font-style: italic;
561
+ color: rgba(255, 255, 255, 0.5);
562
+ margin-bottom: 0.375rem;
563
+ line-height: 1.4;
564
+ white-space: nowrap;
565
+ overflow: hidden;
566
+ text-overflow: ellipsis;
567
+ }
568
+
569
+ .agentation-marker__tooltip--light .agentation-marker__quote {
570
+ color: rgba(0, 0, 0, 0.5);
571
+ }
572
+
573
+ .agentation-marker__note {
574
+ display: block;
575
+ font-size: 0.75rem;
576
+ font-weight: 450;
577
+ line-height: 1.4;
578
+ color: #fff;
579
+ white-space: nowrap;
580
+ overflow: hidden;
581
+ text-overflow: ellipsis;
582
+ padding-bottom: 2px;
583
+ }
584
+
585
+ .agentation-marker__tooltip--light .agentation-marker__note {
586
+ color: rgba(0, 0, 0, 0.85);
587
+ }
588
+
589
+ .agentation-marker__hint {
590
+ display: block;
591
+ font-size: 0.625rem;
592
+ font-weight: 400;
593
+ color: rgba(255, 255, 255, 0.3);
594
+ margin-top: 0.375rem;
595
+ white-space: nowrap;
596
+ }
597
+
598
+ .agentation-marker__tooltip--light .agentation-marker__hint {
599
+ color: rgba(0, 0, 0, 0.35);
600
+ }
601
+
602
+ /* =============================================================================
603
+ Settings Panel
604
+ ============================================================================= */
605
+
606
+ .agentation-settings-panel-container {
607
+ position: absolute;
608
+ right: 5px;
609
+ bottom: calc(100% + 0.5rem);
610
+ }
611
+
612
+ .agentation-settings-panel {
613
+ position: absolute;
614
+ bottom: calc(100% + 0.5rem);
615
+ right: 0;
616
+ background: #1a1a1a;
617
+ border-radius: 1rem;
618
+ padding: 13px 1rem 16px;
619
+ min-width: 205px;
620
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
621
+ transition: background 0.25s ease, box-shadow 0.25s ease;
622
+ animation: agentation-slide-up 0.2s ease-out forwards;
623
+ z-index: 100001;
624
+ }
625
+
626
+ .agentation-settings-panel--light {
627
+ background: #fff;
628
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
629
+ }
630
+
631
+ .agentation-settings-panel__header {
632
+ display: flex;
633
+ align-items: center;
634
+ justify-content: space-between;
635
+ min-height: 24px;
636
+ margin-bottom: 0.5rem;
637
+ padding-bottom: 9px;
638
+ border-bottom: 1px solid rgba(255, 255, 255, 0.07);
639
+ }
640
+
641
+ .agentation-settings-panel--light .agentation-settings-panel__header {
642
+ border-bottom-color: rgba(0, 0, 0, 0.08);
643
+ }
644
+
645
+ .agentation-settings-panel__brand {
646
+ font-size: 0.8125rem;
647
+ font-weight: 600;
648
+ letter-spacing: -0.0094em;
649
+ color: #fff;
650
+ }
651
+
652
+ .agentation-settings-panel--light .agentation-settings-panel__brand {
653
+ color: rgba(0, 0, 0, 0.85);
654
+ }
655
+
656
+ .agentation-settings-panel__brand-slash {
657
+ color: rgba(255, 255, 255, 0.5);
658
+ }
659
+
660
+ .agentation-settings-panel--light .agentation-settings-panel__brand-slash {
661
+ color: rgba(0, 0, 0, 0.4);
662
+ }
663
+
664
+ .agentation-settings-panel__theme-toggle {
665
+ display: flex;
666
+ align-items: center;
667
+ justify-content: center;
668
+ width: 22px;
669
+ height: 22px;
670
+ margin-left: 0.5rem;
671
+ border: none;
672
+ border-radius: 6px;
673
+ background: transparent;
674
+ color: rgba(255, 255, 255, 0.4);
675
+ cursor: pointer;
676
+ transition: background-color 0.15s ease, color 0.15s ease;
677
+ }
678
+
679
+ .agentation-settings-panel__theme-toggle:hover {
680
+ background: rgba(255, 255, 255, 0.1);
681
+ color: rgba(255, 255, 255, 0.8);
682
+ }
683
+
684
+ .agentation-settings-panel--light .agentation-settings-panel__theme-toggle {
685
+ color: rgba(0, 0, 0, 0.4);
686
+ }
687
+
688
+ .agentation-settings-panel--light .agentation-settings-panel__theme-toggle:hover {
689
+ background: rgba(0, 0, 0, 0.06);
690
+ color: rgba(0, 0, 0, 0.7);
691
+ }
692
+
693
+ .agentation-settings-panel__section {
694
+ margin-top: 0;
695
+ }
696
+
697
+ .agentation-settings-panel__section + .agentation-settings-panel__section {
698
+ margin-top: 0.5rem;
699
+ padding-top: calc(0.5rem + 2px);
700
+ border-top: 1px solid rgba(255, 255, 255, 0.07);
701
+ }
702
+
703
+ .agentation-settings-panel--light .agentation-settings-panel__section + .agentation-settings-panel__section {
704
+ border-top-color: rgba(0, 0, 0, 0.08);
705
+ }
706
+
707
+ .agentation-settings-panel__row {
708
+ display: flex;
709
+ align-items: center;
710
+ justify-content: space-between;
711
+ min-height: 24px;
712
+ }
713
+
714
+ .agentation-settings-panel__label {
715
+ font-size: 0.8125rem;
716
+ font-weight: 400;
717
+ letter-spacing: -0.0094em;
718
+ color: rgba(255, 255, 255, 0.5);
719
+ display: flex;
720
+ align-items: center;
721
+ gap: 0.125rem;
722
+ }
723
+
724
+ .agentation-settings-panel__label--light {
725
+ color: rgba(0, 0, 0, 0.5);
726
+ }
727
+
728
+ .agentation-settings-panel__label--marker {
729
+ margin-bottom: 10px;
730
+ }
731
+
732
+ .agentation-settings-panel__cycle-button {
733
+ display: flex;
734
+ align-items: center;
735
+ gap: 0.5rem;
736
+ padding: 0;
737
+ border: none;
738
+ background: transparent;
739
+ font-size: 0.8125rem;
740
+ font-weight: 500;
741
+ color: #fff;
742
+ cursor: pointer;
743
+ letter-spacing: -0.0094em;
744
+ }
745
+
746
+ .agentation-settings-panel__cycle-button--light {
747
+ color: rgba(0, 0, 0, 0.85);
748
+ }
749
+
750
+ .agentation-settings-panel__cycle-text {
751
+ display: inline-block;
752
+ animation: agentation-cycle-text-in 0.2s ease-out;
753
+ }
754
+
755
+ .agentation-settings-panel__cycle-dots {
756
+ display: flex;
757
+ flex-direction: column;
758
+ gap: 2px;
759
+ }
760
+
761
+ .agentation-settings-panel__cycle-dot {
762
+ width: 3px;
763
+ height: 3px;
764
+ border-radius: 50%;
765
+ background: rgba(255, 255, 255, 0.3);
766
+ transform: scale(0.667);
767
+ transition: background-color 0.25s ease-out, transform 0.25s ease-out;
768
+ }
769
+
770
+ .agentation-settings-panel__cycle-dot--active {
771
+ background: #fff;
772
+ transform: scale(1);
773
+ }
774
+
775
+ .agentation-settings-panel__cycle-dot--light {
776
+ background: rgba(0, 0, 0, 0.2);
777
+ }
778
+
779
+ .agentation-settings-panel__cycle-dot--light.agentation-settings-panel__cycle-dot--active {
780
+ background: rgba(0, 0, 0, 0.7);
781
+ }
782
+
783
+ .agentation-settings-panel__colors {
784
+ display: flex;
785
+ gap: 0.5rem;
786
+ margin-top: 0.375rem;
787
+ margin-bottom: 1px;
788
+ }
789
+
790
+ .agentation-settings-panel__color-option {
791
+ display: block;
792
+ width: 20px;
793
+ height: 20px;
794
+ border-radius: 50%;
795
+ border: 2px solid transparent;
796
+ cursor: pointer;
797
+ transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
798
+ padding: 0;
799
+ }
800
+
801
+ .agentation-settings-panel__color-option:hover {
802
+ transform: scale(1.15);
803
+ }
804
+
805
+ .agentation-settings-panel__color-option--selected {
806
+ transform: scale(0.83);
807
+ }
808
+
809
+ .agentation-settings-panel__toggle {
810
+ display: flex;
811
+ align-items: center;
812
+ gap: 0.5rem;
813
+ cursor: pointer;
814
+ margin-top: calc(0.5rem + 6px);
815
+ }
816
+
817
+ .agentation-settings-panel__toggle:first-child {
818
+ margin-top: 0;
819
+ }
820
+
821
+ .agentation-settings-panel__toggle input[type="checkbox"] {
822
+ position: absolute;
823
+ opacity: 0;
824
+ width: 0;
825
+ height: 0;
826
+ }
827
+
828
+ .agentation-settings-panel__checkbox {
829
+ position: relative;
830
+ width: 14px;
831
+ height: 14px;
832
+ border: 1px solid rgba(255, 255, 255, 0.2);
833
+ border-radius: 4px;
834
+ background: rgba(255, 255, 255, 0.05);
835
+ display: flex;
836
+ align-items: center;
837
+ justify-content: center;
838
+ flex-shrink: 0;
839
+ transition: background 0.25s ease, border-color 0.25s ease;
840
+ }
841
+
842
+ .agentation-settings-panel__checkbox svg {
843
+ color: #1a1a1a;
844
+ opacity: 1;
845
+ transition: opacity 0.15s ease;
846
+ }
847
+
848
+ .agentation-settings-panel__checkbox--checked {
849
+ border-color: rgba(255, 255, 255, 0.3);
850
+ background: rgba(255, 255, 255, 1);
851
+ }
852
+
853
+ .agentation-settings-panel__checkbox--light {
854
+ border: 1px solid rgba(0, 0, 0, 0.15);
855
+ background: #fff;
856
+ }
857
+
858
+ .agentation-settings-panel__checkbox--light.agentation-settings-panel__checkbox--checked {
859
+ border-color: #1a1a1a;
860
+ background: #1a1a1a;
861
+ }
862
+
863
+ .agentation-settings-panel__checkbox--light.agentation-settings-panel__checkbox--checked svg {
864
+ color: #fff;
865
+ }
866
+
867
+ .agentation-settings-panel__toggle-label {
868
+ font-size: 0.8125rem;
869
+ font-weight: 400;
870
+ color: rgba(255, 255, 255, 0.5);
871
+ letter-spacing: -0.0094em;
872
+ display: flex;
873
+ align-items: center;
874
+ gap: 0.25rem;
875
+ }
876
+
877
+ .agentation-settings-panel__toggle-label--light {
878
+ color: rgba(0, 0, 0, 0.5);
879
+ }
880
+
881
+ .agentation-settings-panel__help-icon {
882
+ position: relative;
883
+ display: inline-flex;
884
+ align-items: center;
885
+ justify-content: center;
886
+ cursor: help;
887
+ margin-left: 0;
888
+ }
889
+
890
+ .agentation-settings-panel__help-icon svg {
891
+ display: block;
892
+ transform: translateY(1px);
893
+ color: rgba(255, 255, 255, 0.4);
894
+ transition: color 0.15s ease;
895
+ }
896
+
897
+ .agentation-settings-panel__help-icon:hover svg {
898
+ color: rgba(255, 255, 255, 0.7);
899
+ }
900
+
901
+ .agentation-settings-panel__help-icon::after {
902
+ content: attr(data-tooltip);
903
+ position: absolute;
904
+ right: calc(100% + 8px);
905
+ top: 50%;
906
+ transform: translateY(-50%);
907
+ padding: 8px 10px;
908
+ background: #383838;
909
+ color: rgba(255, 255, 255, 0.7);
910
+ font-size: 11px;
911
+ font-weight: 400;
912
+ line-height: 1.4;
913
+ border-radius: 10px;
914
+ white-space: normal;
915
+ width: 152px;
916
+ text-align: left;
917
+ opacity: 0;
918
+ visibility: hidden;
919
+ transition: opacity 0.15s ease, visibility 0.15s ease;
920
+ pointer-events: none;
921
+ z-index: 100;
922
+ box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.28);
923
+ }
924
+
925
+ .agentation-settings-panel__help-icon:hover::after {
926
+ opacity: 1;
927
+ visibility: visible;
928
+ transition-delay: 0.5s;
929
+ }
930
+
931
+ /* =============================================================================
932
+ Annotation Popup
933
+ ============================================================================= */
934
+
935
+ .agentation-popup {
936
+ position: fixed;
937
+ transform: translateX(-50%);
938
+ width: 280px;
939
+ padding: 0.75rem 1rem 14px;
940
+ background: #1a1a1a;
941
+ border-radius: 16px;
942
+ box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
943
+ cursor: default;
944
+ z-index: 100001;
945
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
946
+ will-change: transform, opacity;
947
+ opacity: 0;
948
+ }
949
+
950
+ .agentation-popup--light {
951
+ background: #fff;
952
+ box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
953
+ }
954
+
955
+ .agentation-popup--enter {
956
+ animation: agentation-popup-enter 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
957
+ }
958
+
959
+ .agentation-popup--entered {
960
+ opacity: 1;
961
+ transform: translateX(-50%) scale(1) translateY(0);
962
+ }
963
+
964
+ .agentation-popup--exit {
965
+ animation: agentation-popup-exit 0.15s ease-in forwards;
966
+ }
967
+
968
+ .agentation-popup--entered.agentation-popup--shake {
969
+ animation: agentation-shake 0.25s ease-out;
970
+ }
971
+
972
+ .agentation-popup__header {
973
+ display: flex;
974
+ align-items: center;
975
+ justify-content: space-between;
976
+ margin-bottom: 0.5rem;
977
+ }
978
+
979
+ .agentation-popup__element {
980
+ font-size: 0.75rem;
981
+ font-weight: 500;
982
+ color: rgba(255, 255, 255, 0.65);
983
+ max-width: 100%;
984
+ overflow: hidden;
985
+ text-overflow: ellipsis;
986
+ white-space: nowrap;
987
+ flex: 1;
988
+ }
989
+
990
+ .agentation-popup--light .agentation-popup__element {
991
+ color: rgba(0, 0, 0, 0.6);
992
+ }
993
+
994
+ .agentation-popup__header-toggle {
995
+ display: flex;
996
+ align-items: center;
997
+ gap: 0.25rem;
998
+ background: none;
999
+ border: none;
1000
+ padding: 0;
1001
+ cursor: pointer;
1002
+ flex: 1;
1003
+ min-width: 0;
1004
+ text-align: left;
1005
+ }
1006
+
1007
+ .agentation-popup__chevron {
1008
+ color: rgba(255, 255, 255, 0.5);
1009
+ transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
1010
+ flex-shrink: 0;
1011
+ display: flex;
1012
+ align-items: center;
1013
+ justify-content: center;
1014
+ }
1015
+
1016
+ .agentation-popup__chevron--expanded {
1017
+ transform: rotate(90deg);
1018
+ }
1019
+
1020
+ .agentation-popup--light .agentation-popup__chevron {
1021
+ color: rgba(0, 0, 0, 0.4);
1022
+ }
1023
+
1024
+ .agentation-popup__styles-wrapper {
1025
+ display: grid;
1026
+ grid-template-rows: 0fr;
1027
+ transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
1028
+ }
1029
+
1030
+ .agentation-popup__styles-wrapper--expanded {
1031
+ grid-template-rows: 1fr;
1032
+ }
1033
+
1034
+ .agentation-popup__styles-inner {
1035
+ overflow: hidden;
1036
+ }
1037
+
1038
+ .agentation-popup__styles-block {
1039
+ background: rgba(255, 255, 255, 0.05);
1040
+ border-radius: 0.375rem;
1041
+ padding: 0.5rem 0.625rem;
1042
+ margin-bottom: 0.5rem;
1043
+ font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
1044
+ font-size: 0.6875rem;
1045
+ line-height: 1.5;
1046
+ }
1047
+
1048
+ .agentation-popup--light .agentation-popup__styles-block {
1049
+ background: rgba(0, 0, 0, 0.03);
1050
+ }
1051
+
1052
+ .agentation-popup__style-line {
1053
+ color: rgba(255, 255, 255, 0.85);
1054
+ word-break: break-word;
1055
+ }
1056
+
1057
+ .agentation-popup--light .agentation-popup__style-line {
1058
+ color: rgba(0, 0, 0, 0.75);
1059
+ }
1060
+
1061
+ .agentation-popup__style-property {
1062
+ color: #c792ea;
1063
+ }
1064
+
1065
+ .agentation-popup--light .agentation-popup__style-property {
1066
+ color: #7c3aed;
1067
+ }
1068
+
1069
+ .agentation-popup__style-value {
1070
+ color: rgba(255, 255, 255, 0.85);
1071
+ }
1072
+
1073
+ .agentation-popup--light .agentation-popup__style-value {
1074
+ color: rgba(0, 0, 0, 0.75);
1075
+ }
1076
+
1077
+ .agentation-popup__timestamp {
1078
+ font-size: 0.625rem;
1079
+ font-weight: 500;
1080
+ color: rgba(255, 255, 255, 0.35);
1081
+ font-variant-numeric: tabular-nums;
1082
+ margin-left: 0.5rem;
1083
+ flex-shrink: 0;
1084
+ }
1085
+
1086
+ .agentation-popup--light .agentation-popup__timestamp {
1087
+ color: rgba(0, 0, 0, 0.4);
1088
+ }
1089
+
1090
+ .agentation-popup__quote {
1091
+ font-size: 0.6875rem;
1092
+ font-style: italic;
1093
+ color: rgba(255, 255, 255, 0.5);
1094
+ margin-bottom: 0.5rem;
1095
+ padding: 0.4rem 0.5rem;
1096
+ background: rgba(255, 255, 255, 0.05);
1097
+ border-radius: 0.25rem;
1098
+ line-height: 1.45;
1099
+ }
1100
+
1101
+ .agentation-popup--light .agentation-popup__quote {
1102
+ color: rgba(0, 0, 0, 0.55);
1103
+ background: rgba(0, 0, 0, 0.04);
1104
+ }
1105
+
1106
+ .agentation-popup__textarea {
1107
+ width: 100%;
1108
+ padding: 0.5rem 0.625rem;
1109
+ font-size: 0.8125rem;
1110
+ font-family: inherit;
1111
+ background: rgba(255, 255, 255, 0.05);
1112
+ color: #fff;
1113
+ border: 1px solid rgba(255, 255, 255, 0.15);
1114
+ border-radius: 8px;
1115
+ resize: none;
1116
+ outline: none;
1117
+ transition: border-color 0.15s ease;
1118
+ box-sizing: border-box;
1119
+ }
1120
+
1121
+ .agentation-popup__textarea:focus {
1122
+ border-color: #3c82f7;
1123
+ }
1124
+
1125
+ .agentation-popup__textarea::placeholder {
1126
+ color: rgba(255, 255, 255, 0.35);
1127
+ }
1128
+
1129
+ .agentation-popup--light .agentation-popup__textarea {
1130
+ background: rgba(0, 0, 0, 0.03);
1131
+ color: #1a1a1a;
1132
+ border-color: rgba(0, 0, 0, 0.12);
1133
+ }
1134
+
1135
+ .agentation-popup--light .agentation-popup__textarea::placeholder {
1136
+ color: rgba(0, 0, 0, 0.4);
1137
+ }
1138
+
1139
+ .agentation-popup__actions {
1140
+ display: flex;
1141
+ justify-content: flex-end;
1142
+ gap: 0.375rem;
1143
+ margin-top: 0.5rem;
1144
+ }
1145
+
1146
+ .agentation-popup__cancel,
1147
+ .agentation-popup__submit {
1148
+ padding: 0.4rem 0.875rem;
1149
+ font-size: 0.75rem;
1150
+ font-weight: 500;
1151
+ border-radius: 1rem;
1152
+ border: none;
1153
+ cursor: pointer;
1154
+ transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
1155
+ }
1156
+
1157
+ .agentation-popup__cancel {
1158
+ background: transparent;
1159
+ color: rgba(255, 255, 255, 0.5);
1160
+ }
1161
+
1162
+ .agentation-popup__cancel:hover {
1163
+ background: rgba(255, 255, 255, 0.1);
1164
+ color: rgba(255, 255, 255, 0.8);
1165
+ }
1166
+
1167
+ .agentation-popup--light .agentation-popup__cancel {
1168
+ color: rgba(0, 0, 0, 0.5);
1169
+ }
1170
+
1171
+ .agentation-popup--light .agentation-popup__cancel:hover {
1172
+ background: rgba(0, 0, 0, 0.06);
1173
+ color: rgba(0, 0, 0, 0.75);
1174
+ }
1175
+
1176
+ .agentation-popup__submit {
1177
+ color: white;
1178
+ }
1179
+
1180
+ .agentation-popup__submit:hover:not(:disabled) {
1181
+ filter: brightness(0.9);
1182
+ }
1183
+
1184
+ .agentation-popup__submit:disabled {
1185
+ cursor: not-allowed;
1186
+ }
1187
+
1188
+ /* =============================================================================
1189
+ Toolbar Toggle & Controls
1190
+ ============================================================================= */
1191
+
1192
+ .agentation-toolbar__toggle {
1193
+ display: flex;
1194
+ align-items: center;
1195
+ justify-content: center;
1196
+ position: relative;
1197
+ width: 38px;
1198
+ height: 38px;
1199
+ border-radius: 50%;
1200
+ cursor: pointer;
1201
+ transition: opacity 0.2s, visibility 0.2s;
1202
+ }
1203
+
1204
+ .agentation-toolbar__toggle:hover {
1205
+ background: rgba(255, 255, 255, 0.1);
1206
+ }
1207
+
1208
+ .agentation-toolbar__container--light .agentation-toolbar__toggle:hover {
1209
+ background: rgba(0, 0, 0, 0.06);
1210
+ }
1211
+
1212
+ .agentation-toolbar__toggle--hidden {
1213
+ display: none;
1214
+ }
1215
+
1216
+ .agentation-toolbar__controls {
1217
+ display: flex;
1218
+ align-items: center;
1219
+ gap: 0.375rem;
1220
+ transition: opacity 0.3s, transform 0.3s;
1221
+ }
1222
+
1223
+ .agentation-toolbar__controls--hidden {
1224
+ display: none;
1225
+ }
1226
+
1227
+ .agentation-toolbar__button--active {
1228
+ background: rgba(255, 255, 255, 0.15);
1229
+ }
1230
+
1231
+ .agentation-toolbar__button--danger:hover:not(:disabled) {
1232
+ background: rgba(255, 59, 48, 0.25);
1233
+ color: #ff3b30;
1234
+ }
1235
+
1236
+ .agentation-settings-panel__brand {
1237
+ font-size: 0.8125rem;
1238
+ font-weight: 600;
1239
+ color: #fff;
1240
+ letter-spacing: -0.01em;
1241
+ }
1242
+
1243
+ .agentation-settings-panel--light .agentation-settings-panel__brand {
1244
+ color: #1a1a1a;
1245
+ }
1246
+
1247
+ .agentation-settings-panel__slash {
1248
+ font-weight: 700;
1249
+ transition: color 0.2s ease;
1250
+ }
1251
+
1252
+ .agentation-settings-panel__version {
1253
+ font-size: 0.625rem;
1254
+ color: rgba(255, 255, 255, 0.35);
1255
+ font-weight: 500;
1256
+ }
1257
+
1258
+ .agentation-settings-panel--light .agentation-settings-panel__version {
1259
+ color: rgba(0, 0, 0, 0.35);
1260
+ }
1261
+
1262
+ .agentation-settings-panel__theme-toggle {
1263
+ margin-left: auto;
1264
+ display: flex;
1265
+ align-items: center;
1266
+ justify-content: center;
1267
+ width: 26px;
1268
+ height: 26px;
1269
+ border-radius: 50%;
1270
+ border: none;
1271
+ background: transparent;
1272
+ color: rgba(255, 255, 255, 0.5);
1273
+ cursor: pointer;
1274
+ transition: background 0.15s, color 0.15s;
1275
+ }
1276
+
1277
+ .agentation-settings-panel__theme-toggle:hover {
1278
+ background: rgba(255, 255, 255, 0.1);
1279
+ color: #fff;
1280
+ }
1281
+
1282
+ .agentation-settings-panel--light .agentation-settings-panel__theme-toggle {
1283
+ color: rgba(0, 0, 0, 0.5);
1284
+ }
1285
+
1286
+ .agentation-settings-panel--light .agentation-settings-panel__theme-toggle:hover {
1287
+ background: rgba(0, 0, 0, 0.06);
1288
+ color: rgba(0, 0, 0, 0.85);
1289
+ }
1290
+
1291
+ .agentation-settings-panel__section {
1292
+ margin-bottom: 0.75rem;
1293
+ }
1294
+
1295
+ .agentation-settings-panel__section:last-child {
1296
+ margin-bottom: 0;
1297
+ }
1298
+
1299
+ .agentation-settings-panel__row {
1300
+ display: flex;
1301
+ align-items: center;
1302
+ justify-content: space-between;
1303
+ gap: 0.5rem;
1304
+ }
1305
+
1306
+ .agentation-settings-panel__label {
1307
+ color: rgba(255, 255, 255, 0.7);
1308
+ font-weight: 500;
1309
+ font-size: 0.6875rem;
1310
+ text-transform: uppercase;
1311
+ letter-spacing: 0.04em;
1312
+ }
1313
+
1314
+ .agentation-settings-panel__label--light {
1315
+ color: rgba(0, 0, 0, 0.5);
1316
+ }
1317
+
1318
+ .agentation-settings-panel__label--marker {
1319
+ margin-bottom: 0.5rem;
1320
+ }
1321
+
1322
+ .agentation-settings-panel__cycle-btn {
1323
+ display: flex;
1324
+ align-items: center;
1325
+ gap: 0.5rem;
1326
+ padding: 0.35rem 0.5rem;
1327
+ border-radius: 0.375rem;
1328
+ border: none;
1329
+ background: rgba(255, 255, 255, 0.08);
1330
+ color: #fff;
1331
+ font-size: 0.6875rem;
1332
+ font-weight: 500;
1333
+ cursor: pointer;
1334
+ transition: background 0.15s;
1335
+ }
1336
+
1337
+ .agentation-settings-panel__cycle-btn:hover {
1338
+ background: rgba(255, 255, 255, 0.12);
1339
+ }
1340
+
1341
+ .agentation-settings-panel__cycle-btn--light {
1342
+ background: rgba(0, 0, 0, 0.04);
1343
+ color: #1a1a1a;
1344
+ }
1345
+
1346
+ .agentation-settings-panel__cycle-btn--light:hover {
1347
+ background: rgba(0, 0, 0, 0.08);
1348
+ }
1349
+
1350
+ .agentation-settings-panel__cycle-text {
1351
+ min-width: 48px;
1352
+ animation: agentation-cycle-text-in 0.2s ease-out;
1353
+ }
1354
+
1355
+ .agentation-settings-panel__cycle-dots {
1356
+ display: flex;
1357
+ gap: 3px;
1358
+ }
1359
+
1360
+ .agentation-settings-panel__dot {
1361
+ width: 4px;
1362
+ height: 4px;
1363
+ border-radius: 50%;
1364
+ background: rgba(255, 255, 255, 0.25);
1365
+ transition: background 0.2s;
1366
+ }
1367
+
1368
+ .agentation-settings-panel__dot--active {
1369
+ background: #fff;
1370
+ }
1371
+
1372
+ .agentation-settings-panel--light .agentation-settings-panel__dot {
1373
+ background: rgba(0, 0, 0, 0.2);
1374
+ }
1375
+
1376
+ .agentation-settings-panel--light .agentation-settings-panel__dot--active {
1377
+ background: #1a1a1a;
1378
+ }
1379
+
1380
+ .agentation-settings-panel__colors {
1381
+ display: flex;
1382
+ gap: 0.375rem;
1383
+ }
1384
+
1385
+ .agentation-settings-panel__color-ring {
1386
+ width: 22px;
1387
+ height: 22px;
1388
+ border-radius: 50%;
1389
+ border: 2px solid transparent;
1390
+ display: flex;
1391
+ align-items: center;
1392
+ justify-content: center;
1393
+ cursor: pointer;
1394
+ transition: border-color 0.2s, transform 0.1s;
1395
+ }
1396
+
1397
+ .agentation-settings-panel__color-ring:hover {
1398
+ transform: scale(1.1);
1399
+ }
1400
+
1401
+ .agentation-settings-panel__color-ring--selected {
1402
+ border-width: 2px;
1403
+ }
1404
+
1405
+ .agentation-settings-panel__color-dot {
1406
+ width: 14px;
1407
+ height: 14px;
1408
+ border-radius: 50%;
1409
+ }
1410
+
1411
+ .agentation-settings-panel__toggle-row {
1412
+ display: flex;
1413
+ align-items: center;
1414
+ gap: 0.5rem;
1415
+ padding: 0.375rem 0;
1416
+ cursor: pointer;
1417
+ }
1418
+
1419
+ .agentation-settings-panel__checkbox {
1420
+ position: absolute;
1421
+ opacity: 0;
1422
+ width: 0;
1423
+ height: 0;
1424
+ }
1425
+
1426
+ .agentation-settings-panel__custom-checkbox {
1427
+ width: 16px;
1428
+ height: 16px;
1429
+ border-radius: 4px;
1430
+ border: 1.5px solid rgba(255, 255, 255, 0.25);
1431
+ display: flex;
1432
+ align-items: center;
1433
+ justify-content: center;
1434
+ transition: background 0.15s, border-color 0.15s;
1435
+ flex-shrink: 0;
1436
+ }
1437
+
1438
+ .agentation-settings-panel__custom-checkbox--checked {
1439
+ background: #3c82f7;
1440
+ border-color: #3c82f7;
1441
+ color: white;
1442
+ }
1443
+
1444
+ .agentation-settings-panel--light .agentation-settings-panel__custom-checkbox {
1445
+ border-color: rgba(0, 0, 0, 0.2);
1446
+ }
1447
+
1448
+ .agentation-settings-panel__toggle-label {
1449
+ color: rgba(255, 255, 255, 0.85);
1450
+ font-size: 0.6875rem;
1451
+ font-weight: 500;
1452
+ }
1453
+
1454
+ .agentation-settings-panel__toggle-label--light {
1455
+ color: rgba(0, 0, 0, 0.75);
1456
+ }