@product7/feedback-sdk 1.1.7 → 1.1.9

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,1657 @@
1
+ export const MESSENGER_STYLES = `
2
+ /* ========================================
3
+ Messenger Widget - Intercom-style Dark Theme
4
+ ======================================== */
5
+
6
+ .messenger-widget {
7
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Oxygen, Ubuntu, Cantarell, sans-serif;
8
+ font-size: 14px;
9
+ line-height: 1.5;
10
+ -webkit-font-smoothing: antialiased;
11
+ -moz-osx-font-smoothing: grayscale;
12
+ }
13
+
14
+ .messenger-widget *,
15
+ .messenger-widget *::before,
16
+ .messenger-widget *::after {
17
+ box-sizing: border-box;
18
+ }
19
+
20
+ /* ========================================
21
+ Launcher Button
22
+ ======================================== */
23
+
24
+ .messenger-launcher {
25
+ position: fixed;
26
+ z-index: 999999;
27
+ }
28
+
29
+ .messenger-launcher-bottom-right {
30
+ bottom: 20px;
31
+ right: 20px;
32
+ }
33
+
34
+ .messenger-launcher-bottom-left {
35
+ bottom: 20px;
36
+ left: 20px;
37
+ }
38
+
39
+ .messenger-launcher-btn {
40
+ width: 60px;
41
+ height: 60px;
42
+ border-radius: 50%;
43
+ border: none;
44
+ background: #1c1c1e;
45
+ color: white;
46
+ cursor: pointer;
47
+ display: flex;
48
+ align-items: center;
49
+ justify-content: center;
50
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
51
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
52
+ position: relative;
53
+ }
54
+
55
+ .messenger-launcher-btn:hover {
56
+ transform: scale(1.05);
57
+ box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
58
+ }
59
+
60
+ .messenger-launcher-btn:active {
61
+ transform: scale(0.95);
62
+ }
63
+
64
+ .messenger-launcher-icon {
65
+ display: flex;
66
+ align-items: center;
67
+ justify-content: center;
68
+ transition: opacity 0.2s ease, transform 0.2s ease;
69
+ }
70
+
71
+ .messenger-launcher-open .messenger-launcher-icon-chat {
72
+ opacity: 0;
73
+ transform: rotate(-90deg);
74
+ }
75
+
76
+ .messenger-launcher-open .messenger-launcher-icon-close {
77
+ opacity: 1;
78
+ transform: rotate(0deg);
79
+ }
80
+
81
+ .messenger-launcher-badge {
82
+ position: absolute;
83
+ top: -4px;
84
+ right: -4px;
85
+ min-width: 20px;
86
+ height: 20px;
87
+ background: #ef4444;
88
+ color: white;
89
+ font-size: 11px;
90
+ font-weight: 600;
91
+ border-radius: 10px;
92
+ display: flex;
93
+ align-items: center;
94
+ justify-content: center;
95
+ padding: 0 6px;
96
+ border: 2px solid white;
97
+ }
98
+
99
+ /* ========================================
100
+ Panel Container
101
+ ======================================== */
102
+
103
+ .messenger-panel {
104
+ position: fixed;
105
+ z-index: 999998;
106
+ width: 400px;
107
+ height: 680px;
108
+ max-height: calc(100vh - 100px);
109
+ display: none;
110
+ opacity: 0;
111
+ transform: translateY(20px) scale(0.95);
112
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
113
+ }
114
+
115
+ .messenger-panel.open {
116
+ opacity: 1;
117
+ transform: translateY(0) scale(1);
118
+ }
119
+
120
+ .messenger-panel-bottom-right {
121
+ bottom: 90px;
122
+ right: 20px;
123
+ }
124
+
125
+ .messenger-panel-bottom-left {
126
+ bottom: 90px;
127
+ left: 20px;
128
+ }
129
+
130
+ .messenger-panel-content {
131
+ background: #1c1c1e;
132
+ height: 100%;
133
+ border-radius: 16px;
134
+ overflow: hidden;
135
+ display: flex;
136
+ flex-direction: column;
137
+ box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
138
+ }
139
+
140
+ /* Light theme */
141
+ .messenger-panel.theme-light .messenger-panel-content {
142
+ background: #ffffff;
143
+ }
144
+
145
+ /* ========================================
146
+ Views Container
147
+ ======================================== */
148
+
149
+ .messenger-panel-views {
150
+ flex: 1;
151
+ overflow: hidden;
152
+ display: flex;
153
+ flex-direction: column;
154
+ }
155
+
156
+ .messenger-view {
157
+ height: 100%;
158
+ display: flex;
159
+ flex-direction: column;
160
+ overflow: hidden;
161
+ }
162
+
163
+ /* ========================================
164
+ Common Components
165
+ ======================================== */
166
+
167
+ /* Close Button */
168
+ .messenger-close-btn {
169
+ background: none;
170
+ border: none;
171
+ padding: 8px;
172
+ cursor: pointer;
173
+ color: rgba(255, 255, 255, 0.6);
174
+ border-radius: 8px;
175
+ display: flex;
176
+ align-items: center;
177
+ justify-content: center;
178
+ transition: all 0.2s ease;
179
+ }
180
+
181
+ .messenger-close-btn:hover {
182
+ background: rgba(255, 255, 255, 0.1);
183
+ color: white;
184
+ }
185
+
186
+ .theme-light .messenger-close-btn {
187
+ color: #86868b;
188
+ }
189
+
190
+ .theme-light .messenger-close-btn:hover {
191
+ background: #f5f5f7;
192
+ color: #1d1d1f;
193
+ }
194
+
195
+ /* Back Button */
196
+ .messenger-back-btn {
197
+ background: none;
198
+ border: none;
199
+ padding: 8px;
200
+ cursor: pointer;
201
+ color: rgba(255, 255, 255, 0.6);
202
+ border-radius: 8px;
203
+ display: flex;
204
+ align-items: center;
205
+ justify-content: center;
206
+ transition: all 0.2s ease;
207
+ }
208
+
209
+ .messenger-back-btn:hover {
210
+ background: rgba(255, 255, 255, 0.1);
211
+ color: white;
212
+ }
213
+
214
+ /* Avatar Stack */
215
+ .messenger-avatar-stack {
216
+ display: flex;
217
+ align-items: center;
218
+ }
219
+
220
+ .messenger-avatar {
221
+ width: 32px;
222
+ height: 32px;
223
+ border-radius: 50%;
224
+ border: 2px solid #1c1c1e;
225
+ background: #5856d6;
226
+ color: white;
227
+ font-size: 13px;
228
+ font-weight: 600;
229
+ display: flex;
230
+ align-items: center;
231
+ justify-content: center;
232
+ margin-left: -8px;
233
+ object-fit: cover;
234
+ }
235
+
236
+ .messenger-avatar:first-child {
237
+ margin-left: 0;
238
+ }
239
+
240
+ .messenger-avatar-small {
241
+ width: 28px;
242
+ height: 28px;
243
+ font-size: 11px;
244
+ }
245
+
246
+ .messenger-avatar-medium {
247
+ width: 40px;
248
+ height: 40px;
249
+ font-size: 15px;
250
+ font-weight: 600;
251
+ }
252
+
253
+ .messenger-avatar-tiny {
254
+ width: 20px;
255
+ height: 20px;
256
+ font-size: 9px;
257
+ border-width: 1.5px;
258
+ margin-left: -6px;
259
+ }
260
+
261
+ .messenger-avatar-tiny:first-child {
262
+ margin-left: 0;
263
+ }
264
+
265
+ .theme-light .messenger-avatar {
266
+ border-color: #ffffff;
267
+ }
268
+
269
+ /* ========================================
270
+ Home View
271
+ ======================================== */
272
+
273
+ .messenger-home-view {
274
+ background: linear-gradient(180deg, #2c2c2e 0%, #1c1c1e 40%);
275
+ }
276
+
277
+ .messenger-home-header {
278
+ padding: 20px;
279
+ background: linear-gradient(180deg, rgba(88, 86, 214, 0.2) 0%, transparent 100%);
280
+ }
281
+
282
+ .messenger-home-header-top {
283
+ display: flex;
284
+ align-items: center;
285
+ justify-content: space-between;
286
+ margin-bottom: 24px;
287
+ }
288
+
289
+ .messenger-home-logo {
290
+ width: 32px;
291
+ height: 32px;
292
+ }
293
+
294
+ .messenger-home-logo img {
295
+ width: 100%;
296
+ height: 100%;
297
+ border-radius: 8px;
298
+ object-fit: cover;
299
+ }
300
+
301
+ .messenger-home-logo-default {
302
+ width: 32px;
303
+ height: 32px;
304
+ background: linear-gradient(135deg, #5856d6, #007aff);
305
+ border-radius: 8px;
306
+ display: flex;
307
+ align-items: center;
308
+ justify-content: center;
309
+ color: white;
310
+ }
311
+
312
+ .messenger-home-avatars {
313
+ flex: 1;
314
+ display: flex;
315
+ justify-content: flex-end;
316
+ margin-right: 12px;
317
+ }
318
+
319
+ .messenger-home-welcome {
320
+ display: flex;
321
+ flex-direction: column;
322
+ gap: 4px;
323
+ }
324
+
325
+ .messenger-home-greeting {
326
+ font-size: 15px;
327
+ color: rgba(255, 255, 255, 0.5);
328
+ }
329
+
330
+ .messenger-home-question {
331
+ font-size: 18px;
332
+ font-weight: 600;
333
+ color: white;
334
+ }
335
+
336
+ .messenger-home-body {
337
+ flex: 1;
338
+ padding: 20px;
339
+ overflow-y: auto;
340
+ }
341
+
342
+ .messenger-home-message-btn {
343
+ width: 100%;
344
+ display: flex;
345
+ align-items: center;
346
+ justify-content: space-between;
347
+ padding: 16px 20px;
348
+ background: #2c2c2e;
349
+ border: none;
350
+ border-radius: 24px;
351
+ color: white;
352
+ font-size: 15px;
353
+ font-weight: 500;
354
+ cursor: pointer;
355
+ transition: all 0.2s ease;
356
+ margin-bottom: 20px;
357
+ }
358
+
359
+ .messenger-home-message-btn:hover {
360
+ background: #3c3c3e;
361
+ transform: translateX(4px);
362
+ }
363
+
364
+ .messenger-home-message-btn svg {
365
+ opacity: 0.6;
366
+ }
367
+
368
+ /* Featured Card */
369
+ .messenger-home-featured {
370
+ background: #2c2c2e;
371
+ border-radius: 12px;
372
+ overflow: hidden;
373
+ margin-bottom: 20px;
374
+ }
375
+
376
+ .messenger-home-featured-image {
377
+ width: 100%;
378
+ height: 120px;
379
+ object-fit: cover;
380
+ }
381
+
382
+ .messenger-home-featured-content {
383
+ padding: 16px;
384
+ }
385
+
386
+ .messenger-home-featured-content h3 {
387
+ margin: 0 0 8px;
388
+ font-size: 16px;
389
+ font-weight: 600;
390
+ color: white;
391
+ }
392
+
393
+ .messenger-home-featured-content p {
394
+ margin: 0;
395
+ font-size: 14px;
396
+ color: rgba(255, 255, 255, 0.6);
397
+ }
398
+
399
+ /* Changelog Section in Home */
400
+ .messenger-home-changelog-section {
401
+ margin-top: 20px;
402
+ display: flex;
403
+ flex-direction: column;
404
+ gap: 16px;
405
+ }
406
+
407
+ .messenger-home-changelog-card {
408
+ background: #2c2c2e;
409
+ border-radius: 16px;
410
+ overflow: hidden;
411
+ cursor: pointer;
412
+ transition: all 0.2s ease;
413
+ }
414
+
415
+ .messenger-home-changelog-card:hover {
416
+ background: #3c3c3e;
417
+ transform: translateY(-2px);
418
+ }
419
+
420
+ .messenger-home-changelog-cover {
421
+ width: 100%;
422
+ height: 140px;
423
+ overflow: hidden;
424
+ position: relative;
425
+ border-radius: 12px;
426
+ margin: 12px 12px 0 12px;
427
+ padding-bottom: 12px;
428
+ width: calc(100% - 24px);
429
+ }
430
+
431
+ .messenger-home-changelog-cover img {
432
+ width: 100%;
433
+ height: 100%;
434
+ object-fit: cover;
435
+ border-radius: 12px;
436
+ }
437
+
438
+ .messenger-home-changelog-cover-text {
439
+ position: absolute;
440
+ bottom: 12px;
441
+ left: 12px;
442
+ right: 12px;
443
+ color: #ffffff;
444
+ font-size: 14px;
445
+ font-weight: 600;
446
+ text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
447
+ line-height: 1.3;
448
+ }
449
+
450
+ .messenger-home-changelog-card-content {
451
+ padding: 16px;
452
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
453
+ }
454
+
455
+ .messenger-home-changelog-card-title {
456
+ margin: 0 0 8px 0;
457
+ font-size: 14px;
458
+ font-weight: 600;
459
+ color: #ffffff;
460
+ line-height: 1.3;
461
+ }
462
+
463
+ .messenger-home-changelog-card-desc {
464
+ margin: 0;
465
+ font-size: 14px;
466
+ color: rgba(255, 255, 255, 0.7);
467
+ line-height: 1.5;
468
+ display: -webkit-box;
469
+ -webkit-line-clamp: 3;
470
+ -webkit-box-orient: vertical;
471
+ overflow: hidden;
472
+ }
473
+
474
+ /* ========================================
475
+ Conversations View
476
+ ======================================== */
477
+
478
+ .messenger-conversations-header {
479
+ display: flex;
480
+ align-items: center;
481
+ justify-content: space-between;
482
+ padding: 20px;
483
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
484
+ }
485
+
486
+ .messenger-conversations-header h2 {
487
+ margin: 0;
488
+ font-size: 20px;
489
+ font-weight: 600;
490
+ color: white;
491
+ }
492
+
493
+ .messenger-conversations-body {
494
+ flex: 1;
495
+ overflow-y: auto;
496
+ padding: 12px;
497
+ }
498
+
499
+ .messenger-conversations-empty {
500
+ display: flex;
501
+ flex-direction: column;
502
+ align-items: center;
503
+ justify-content: center;
504
+ height: 100%;
505
+ text-align: center;
506
+ padding: 40px;
507
+ }
508
+
509
+ .messenger-conversations-empty-icon {
510
+ color: rgba(255, 255, 255, 0.3);
511
+ margin-bottom: 16px;
512
+ }
513
+
514
+ .messenger-conversations-empty h3 {
515
+ margin: 0 0 8px;
516
+ font-size: 18px;
517
+ font-weight: 600;
518
+ color: white;
519
+ }
520
+
521
+ .messenger-conversations-empty p {
522
+ margin: 0;
523
+ font-size: 14px;
524
+ color: rgba(255, 255, 255, 0.5);
525
+ }
526
+
527
+ .messenger-conversation-item {
528
+ display: flex;
529
+ align-items: flex-start;
530
+ gap: 12px;
531
+ padding: 16px;
532
+ border-radius: 12px;
533
+ cursor: pointer;
534
+ transition: background 0.2s ease;
535
+ }
536
+
537
+ .messenger-conversation-item:hover {
538
+ background: rgba(255, 255, 255, 0.05);
539
+ }
540
+
541
+ .messenger-conversation-avatars {
542
+ flex-shrink: 0;
543
+ padding-top: 2px;
544
+ }
545
+
546
+ .messenger-conversation-content {
547
+ flex: 1;
548
+ min-width: 0;
549
+ }
550
+
551
+ .messenger-conversation-header {
552
+ display: flex;
553
+ align-items: center;
554
+ justify-content: space-between;
555
+ margin-bottom: 4px;
556
+ gap: 12px;
557
+ }
558
+
559
+ .messenger-conversation-title {
560
+ font-size: 15px;
561
+ font-weight: 400;
562
+ color: #ffffff;
563
+ line-height: 1.3;
564
+ }
565
+
566
+ .messenger-conversation-time {
567
+ font-size: 13px;
568
+ color: rgba(255, 255, 255, 0.5);
569
+ flex-shrink: 0;
570
+ }
571
+
572
+ .messenger-conversation-preview {
573
+ display: flex;
574
+ align-items: center;
575
+ gap: 8px;
576
+ }
577
+
578
+ .messenger-unread-dot {
579
+ width: 8px;
580
+ height: 8px;
581
+ background: #ef4444;
582
+ border-radius: 50%;
583
+ flex-shrink: 0;
584
+ }
585
+
586
+ .messenger-conversation-message {
587
+ font-size: 14px;
588
+ color: rgba(255, 255, 255, 0.7);
589
+ white-space: nowrap;
590
+ overflow: hidden;
591
+ text-overflow: ellipsis;
592
+ line-height: 1.4;
593
+ }
594
+
595
+ .messenger-conversation-item.unread .messenger-conversation-title {
596
+ font-weight: 400;
597
+ color: #ffffff;
598
+ }
599
+
600
+ .messenger-conversation-item.unread .messenger-conversation-message {
601
+ color: rgba(255, 255, 255, 0.9);
602
+ }
603
+
604
+ .messenger-conversations-footer {
605
+ padding: 16px;
606
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
607
+ }
608
+
609
+ .messenger-new-message-btn {
610
+ width: 100%;
611
+ display: flex;
612
+ align-items: center;
613
+ gap: 12px;
614
+ padding: 12px 16px;
615
+ background: #2c2c2e;
616
+ border: none;
617
+ border-radius: 24px;
618
+ color: white;
619
+ font-size: 14px;
620
+ font-weight: 500;
621
+ cursor: pointer;
622
+ transition: all 0.2s ease;
623
+ }
624
+
625
+ .messenger-new-message-btn:hover {
626
+ background: #3c3c3e;
627
+ }
628
+
629
+ .messenger-new-message-btn span {
630
+ flex: 1;
631
+ text-align: left;
632
+ }
633
+
634
+ .messenger-new-message-btn svg {
635
+ opacity: 0.6;
636
+ }
637
+
638
+ /* ========================================
639
+ Chat View
640
+ ======================================== */
641
+
642
+ .messenger-chat-header {
643
+ display: flex;
644
+ align-items: center;
645
+ gap: 12px;
646
+ padding: 16px 20px;
647
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
648
+ }
649
+
650
+ .messenger-chat-header-info {
651
+ flex: 1;
652
+ display: flex;
653
+ align-items: center;
654
+ gap: 10px;
655
+ }
656
+
657
+ .messenger-chat-title {
658
+ font-size: 16px;
659
+ font-weight: 500;
660
+ color: white;
661
+ }
662
+
663
+ .messenger-chat-messages {
664
+ flex: 1;
665
+ overflow-y: auto;
666
+ padding: 16px;
667
+ display: flex;
668
+ flex-direction: column;
669
+ gap: 16px;
670
+ }
671
+
672
+ .messenger-chat-empty {
673
+ flex: 1;
674
+ display: flex;
675
+ flex-direction: column;
676
+ align-items: center;
677
+ justify-content: center;
678
+ text-align: center;
679
+ padding: 40px;
680
+ }
681
+
682
+ .messenger-chat-empty-avatars {
683
+ margin-bottom: 16px;
684
+ }
685
+
686
+ .messenger-chat-empty h3 {
687
+ margin: 0 0 8px;
688
+ font-size: 18px;
689
+ font-weight: 600;
690
+ color: white;
691
+ }
692
+
693
+ .messenger-chat-empty p {
694
+ margin: 0;
695
+ font-size: 14px;
696
+ color: rgba(255, 255, 255, 0.5);
697
+ max-width: 240px;
698
+ }
699
+
700
+ /* Messages */
701
+ .messenger-message {
702
+ display: flex;
703
+ gap: 8px;
704
+ max-width: 85%;
705
+ }
706
+
707
+ .messenger-message-own {
708
+ align-self: flex-end;
709
+ flex-direction: column;
710
+ align-items: flex-end;
711
+ }
712
+
713
+ .messenger-message-received {
714
+ align-self: flex-start;
715
+ }
716
+
717
+ .messenger-message-wrapper {
718
+ display: flex;
719
+ flex-direction: column;
720
+ }
721
+
722
+ .messenger-message-sender {
723
+ font-size: 12px;
724
+ font-weight: 500;
725
+ color: rgba(255, 255, 255, 0.6);
726
+ margin-bottom: 4px;
727
+ margin-left: 12px;
728
+ }
729
+
730
+ .messenger-message-bubble {
731
+ padding: 12px 16px;
732
+ border-radius: 18px;
733
+ word-wrap: break-word;
734
+ }
735
+
736
+ .messenger-message-own .messenger-message-bubble {
737
+ background: #007aff;
738
+ color: white;
739
+ border-bottom-right-radius: 4px;
740
+ }
741
+
742
+ .messenger-message-received .messenger-message-bubble {
743
+ background: #2c2c2e;
744
+ color: white;
745
+ border-bottom-left-radius: 4px;
746
+ }
747
+
748
+ .messenger-message-content {
749
+ font-size: 15px;
750
+ line-height: 1.4;
751
+ }
752
+
753
+ .messenger-message-time {
754
+ font-size: 11px;
755
+ color: rgba(255, 255, 255, 0.4);
756
+ margin-top: 4px;
757
+ padding: 0 4px;
758
+ }
759
+
760
+ .messenger-message-avatar {
761
+ flex-shrink: 0;
762
+ margin-top: auto;
763
+ }
764
+
765
+ /* Compose Area */
766
+ .messenger-chat-compose {
767
+ display: flex;
768
+ align-items: flex-end;
769
+ gap: 8px;
770
+ padding: 12px 16px;
771
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
772
+ background: #1c1c1e;
773
+ }
774
+
775
+ .messenger-compose-input-wrapper {
776
+ flex: 1;
777
+ background: #2c2c2e;
778
+ border-radius: 20px;
779
+ padding: 8px 16px;
780
+ }
781
+
782
+ .messenger-compose-input {
783
+ width: 100%;
784
+ background: transparent;
785
+ border: none;
786
+ outline: none;
787
+ color: white;
788
+ font-size: 15px;
789
+ line-height: 1.4;
790
+ resize: none;
791
+ max-height: 120px;
792
+ font-family: inherit;
793
+ }
794
+
795
+ .messenger-compose-input::placeholder {
796
+ color: rgba(255, 255, 255, 0.4);
797
+ }
798
+
799
+ .messenger-compose-send {
800
+ width: 40px;
801
+ height: 40px;
802
+ background: #007aff;
803
+ border: none;
804
+ border-radius: 50%;
805
+ color: white;
806
+ cursor: pointer;
807
+ display: flex;
808
+ align-items: center;
809
+ justify-content: center;
810
+ transition: all 0.2s ease;
811
+ flex-shrink: 0;
812
+ }
813
+
814
+ .messenger-compose-send:hover:not(:disabled) {
815
+ background: #0066d6;
816
+ transform: scale(1.05);
817
+ }
818
+
819
+ .messenger-compose-send:disabled {
820
+ background: #3c3c3e;
821
+ color: rgba(255, 255, 255, 0.3);
822
+ cursor: not-allowed;
823
+ }
824
+
825
+ /* ========================================
826
+ Help View
827
+ ======================================== */
828
+
829
+ .messenger-help-header {
830
+ display: flex;
831
+ align-items: center;
832
+ justify-content: center;
833
+ padding: 20px;
834
+ position: relative;
835
+ }
836
+
837
+ .messenger-help-header h2 {
838
+ margin: 0;
839
+ font-size: 17px;
840
+ font-weight: 600;
841
+ color: white;
842
+ }
843
+
844
+ .messenger-help-header .messenger-close-btn {
845
+ position: absolute;
846
+ right: 16px;
847
+ top: 50%;
848
+ transform: translateY(-50%);
849
+ }
850
+
851
+ .messenger-help-search {
852
+ padding: 0 16px 16px;
853
+ }
854
+
855
+ .messenger-help-search-wrapper {
856
+ display: flex;
857
+ align-items: center;
858
+ background: #2c2c2e;
859
+ border-radius: 12px;
860
+ padding: 14px 16px;
861
+ position: relative;
862
+ }
863
+
864
+ .messenger-help-search-icon {
865
+ position: absolute;
866
+ right: 16px;
867
+ color: rgba(255, 255, 255, 0.4);
868
+ }
869
+
870
+ .messenger-help-search-input {
871
+ flex: 1;
872
+ background: transparent;
873
+ border: none;
874
+ outline: none;
875
+ color: white;
876
+ font-size: 16px;
877
+ font-family: inherit;
878
+ padding-right: 32px;
879
+ }
880
+
881
+ .messenger-help-search-input::placeholder {
882
+ color: rgba(255, 255, 255, 0.4);
883
+ }
884
+
885
+ .messenger-help-body {
886
+ flex: 1;
887
+ overflow-y: auto;
888
+ padding: 0;
889
+ }
890
+
891
+ .messenger-help-collections-header {
892
+ font-size: 17px;
893
+ font-weight: 600;
894
+ color: white;
895
+ padding: 12px 16px 8px;
896
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
897
+ }
898
+
899
+ .messenger-help-collections {
900
+ padding: 0;
901
+ }
902
+
903
+ .messenger-help-collection {
904
+ display: flex;
905
+ align-items: center;
906
+ padding: 10px 16px;
907
+ cursor: pointer;
908
+ transition: background 0.2s ease;
909
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
910
+ }
911
+
912
+ .messenger-help-collection:hover {
913
+ background: rgba(255, 255, 255, 0.05);
914
+ }
915
+
916
+ .messenger-help-collection-content {
917
+ flex: 1;
918
+ min-width: 0;
919
+ }
920
+
921
+ .messenger-help-collection-title {
922
+ margin: 0 0 2px;
923
+ font-size: 14px;
924
+ font-weight: 600;
925
+ color: white;
926
+ }
927
+
928
+ .messenger-help-collection-desc {
929
+ margin: 0 0 2px;
930
+ font-size: 14px;
931
+ color: rgba(255, 255, 255, 0.7);
932
+ line-height: 1.3;
933
+ }
934
+
935
+ .messenger-help-collection-count {
936
+ font-size: 14px;
937
+ color: rgba(255, 255, 255, 0.4);
938
+ }
939
+
940
+ .messenger-help-collection-arrow {
941
+ color: rgba(255, 255, 255, 0.3);
942
+ flex-shrink: 0;
943
+ margin-left: 12px;
944
+ }
945
+
946
+ .messenger-help-empty {
947
+ display: flex;
948
+ flex-direction: column;
949
+ align-items: center;
950
+ justify-content: center;
951
+ height: 100%;
952
+ text-align: center;
953
+ padding: 40px;
954
+ }
955
+
956
+ .messenger-help-empty-icon {
957
+ color: rgba(255, 255, 255, 0.3);
958
+ margin-bottom: 16px;
959
+ }
960
+
961
+ .messenger-help-empty h3 {
962
+ margin: 0 0 8px;
963
+ font-size: 18px;
964
+ font-weight: 600;
965
+ color: white;
966
+ }
967
+
968
+ .messenger-help-empty p {
969
+ margin: 0;
970
+ font-size: 14px;
971
+ color: rgba(255, 255, 255, 0.5);
972
+ }
973
+
974
+ /* ========================================
975
+ Changelog View
976
+ ======================================== */
977
+
978
+ .messenger-changelog-header {
979
+ display: flex;
980
+ align-items: center;
981
+ justify-content: space-between;
982
+ padding: 20px;
983
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
984
+ }
985
+
986
+ .messenger-changelog-header h2 {
987
+ margin: 0;
988
+ font-size: 20px;
989
+ font-weight: 600;
990
+ color: white;
991
+ }
992
+
993
+ .messenger-changelog-subheader {
994
+ display: flex;
995
+ align-items: center;
996
+ justify-content: space-between;
997
+ padding: 12px 20px;
998
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
999
+ }
1000
+
1001
+ .messenger-changelog-latest {
1002
+ font-size: 12px;
1003
+ font-weight: 600;
1004
+ color: rgba(255, 255, 255, 0.5);
1005
+ text-transform: uppercase;
1006
+ letter-spacing: 0.5px;
1007
+ }
1008
+
1009
+ .messenger-changelog-team {
1010
+ display: flex;
1011
+ align-items: center;
1012
+ gap: 8px;
1013
+ font-size: 13px;
1014
+ color: rgba(255, 255, 255, 0.6);
1015
+ }
1016
+
1017
+ .messenger-changelog-body {
1018
+ flex: 1;
1019
+ overflow-y: auto;
1020
+ padding: 16px;
1021
+ }
1022
+
1023
+ .messenger-changelog-card {
1024
+ background: #2c2c2e;
1025
+ border-radius: 12px;
1026
+ overflow: hidden;
1027
+ margin-bottom: 12px;
1028
+ cursor: pointer;
1029
+ transition: all 0.2s ease;
1030
+ }
1031
+
1032
+ .messenger-changelog-card:hover {
1033
+ background: #3c3c3e;
1034
+ transform: translateY(-2px);
1035
+ }
1036
+
1037
+ .messenger-changelog-cover {
1038
+ height: 120px;
1039
+ overflow: hidden;
1040
+ }
1041
+
1042
+ .messenger-changelog-cover img {
1043
+ width: 100%;
1044
+ height: 100%;
1045
+ object-fit: cover;
1046
+ }
1047
+
1048
+ .messenger-changelog-content {
1049
+ padding: 16px;
1050
+ }
1051
+
1052
+ .messenger-changelog-tags {
1053
+ display: flex;
1054
+ flex-wrap: wrap;
1055
+ gap: 8px;
1056
+ margin-bottom: 12px;
1057
+ }
1058
+
1059
+ .messenger-changelog-tag {
1060
+ font-size: 11px;
1061
+ font-weight: 600;
1062
+ color: white;
1063
+ background: rgba(88, 86, 214, 0.3);
1064
+ padding: 4px 10px;
1065
+ border-radius: 12px;
1066
+ text-transform: uppercase;
1067
+ letter-spacing: 0.3px;
1068
+ }
1069
+
1070
+ .messenger-changelog-title {
1071
+ margin: 0 0 8px;
1072
+ font-size: 14px;
1073
+ font-weight: 600;
1074
+ color: white;
1075
+ line-height: 1.3;
1076
+ }
1077
+
1078
+ .messenger-changelog-description {
1079
+ margin: 0 0 12px;
1080
+ font-size: 14px;
1081
+ color: rgba(255, 255, 255, 0.6);
1082
+ line-height: 1.4;
1083
+ }
1084
+
1085
+ .messenger-changelog-meta {
1086
+ display: flex;
1087
+ align-items: center;
1088
+ justify-content: space-between;
1089
+ }
1090
+
1091
+ .messenger-changelog-date {
1092
+ font-size: 12px;
1093
+ color: rgba(255, 255, 255, 0.5);
1094
+ }
1095
+
1096
+ .messenger-changelog-arrow {
1097
+ color: rgba(255, 255, 255, 0.3);
1098
+ }
1099
+
1100
+ .messenger-changelog-empty {
1101
+ display: flex;
1102
+ flex-direction: column;
1103
+ align-items: center;
1104
+ justify-content: center;
1105
+ height: 100%;
1106
+ text-align: center;
1107
+ padding: 40px;
1108
+ }
1109
+
1110
+ .messenger-changelog-empty-icon {
1111
+ color: rgba(255, 255, 255, 0.3);
1112
+ margin-bottom: 16px;
1113
+ }
1114
+
1115
+ .messenger-changelog-empty h3 {
1116
+ margin: 0 0 8px;
1117
+ font-size: 18px;
1118
+ font-weight: 600;
1119
+ color: white;
1120
+ }
1121
+
1122
+ .messenger-changelog-empty p {
1123
+ margin: 0;
1124
+ font-size: 14px;
1125
+ color: rgba(255, 255, 255, 0.5);
1126
+ }
1127
+
1128
+ /* ========================================
1129
+ Navigation Tabs
1130
+ ======================================== */
1131
+
1132
+ .messenger-panel-nav {
1133
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
1134
+ background: #1c1c1e;
1135
+ }
1136
+
1137
+ .messenger-nav {
1138
+ display: flex;
1139
+ padding: 8px 12px;
1140
+ gap: 4px;
1141
+ }
1142
+
1143
+ .messenger-nav-tab {
1144
+ flex: 1;
1145
+ display: flex;
1146
+ flex-direction: column;
1147
+ align-items: center;
1148
+ gap: 4px;
1149
+ padding: 8px 4px;
1150
+ background: none;
1151
+ border: none;
1152
+ cursor: pointer;
1153
+ border-radius: 8px;
1154
+ transition: all 0.2s ease;
1155
+ position: relative;
1156
+ }
1157
+
1158
+ .messenger-nav-tab:hover {
1159
+ background: rgba(255, 255, 255, 0.05);
1160
+ }
1161
+
1162
+ .messenger-nav-icon {
1163
+ color: rgba(255, 255, 255, 0.5);
1164
+ transition: color 0.2s ease;
1165
+ }
1166
+
1167
+ .messenger-nav-home-icon {
1168
+ position: relative;
1169
+ display: inline-flex;
1170
+ align-items: center;
1171
+ justify-content: center;
1172
+ }
1173
+
1174
+ .messenger-nav-home-icon > i:first-child {
1175
+ position: relative;
1176
+ }
1177
+
1178
+ .messenger-nav-home-icon > i:last-child {
1179
+ position: absolute;
1180
+ top: 8px;
1181
+ left: 50%;
1182
+ transform: translateX(-50%);
1183
+ transition: color 0.2s ease, filter 0.2s ease;
1184
+ }
1185
+
1186
+ .messenger-nav-tab:hover .messenger-nav-home-icon > i:last-child {
1187
+ color: #ffd700;
1188
+ filter: drop-shadow(0 0 4px #ffd700);
1189
+ }
1190
+
1191
+ .messenger-nav-label {
1192
+ font-size: 14px;
1193
+ font-weight: 400;
1194
+ color: rgba(255, 255, 255, 0.5);
1195
+ transition: color 0.2s ease;
1196
+ }
1197
+
1198
+ .messenger-nav-tab.active .messenger-nav-icon {
1199
+ color: white;
1200
+ }
1201
+
1202
+ .messenger-nav-tab.active .messenger-nav-label {
1203
+ color: white;
1204
+ font-weight: 400;
1205
+ }
1206
+
1207
+ .messenger-nav-badge {
1208
+ position: absolute;
1209
+ top: 4px;
1210
+ right: calc(50% - 16px);
1211
+ min-width: 16px;
1212
+ height: 16px;
1213
+ background: #ef4444;
1214
+ color: white;
1215
+ font-size: 10px;
1216
+ font-weight: 600;
1217
+ border-radius: 8px;
1218
+ display: flex;
1219
+ align-items: center;
1220
+ justify-content: center;
1221
+ padding: 0 4px;
1222
+ }
1223
+
1224
+ /* ========================================
1225
+ Light Theme Overrides
1226
+ ======================================== */
1227
+
1228
+ /* Panel */
1229
+ .theme-light .messenger-panel-content {
1230
+ background: #ffffff;
1231
+ }
1232
+
1233
+ /* Home View */
1234
+ .theme-light .messenger-home-view {
1235
+ background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 40%);
1236
+ }
1237
+
1238
+ .theme-light .messenger-home-header {
1239
+ background: linear-gradient(180deg, rgba(88, 86, 214, 0.1) 0%, transparent 100%);
1240
+ }
1241
+
1242
+ .theme-light .messenger-home-greeting {
1243
+ color: #86868b;
1244
+ }
1245
+
1246
+ .theme-light .messenger-home-question {
1247
+ color: #1d1d1f;
1248
+ }
1249
+
1250
+ .theme-light .messenger-home-message-btn {
1251
+ background: #f5f5f7;
1252
+ color: #1d1d1f;
1253
+ border: 1px solid #e0e0e0;
1254
+ }
1255
+
1256
+ .theme-light .messenger-home-message-btn:hover {
1257
+ background: #e8e8ed;
1258
+ }
1259
+
1260
+ .theme-light .messenger-home-message-btn svg,
1261
+ .theme-light .messenger-home-message-btn i {
1262
+ color: #86868b;
1263
+ }
1264
+
1265
+ .theme-light .messenger-home-featured {
1266
+ background: #f5f5f7;
1267
+ }
1268
+
1269
+ .theme-light .messenger-home-featured-content h3 {
1270
+ color: #1d1d1f;
1271
+ }
1272
+
1273
+ .theme-light .messenger-home-featured-content p {
1274
+ color: #86868b;
1275
+ }
1276
+
1277
+ .theme-light .messenger-home-changelog-card {
1278
+ background: #f5f5f7;
1279
+ border: 1px solid #e0e0e0;
1280
+ }
1281
+
1282
+ .theme-light .messenger-home-changelog-card-content {
1283
+ border-top-color: #e0e0e0;
1284
+ }
1285
+
1286
+ .theme-light .messenger-home-changelog-card:hover {
1287
+ background: #e8e8ed;
1288
+ }
1289
+
1290
+ .theme-light .messenger-home-changelog-card-title {
1291
+ color: #1d1d1f;
1292
+ }
1293
+
1294
+ .theme-light .messenger-home-changelog-card-desc {
1295
+ color: #6e6e73;
1296
+ }
1297
+
1298
+ /* Close/Back buttons */
1299
+ .theme-light .messenger-close-btn,
1300
+ .theme-light .messenger-back-btn {
1301
+ color: #86868b;
1302
+ }
1303
+
1304
+ .theme-light .messenger-close-btn:hover,
1305
+ .theme-light .messenger-back-btn:hover {
1306
+ background: #f5f5f7;
1307
+ color: #1d1d1f;
1308
+ }
1309
+
1310
+ /* Avatar */
1311
+ .theme-light .messenger-avatar {
1312
+ border-color: #ffffff;
1313
+ }
1314
+
1315
+ /* Conversations View */
1316
+ .theme-light .messenger-conversations-view {
1317
+ background: #ffffff;
1318
+ }
1319
+
1320
+ .theme-light .messenger-conversations-header,
1321
+ .theme-light .messenger-help-header,
1322
+ .theme-light .messenger-changelog-header,
1323
+ .theme-light .messenger-chat-header {
1324
+ background: #ffffff;
1325
+ border-bottom-color: #e5e5e7;
1326
+ }
1327
+
1328
+ .theme-light .messenger-conversations-header h2,
1329
+ .theme-light .messenger-help-header h2,
1330
+ .theme-light .messenger-changelog-header h2 {
1331
+ color: #1d1d1f;
1332
+ }
1333
+
1334
+ .theme-light .messenger-conversations-body {
1335
+ background: #ffffff;
1336
+ }
1337
+
1338
+ .theme-light .messenger-conversations-footer {
1339
+ background: #ffffff;
1340
+ }
1341
+
1342
+ .theme-light .messenger-conversations-empty-icon,
1343
+ .theme-light .messenger-chat-empty-avatars,
1344
+ .theme-light .messenger-help-empty-icon,
1345
+ .theme-light .messenger-changelog-empty-icon {
1346
+ color: #c7c7cc;
1347
+ }
1348
+
1349
+ .theme-light .messenger-conversations-empty h3,
1350
+ .theme-light .messenger-chat-empty h3,
1351
+ .theme-light .messenger-help-empty h3,
1352
+ .theme-light .messenger-changelog-empty h3 {
1353
+ color: #1d1d1f;
1354
+ }
1355
+
1356
+ .theme-light .messenger-conversations-empty p,
1357
+ .theme-light .messenger-chat-empty p,
1358
+ .theme-light .messenger-help-empty p,
1359
+ .theme-light .messenger-changelog-empty p {
1360
+ color: #86868b;
1361
+ }
1362
+
1363
+ .theme-light .messenger-conversation-item:hover {
1364
+ background: rgba(0, 0, 0, 0.03);
1365
+ }
1366
+
1367
+ .theme-light .messenger-conversation-title {
1368
+ color: #1d1d1f !important;
1369
+ }
1370
+
1371
+ .theme-light .messenger-conversation-item.unread .messenger-conversation-title {
1372
+ color: #1d1d1f !important;
1373
+ font-weight: 400;
1374
+ }
1375
+
1376
+ .theme-light .messenger-conversation-time {
1377
+ color: #86868b !important;
1378
+ }
1379
+
1380
+ .theme-light .messenger-conversation-message {
1381
+ color: #6e6e73 !important;
1382
+ }
1383
+
1384
+ .theme-light .messenger-conversation-item.unread .messenger-conversation-message {
1385
+ color: #3a3a3c !important;
1386
+ }
1387
+
1388
+ .theme-light .messenger-chat-title,
1389
+ .theme-light .messenger-help-article-title,
1390
+ .theme-light .messenger-changelog-title {
1391
+ color: #1d1d1f;
1392
+ }
1393
+
1394
+ .theme-light .messenger-help-article-desc,
1395
+ .theme-light .messenger-changelog-description {
1396
+ color: #86868b;
1397
+ }
1398
+
1399
+ .theme-light .messenger-conversations-footer {
1400
+ border-top-color: #e5e5e7;
1401
+ }
1402
+
1403
+ .theme-light .messenger-new-message-btn {
1404
+ background: #f5f5f7;
1405
+ color: #1d1d1f;
1406
+ }
1407
+
1408
+ .theme-light .messenger-new-message-btn:hover {
1409
+ background: #e8e8ed;
1410
+ }
1411
+
1412
+ .theme-light .messenger-new-message-btn svg,
1413
+ .theme-light .messenger-new-message-btn i {
1414
+ color: #86868b;
1415
+ }
1416
+
1417
+ /* Chat View */
1418
+ .theme-light .messenger-chat-view {
1419
+ background: #ffffff;
1420
+ }
1421
+
1422
+ .theme-light .messenger-chat-header {
1423
+ background: #ffffff;
1424
+ }
1425
+
1426
+ .theme-light .messenger-chat-title {
1427
+ color: #1d1d1f;
1428
+ }
1429
+
1430
+ .theme-light .messenger-chat-messages {
1431
+ background: #ffffff;
1432
+ }
1433
+
1434
+ .theme-light .messenger-chat-empty h3 {
1435
+ color: #1d1d1f;
1436
+ }
1437
+
1438
+ .theme-light .messenger-chat-empty p {
1439
+ color: #86868b;
1440
+ }
1441
+
1442
+ .theme-light .messenger-message-sender {
1443
+ color: #86868b;
1444
+ }
1445
+
1446
+ .theme-light .messenger-message-received .messenger-message-bubble {
1447
+ background: #f5f5f7;
1448
+ color: #1d1d1f;
1449
+ }
1450
+
1451
+ .theme-light .messenger-message-own .messenger-message-bubble {
1452
+ background: #007aff;
1453
+ color: #ffffff;
1454
+ }
1455
+
1456
+ .theme-light .messenger-message-time {
1457
+ color: #86868b;
1458
+ }
1459
+
1460
+ .theme-light .messenger-chat-compose {
1461
+ background: #ffffff;
1462
+ border-top-color: #e5e5e7;
1463
+ }
1464
+
1465
+ .theme-light .messenger-compose-input-wrapper {
1466
+ background: #f5f5f7;
1467
+ }
1468
+
1469
+ .theme-light .messenger-compose-input {
1470
+ color: #1d1d1f;
1471
+ }
1472
+
1473
+ .theme-light .messenger-compose-input::placeholder {
1474
+ color: #86868b;
1475
+ }
1476
+
1477
+ .theme-light .messenger-compose-send:disabled {
1478
+ background: #e5e5e7;
1479
+ color: #c7c7cc;
1480
+ }
1481
+
1482
+ /* Help View */
1483
+ .theme-light .messenger-help-view {
1484
+ background: #ffffff;
1485
+ }
1486
+
1487
+ .theme-light .messenger-help-body {
1488
+ background: #ffffff;
1489
+ }
1490
+
1491
+ .theme-light .messenger-help-search {
1492
+ background: #ffffff;
1493
+ }
1494
+
1495
+ .theme-light .messenger-help-search-wrapper {
1496
+ background: #f5f5f7;
1497
+ }
1498
+
1499
+ .theme-light .messenger-help-search-icon {
1500
+ color: #86868b;
1501
+ }
1502
+
1503
+ .theme-light .messenger-help-search-input {
1504
+ color: #1d1d1f;
1505
+ }
1506
+
1507
+ .theme-light .messenger-help-search-input::placeholder {
1508
+ color: #86868b;
1509
+ }
1510
+
1511
+ .theme-light .messenger-help-collections-header {
1512
+ color: #1d1d1f;
1513
+ border-top-color: #e5e5e7;
1514
+ }
1515
+
1516
+ .theme-light .messenger-help-collection {
1517
+ border-top-color: #e5e5e7;
1518
+ }
1519
+
1520
+ .theme-light .messenger-help-collection:hover {
1521
+ background: rgba(0, 0, 0, 0.03);
1522
+ }
1523
+
1524
+ .theme-light .messenger-help-collection-title {
1525
+ color: #1d1d1f;
1526
+ }
1527
+
1528
+ .theme-light .messenger-help-collection-desc {
1529
+ color: #6e6e73;
1530
+ }
1531
+
1532
+ .theme-light .messenger-help-collection-count {
1533
+ color: #86868b;
1534
+ }
1535
+
1536
+ .theme-light .messenger-help-collection-arrow {
1537
+ color: #c7c7cc;
1538
+ }
1539
+
1540
+ /* Changelog View */
1541
+ .theme-light .messenger-changelog-subheader {
1542
+ border-bottom-color: #e5e5e7;
1543
+ }
1544
+
1545
+ .theme-light .messenger-changelog-latest {
1546
+ color: #86868b;
1547
+ }
1548
+
1549
+ .theme-light .messenger-changelog-team {
1550
+ color: #86868b;
1551
+ }
1552
+
1553
+ .theme-light .messenger-changelog-card {
1554
+ background: #f5f5f7;
1555
+ }
1556
+
1557
+ .theme-light .messenger-changelog-card:hover {
1558
+ background: #e8e8ed;
1559
+ }
1560
+
1561
+ .theme-light .messenger-changelog-tag {
1562
+ background: rgba(0, 122, 255, 0.15);
1563
+ color: #007aff;
1564
+ }
1565
+
1566
+ .theme-light .messenger-changelog-date {
1567
+ color: #86868b;
1568
+ }
1569
+
1570
+ .theme-light .messenger-changelog-arrow {
1571
+ color: #c7c7cc;
1572
+ }
1573
+
1574
+ /* Navigation */
1575
+ .theme-light .messenger-panel-nav {
1576
+ background: #ffffff;
1577
+ border-top-color: #e5e5e7;
1578
+ }
1579
+
1580
+ .theme-light .messenger-nav-icon {
1581
+ color: #86868b;
1582
+ }
1583
+
1584
+ .theme-light .messenger-nav-label {
1585
+ color: #86868b;
1586
+ }
1587
+
1588
+ .theme-light .messenger-nav-tab:hover {
1589
+ background: rgba(0, 0, 0, 0.05);
1590
+ }
1591
+
1592
+ .theme-light .messenger-nav-tab.active .messenger-nav-icon,
1593
+ .theme-light .messenger-nav-tab.active .messenger-nav-label {
1594
+ color: #007aff;
1595
+ }
1596
+
1597
+ /* ========================================
1598
+ Responsive Design
1599
+ ======================================== */
1600
+
1601
+ @media (max-width: 480px) {
1602
+ .messenger-panel {
1603
+ width: 100%;
1604
+ height: 100%;
1605
+ max-height: 100%;
1606
+ bottom: 0;
1607
+ right: 0;
1608
+ left: 0;
1609
+ border-radius: 0;
1610
+ }
1611
+
1612
+ .messenger-panel-content {
1613
+ border-radius: 0;
1614
+ }
1615
+
1616
+ .messenger-launcher {
1617
+ bottom: 16px;
1618
+ right: 16px;
1619
+ }
1620
+
1621
+ .messenger-launcher-bottom-left {
1622
+ left: 16px;
1623
+ }
1624
+ }
1625
+
1626
+ /* ========================================
1627
+ Animations
1628
+ ======================================== */
1629
+
1630
+ @keyframes messenger-slide-up {
1631
+ from {
1632
+ opacity: 0;
1633
+ transform: translateY(20px) scale(0.95);
1634
+ }
1635
+ to {
1636
+ opacity: 1;
1637
+ transform: translateY(0) scale(1);
1638
+ }
1639
+ }
1640
+
1641
+ @keyframes messenger-fade-in {
1642
+ from { opacity: 0; }
1643
+ to { opacity: 1; }
1644
+ }
1645
+
1646
+ /* Reduced motion */
1647
+ @media (prefers-reduced-motion: reduce) {
1648
+ .messenger-launcher-btn,
1649
+ .messenger-panel,
1650
+ .messenger-nav-tab,
1651
+ .messenger-conversation-item,
1652
+ .messenger-help-article,
1653
+ .messenger-changelog-card {
1654
+ transition: none;
1655
+ }
1656
+ }
1657
+ `;