tt-help-cli-ycl 1.3.57 → 1.3.58

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,1070 @@
1
+ * {
2
+ margin: 0;
3
+ padding: 0;
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ body {
8
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
9
+ background: #0f0f13;
10
+ color: #e0e0e0;
11
+ padding: 16px;
12
+ }
13
+
14
+ .header {
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: space-between;
18
+ padding: 12px 16px;
19
+ background: #1a1a24;
20
+ border-radius: 8px;
21
+ margin-bottom: 16px;
22
+ }
23
+
24
+ .header h1 {
25
+ font-size: 18px;
26
+ color: #fe2c55;
27
+ }
28
+
29
+ .header .meta {
30
+ font-size: 12px;
31
+ color: #888;
32
+ }
33
+
34
+ .header .status {
35
+ font-size: 12px;
36
+ color: #4ade80;
37
+ }
38
+
39
+ .script-link {
40
+ font-size: 12px;
41
+ color: #60a5fa;
42
+ text-decoration: none;
43
+ padding: 2px 8px;
44
+ border: 1px solid #60a5fa;
45
+ border-radius: 4px;
46
+ }
47
+
48
+ .script-link:hover {
49
+ background: #60a5fa;
50
+ color: #fff;
51
+ }
52
+
53
+ .stats {
54
+ display: grid;
55
+ grid-template-columns: repeat(7, 1fr);
56
+ gap: 12px;
57
+ margin-bottom: 16px;
58
+ }
59
+
60
+ .stat-card {
61
+ background: #1a1a24;
62
+ border-radius: 8px;
63
+ padding: 16px;
64
+ text-align: center;
65
+ }
66
+
67
+ .stat-card .label {
68
+ font-size: 12px;
69
+ color: #888;
70
+ margin-bottom: 8px;
71
+ }
72
+
73
+ .stat-card .value {
74
+ font-size: 28px;
75
+ font-weight: 700;
76
+ }
77
+
78
+ .stat-card .value.total {
79
+ color: #60a5fa;
80
+ }
81
+
82
+ .stat-card .value.done {
83
+ color: #4ade80;
84
+ }
85
+
86
+ .stat-card .value.pending {
87
+ color: #facc15;
88
+ }
89
+
90
+ .stat-card .value.error {
91
+ color: #f87171;
92
+ }
93
+
94
+ .stat-card .value.target {
95
+ color: #a78bfa;
96
+ }
97
+
98
+ .stat-card .value-sub {
99
+ font-size: 12px;
100
+ font-weight: 400;
101
+ margin-top: 2px;
102
+ }
103
+
104
+ .stat-card.clickable {
105
+ cursor: pointer;
106
+ }
107
+
108
+ .stat-card.clickable:hover {
109
+ background: #25253a;
110
+ }
111
+
112
+ .stat-card.clickable.pending-card:hover {
113
+ background: rgba(250, 204, 21, 0.15);
114
+ }
115
+
116
+ .stat-card.clickable.pending-card:hover,
117
+ .stat-card.clickable#statUserUpdateCard:hover {
118
+ background: rgba(167, 139, 250, 0.15);
119
+ }
120
+
121
+ .charts {
122
+ display: grid;
123
+ grid-template-columns: 1fr 1fr;
124
+ gap: 12px;
125
+ margin-bottom: 16px;
126
+ }
127
+
128
+ .chart-box {
129
+ background: #1a1a24;
130
+ border-radius: 8px;
131
+ padding: 16px;
132
+ }
133
+
134
+ .chart-box h3 {
135
+ font-size: 14px;
136
+ color: #888;
137
+ margin-bottom: 12px;
138
+ }
139
+
140
+ .bar-row {
141
+ display: flex;
142
+ align-items: center;
143
+ margin-bottom: 8px;
144
+ font-size: 13px;
145
+ }
146
+
147
+ .bar-row .name {
148
+ width: 50px;
149
+ color: #ccc;
150
+ flex-shrink: 0;
151
+ }
152
+
153
+ .bar-row .bar-bg {
154
+ flex: 1;
155
+ background: #2a2a3a;
156
+ border-radius: 4px;
157
+ height: 20px;
158
+ overflow: hidden;
159
+ margin: 0 8px;
160
+ }
161
+
162
+ .bar-row .bar-fill {
163
+ height: 100%;
164
+ border-radius: 4px;
165
+ transition: width 0.3s;
166
+ display: flex;
167
+ align-items: center;
168
+ padding-left: 6px;
169
+ font-size: 11px;
170
+ color: #fff;
171
+ white-space: nowrap;
172
+ }
173
+
174
+ .bar-row .target-badge {
175
+ width: 60px;
176
+ text-align: center;
177
+ color: #4ade80;
178
+ font-weight: 600;
179
+ font-size: 12px;
180
+ flex-shrink: 0;
181
+ margin: 0 6px;
182
+ }
183
+
184
+ .bar-row .count {
185
+ width: 55px;
186
+ text-align: right;
187
+ color: #888;
188
+ flex-shrink: 0;
189
+ }
190
+
191
+ .bar-row.is-target {
192
+ background: rgba(167, 139, 250, 0.08);
193
+ border-radius: 4px;
194
+ padding: 2px 0;
195
+ }
196
+
197
+ .bar-row.is-target .name {
198
+ color: #a78bfa;
199
+ font-weight: 600;
200
+ }
201
+
202
+ .source-row {
203
+ display: flex;
204
+ align-items: center;
205
+ margin-bottom: 6px;
206
+ font-size: 13px;
207
+ }
208
+
209
+ .source-row .s-name {
210
+ width: 80px;
211
+ color: #ccc;
212
+ flex-shrink: 0;
213
+ }
214
+
215
+ .source-row .s-val {
216
+ color: #888;
217
+ }
218
+
219
+ .table-wrap {
220
+ background: #1a1a24;
221
+ border-radius: 8px;
222
+ padding: 16px;
223
+ }
224
+
225
+ .table-wrap h3 {
226
+ font-size: 14px;
227
+ color: #888;
228
+ margin-bottom: 12px;
229
+ }
230
+
231
+ .controls {
232
+ display: flex;
233
+ gap: 8px;
234
+ margin-bottom: 12px;
235
+ flex-wrap: wrap;
236
+ }
237
+
238
+ .controls input {
239
+ flex: 1;
240
+ min-width: 150px;
241
+ padding: 6px 12px;
242
+ border: 1px solid #333;
243
+ border-radius: 6px;
244
+ background: #0f0f13;
245
+ color: #e0e0e0;
246
+ font-size: 13px;
247
+ outline: none;
248
+ }
249
+
250
+ .controls input:focus {
251
+ border-color: #fe2c55;
252
+ }
253
+
254
+ .controls button {
255
+ padding: 6px 14px;
256
+ border: 1px solid #333;
257
+ border-radius: 6px;
258
+ background: #2a2a3a;
259
+ color: #ccc;
260
+ font-size: 12px;
261
+ cursor: pointer;
262
+ transition: all 0.2s;
263
+ }
264
+
265
+ .controls button:hover {
266
+ border-color: #fe2c55;
267
+ color: #fff;
268
+ }
269
+
270
+ .controls button.active {
271
+ background: #fe2c55;
272
+ color: #fff;
273
+ border-color: #fe2c55;
274
+ }
275
+
276
+ .add-users {
277
+ display: flex;
278
+ gap: 8px;
279
+ margin-bottom: 12px;
280
+ align-items: center;
281
+ }
282
+
283
+ .add-users button {
284
+ padding: 6px 16px;
285
+ border: none;
286
+ border-radius: 6px;
287
+ background: #fe2c55;
288
+ color: #fff;
289
+ font-size: 13px;
290
+ cursor: pointer;
291
+ font-weight: 600;
292
+ transition: all 0.2s;
293
+ }
294
+
295
+ .add-users button:hover {
296
+ background: #e61944;
297
+ }
298
+
299
+ .modal-overlay {
300
+ position: fixed;
301
+ inset: 0;
302
+ background: rgba(0, 0, 0, 0.65);
303
+ z-index: 1000;
304
+ display: flex;
305
+ align-items: center;
306
+ justify-content: center;
307
+ }
308
+
309
+ .modal {
310
+ background: #1a1a24;
311
+ border-radius: 12px;
312
+ padding: 24px;
313
+ width: 520px;
314
+ max-width: 90vw;
315
+ box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
316
+ }
317
+
318
+ .modal h3 {
319
+ font-size: 16px;
320
+ color: #e0e0e0;
321
+ margin-bottom: 6px;
322
+ }
323
+
324
+ .modal .hint {
325
+ font-size: 12px;
326
+ color: #888;
327
+ margin-bottom: 16px;
328
+ }
329
+
330
+ .modal textarea {
331
+ width: 100%;
332
+ height: 180px;
333
+ padding: 10px 14px;
334
+ border: 1px solid #333;
335
+ border-radius: 8px;
336
+ background: #0f0f13;
337
+ color: #e0e0e0;
338
+ font-size: 13px;
339
+ font-family: inherit;
340
+ outline: none;
341
+ resize: vertical;
342
+ line-height: 1.6;
343
+ }
344
+
345
+ .modal textarea:focus {
346
+ border-color: #fe2c55;
347
+ }
348
+
349
+ .modal textarea::placeholder {
350
+ color: #555;
351
+ }
352
+
353
+ .modal .preview {
354
+ margin-top: 8px;
355
+ font-size: 12px;
356
+ color: #60a5fa;
357
+ min-height: 20px;
358
+ }
359
+
360
+ .modal .btn-row {
361
+ display: flex;
362
+ gap: 8px;
363
+ margin-top: 16px;
364
+ justify-content: flex-end;
365
+ }
366
+
367
+ .modal .btn-row button {
368
+ padding: 8px 20px;
369
+ border: none;
370
+ border-radius: 6px;
371
+ font-size: 13px;
372
+ cursor: pointer;
373
+ font-weight: 600;
374
+ transition: all 0.2s;
375
+ }
376
+
377
+ .modal .btn-cancel {
378
+ background: #2a2a3a;
379
+ color: #ccc;
380
+ }
381
+
382
+ .modal .btn-cancel:hover {
383
+ background: #333;
384
+ }
385
+
386
+ .modal .btn-submit {
387
+ background: #fe2c55;
388
+ color: #fff;
389
+ }
390
+
391
+ .modal .btn-submit:hover {
392
+ background: #e61944;
393
+ }
394
+
395
+ .toast {
396
+ position: fixed;
397
+ top: 16px;
398
+ right: 16px;
399
+ padding: 10px 20px;
400
+ border-radius: 6px;
401
+ font-size: 13px;
402
+ z-index: 999;
403
+ transition: opacity 0.3s;
404
+ }
405
+
406
+ .toast.success {
407
+ background: #166534;
408
+ color: #fff;
409
+ }
410
+
411
+ .toast.error {
412
+ background: #991b1b;
413
+ color: #fff;
414
+ }
415
+
416
+ .loading-overlay {
417
+ position: fixed;
418
+ inset: 0;
419
+ background: rgba(0, 0, 0, 0.5);
420
+ display: flex;
421
+ align-items: center;
422
+ justify-content: center;
423
+ z-index: 9999;
424
+ opacity: 0;
425
+ transition: opacity 0.2s;
426
+ pointer-events: none;
427
+ }
428
+
429
+ .loading-overlay.visible {
430
+ opacity: 1;
431
+ pointer-events: auto;
432
+ }
433
+
434
+ .loading-spinner {
435
+ display: flex;
436
+ flex-direction: column;
437
+ align-items: center;
438
+ gap: 12px;
439
+ background: #1a1a24;
440
+ padding: 24px 36px;
441
+ border-radius: 12px;
442
+ border: 1px solid #2a2a3a;
443
+ }
444
+
445
+ .loading-spinner .spinner {
446
+ width: 36px;
447
+ height: 36px;
448
+ border: 3px solid #2a2a3a;
449
+ border-top-color: #fe2c55;
450
+ border-radius: 50%;
451
+ animation: spin 0.8s linear infinite;
452
+ }
453
+
454
+ .loading-spinner .loading-text {
455
+ color: #ccc;
456
+ font-size: 14px;
457
+ }
458
+
459
+ @keyframes spin {
460
+ to {
461
+ transform: rotate(360deg);
462
+ }
463
+ }
464
+
465
+ @keyframes flashChange {
466
+ 0% {
467
+ filter: brightness(1.8);
468
+ box-shadow: 0 0 12px rgba(254, 44, 85, 0.6);
469
+ }
470
+
471
+ 100% {
472
+ filter: brightness(1);
473
+ box-shadow: none;
474
+ }
475
+ }
476
+
477
+ .flash-change {
478
+ animation: flashChange 0.6s ease-out;
479
+ }
480
+
481
+ @keyframes rowFlash {
482
+ 0% {
483
+ background: rgba(254, 44, 85, 0.25);
484
+ }
485
+
486
+ 100% {
487
+ background: transparent;
488
+ }
489
+ }
490
+
491
+ tr.row-flash {
492
+ animation: rowFlash 0.8s ease-out;
493
+ }
494
+
495
+ @keyframes barFlash {
496
+ 0% {
497
+ filter: brightness(1.6);
498
+ }
499
+
500
+ 100% {
501
+ filter: brightness(1);
502
+ }
503
+ }
504
+
505
+ .bar-fill.bar-flash {
506
+ animation: barFlash 0.5s ease-out;
507
+ }
508
+
509
+ .table-scroll {
510
+ max-height: 500px;
511
+ overflow-y: auto;
512
+ }
513
+
514
+ table {
515
+ width: 100%;
516
+ border-collapse: collapse;
517
+ font-size: 12px;
518
+ }
519
+
520
+ th {
521
+ position: sticky;
522
+ top: 0;
523
+ background: #22222e;
524
+ padding: 8px 10px;
525
+ text-align: left;
526
+ color: #888;
527
+ font-weight: 600;
528
+ border-bottom: 1px solid #333;
529
+ white-space: nowrap;
530
+ }
531
+
532
+ td {
533
+ padding: 6px 10px;
534
+ border-bottom: 1px solid #1f1f2a;
535
+ white-space: nowrap;
536
+ }
537
+
538
+ tr:hover {
539
+ background: #1f1f2a;
540
+ }
541
+
542
+ td.user-id {
543
+ cursor: pointer;
544
+ color: #60a5fa;
545
+ }
546
+
547
+ td.user-id:hover {
548
+ color: #fe2c55;
549
+ }
550
+
551
+ .tag {
552
+ display: inline-block;
553
+ padding: 1px 6px;
554
+ border-radius: 3px;
555
+ font-size: 10px;
556
+ }
557
+
558
+ .tag.seller {
559
+ background: #dc2626;
560
+ color: #fff;
561
+ }
562
+
563
+ .tag.verified {
564
+ background: #2563eb;
565
+ color: #fff;
566
+ }
567
+
568
+ .tag.pending {
569
+ background: #ca8a04;
570
+ color: #000;
571
+ }
572
+
573
+ .tag.processing {
574
+ background: #0ea5e9;
575
+ color: #fff;
576
+ }
577
+
578
+ .tag.error {
579
+ background: #991b1b;
580
+ color: #fff;
581
+ }
582
+
583
+ .tag.unknown-country {
584
+ background: #4b5563;
585
+ color: #fff;
586
+ }
587
+
588
+ #pendingPage {
589
+ display: none;
590
+ }
591
+
592
+ #pendingPage.active {
593
+ display: block;
594
+ }
595
+
596
+ #userUpdatePage {
597
+ display: none;
598
+ }
599
+
600
+ #userUpdatePage.active {
601
+ display: block;
602
+ }
603
+
604
+ #rawPage {
605
+ display: none;
606
+ }
607
+
608
+ #rawPage.active {
609
+ display: block;
610
+ }
611
+
612
+ #mainPage.hidden {
613
+ display: none;
614
+ }
615
+
616
+ .pending-country-card {
617
+ background: #1a1a24;
618
+ border-radius: 8px;
619
+ padding: 20px;
620
+ margin-bottom: 16px;
621
+ }
622
+
623
+ .pending-country-card h3 {
624
+ font-size: 16px;
625
+ color: #facc15;
626
+ margin-bottom: 16px;
627
+ display: flex;
628
+ align-items: center;
629
+ gap: 8px;
630
+ }
631
+
632
+ .pending-country-grid {
633
+ display: grid;
634
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
635
+ gap: 12px;
636
+ }
637
+
638
+ .pending-country-item {
639
+ background: #2a2a3a;
640
+ border-radius: 8px;
641
+ padding: 16px;
642
+ cursor: pointer;
643
+ transition: all 0.2s;
644
+ border: 1px solid transparent;
645
+ position: relative;
646
+ }
647
+
648
+ .country-action-btn {
649
+ position: absolute;
650
+ top: 10px;
651
+ right: 10px;
652
+ width: 28px;
653
+ height: 28px;
654
+ border: 1px solid rgba(248, 113, 113, 0.35);
655
+ border-radius: 999px;
656
+ background: rgba(127, 29, 29, 0.45);
657
+ color: #fca5a5;
658
+ display: inline-flex;
659
+ align-items: center;
660
+ justify-content: center;
661
+ font-size: 14px;
662
+ cursor: pointer;
663
+ transition: all 0.2s;
664
+ }
665
+
666
+ .country-action-btn:hover {
667
+ background: rgba(153, 27, 27, 0.85);
668
+ color: #fff;
669
+ border-color: rgba(248, 113, 113, 0.8);
670
+ }
671
+
672
+ .country-action-btn.restore {
673
+ border-color: rgba(74, 222, 128, 0.35);
674
+ background: rgba(20, 83, 45, 0.45);
675
+ color: #86efac;
676
+ }
677
+
678
+ .country-action-btn.restore:hover {
679
+ background: rgba(22, 101, 52, 0.9);
680
+ border-color: rgba(74, 222, 128, 0.8);
681
+ color: #fff;
682
+ }
683
+
684
+ .raw-page-layout {
685
+ display: grid;
686
+ grid-template-columns: 320px 1fr;
687
+ gap: 16px;
688
+ }
689
+
690
+ .raw-side-card {
691
+ background: #1a1a24;
692
+ border-radius: 8px;
693
+ padding: 16px;
694
+ }
695
+
696
+ .raw-side-card h3 {
697
+ font-size: 14px;
698
+ color: #f59e0b;
699
+ margin-bottom: 12px;
700
+ }
701
+
702
+ .raw-table-card {
703
+ background: #1a1a24;
704
+ border-radius: 8px;
705
+ padding: 16px;
706
+ }
707
+
708
+ .raw-table-card h3 {
709
+ font-size: 14px;
710
+ color: #888;
711
+ margin-bottom: 12px;
712
+ }
713
+
714
+ .muted-tip {
715
+ font-size: 12px;
716
+ color: #777;
717
+ margin-top: 8px;
718
+ line-height: 1.5;
719
+ }
720
+
721
+ .pending-country-item:hover {
722
+ border-color: #facc15;
723
+ background: #33334a;
724
+ }
725
+
726
+ .pending-country-item .country-name {
727
+ font-size: 18px;
728
+ font-weight: 700;
729
+ color: #facc15;
730
+ margin-bottom: 4px;
731
+ }
732
+
733
+ .pending-country-item .country-count {
734
+ font-size: 28px;
735
+ font-weight: 700;
736
+ color: #fff;
737
+ }
738
+
739
+ .pending-country-item .country-label {
740
+ font-size: 12px;
741
+ color: #888;
742
+ margin-top: 2px;
743
+ }
744
+
745
+ .pending-country-item.has-target {
746
+ border-color: #a78bfa;
747
+ }
748
+
749
+ .pending-country-item.has-target .country-name {
750
+ color: #a78bfa;
751
+ }
752
+
753
+ .back-btn {
754
+ padding: 6px 14px;
755
+ border: 1px solid #333;
756
+ border-radius: 6px;
757
+ background: #2a2a3a;
758
+ color: #ccc;
759
+ font-size: 13px;
760
+ cursor: pointer;
761
+ transition: all 0.2s;
762
+ margin-bottom: 16px;
763
+ }
764
+
765
+ .back-btn:hover {
766
+ border-color: #fe2c55;
767
+ color: #fff;
768
+ }
769
+
770
+ .tag.processed {
771
+ background: #166534;
772
+ color: #fff;
773
+ }
774
+
775
+ .tag.no-video {
776
+ background: #7c3aed;
777
+ color: #fff;
778
+ }
779
+
780
+ .tag.no-follow {
781
+ background: #b45309;
782
+ color: #fff;
783
+ }
784
+
785
+ .tag.keep-follow {
786
+ background: #059669;
787
+ color: #fff;
788
+ }
789
+
790
+ .tag.pinned {
791
+ background: #f59e0b;
792
+ color: #000;
793
+ }
794
+
795
+ .context-menu {
796
+ position: fixed;
797
+ background: #1e1e2e;
798
+ border: 1px solid #333;
799
+ border-radius: 6px;
800
+ padding: 4px 0;
801
+ min-width: 140px;
802
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
803
+ z-index: 1000;
804
+ }
805
+
806
+ .context-menu-item {
807
+ padding: 8px 16px;
808
+ font-size: 13px;
809
+ color: #ccc;
810
+ cursor: pointer;
811
+ display: flex;
812
+ align-items: center;
813
+ gap: 8px;
814
+ }
815
+
816
+ .context-menu-item:hover {
817
+ background: #fe2c55;
818
+ color: #fff;
819
+ }
820
+
821
+ .context-menu-item.danger {
822
+ color: #f87171;
823
+ }
824
+
825
+ .context-menu-item.danger:hover {
826
+ background: #991b1b;
827
+ color: #fff;
828
+ }
829
+
830
+ ::-webkit-scrollbar {
831
+ width: 6px;
832
+ }
833
+
834
+ ::-webkit-scrollbar-track {
835
+ background: #1a1a24;
836
+ }
837
+
838
+ ::-webkit-scrollbar-thumb {
839
+ background: #333;
840
+ border-radius: 3px;
841
+ }
842
+
843
+ .client-errors-section {
844
+ margin-bottom: 16px;
845
+ }
846
+
847
+ .section-header {
848
+ display: flex;
849
+ align-items: center;
850
+ gap: 8px;
851
+ margin-bottom: 8px;
852
+ }
853
+
854
+ .section-header h3 {
855
+ font-size: 14px;
856
+ color: #e0e0e0;
857
+ }
858
+
859
+ .error-badge {
860
+ background: #991b1b;
861
+ color: #fff;
862
+ font-size: 11px;
863
+ padding: 2px 8px;
864
+ border-radius: 10px;
865
+ font-weight: 600;
866
+ }
867
+
868
+ .client-errors-table {
869
+ width: 100%;
870
+ border-collapse: collapse;
871
+ background: #1a1a24;
872
+ border-radius: 8px;
873
+ overflow: hidden;
874
+ font-size: 13px;
875
+ }
876
+
877
+ .client-errors-table thead tr {
878
+ background: #22222e;
879
+ }
880
+
881
+ .client-errors-table th {
882
+ padding: 10px 12px;
883
+ text-align: left;
884
+ color: #888;
885
+ font-weight: 600;
886
+ font-size: 12px;
887
+ border-bottom: 1px solid #2a2a3a;
888
+ }
889
+
890
+ .client-errors-table td {
891
+ padding: 8px 12px;
892
+ border-bottom: 1px solid #1f1f2e;
893
+ }
894
+
895
+ .client-errors-table tbody tr:last-child td {
896
+ border-bottom: none;
897
+ }
898
+
899
+ .client-errors-table tbody tr:hover {
900
+ background: #22222e;
901
+ }
902
+
903
+ .error-type-captcha {
904
+ color: #f59e0b;
905
+ }
906
+
907
+ .error-type-network {
908
+ color: #f87171;
909
+ }
910
+
911
+ .error-type-other {
912
+ color: #a78bfa;
913
+ }
914
+
915
+ @media (max-width: 768px) {
916
+ body {
917
+ padding: 8px;
918
+ }
919
+
920
+ .header {
921
+ flex-direction: column;
922
+ gap: 6px;
923
+ align-items: flex-start;
924
+ }
925
+
926
+ .header h1 {
927
+ font-size: 16px;
928
+ }
929
+
930
+ .stats {
931
+ grid-template-columns: repeat(2, 1fr);
932
+ gap: 8px;
933
+ }
934
+
935
+ .stat-card {
936
+ padding: 10px;
937
+ }
938
+
939
+ .stat-card .label {
940
+ font-size: 11px;
941
+ }
942
+
943
+ .stat-card .value {
944
+ font-size: 18px;
945
+ }
946
+
947
+ .charts {
948
+ grid-template-columns: 1fr;
949
+ }
950
+
951
+ .raw-page-layout {
952
+ grid-template-columns: 1fr;
953
+ }
954
+
955
+ .table-wrap {
956
+ padding: 10px;
957
+ }
958
+
959
+ .controls {
960
+ flex-wrap: wrap;
961
+ gap: 6px;
962
+ }
963
+
964
+ .controls input {
965
+ flex: 0 0 100%;
966
+ width: 100%;
967
+ }
968
+
969
+ .controls button {
970
+ flex: 0 0 calc(33.33% - 4px);
971
+ min-width: 0;
972
+ text-align: center;
973
+ white-space: nowrap;
974
+ font-size: 11px;
975
+ padding: 8px 4px;
976
+ }
977
+
978
+ #batchResetBtn {
979
+ flex: 0 0 100% !important;
980
+ font-size: 12px !important;
981
+ padding: 8px 12px !important;
982
+ }
983
+
984
+ .controls select {
985
+ flex: 0 0 100%;
986
+ width: 100%;
987
+ }
988
+
989
+ .table-scroll {
990
+ max-height: none;
991
+ overflow: visible;
992
+ }
993
+
994
+ table,
995
+ thead,
996
+ tbody,
997
+ th,
998
+ td,
999
+ tr {
1000
+ display: block;
1001
+ }
1002
+
1003
+ thead {
1004
+ display: none;
1005
+ }
1006
+
1007
+ tr {
1008
+ background: #22222e;
1009
+ border-radius: 8px;
1010
+ padding: 10px 12px;
1011
+ margin-bottom: 8px;
1012
+ border: 1px solid #2a2a3a;
1013
+ }
1014
+
1015
+ tr:hover {
1016
+ background: #2a2a3a;
1017
+ }
1018
+
1019
+ td {
1020
+ padding: 4px 0;
1021
+ border: none;
1022
+ text-align: left;
1023
+ position: relative;
1024
+ padding-left: 40%;
1025
+ font-size: 13px;
1026
+ }
1027
+
1028
+ td::before {
1029
+ content: attr(data-label);
1030
+ position: absolute;
1031
+ left: 0;
1032
+ width: 36%;
1033
+ text-align: right;
1034
+ color: #888;
1035
+ font-size: 12px;
1036
+ font-weight: 600;
1037
+ white-space: nowrap;
1038
+ }
1039
+
1040
+ td.user-id {
1041
+ font-size: 15px;
1042
+ font-weight: 700;
1043
+ color: #60a5fa;
1044
+ padding-left: 0;
1045
+ border-bottom: 1px solid #2a2a3a;
1046
+ margin-bottom: 4px;
1047
+ padding-bottom: 6px;
1048
+ }
1049
+
1050
+ td.user-id::before {
1051
+ display: none;
1052
+ }
1053
+
1054
+ td.user-id:hover {
1055
+ color: #fe2c55;
1056
+ }
1057
+
1058
+ .add-users {
1059
+ justify-content: center;
1060
+ }
1061
+
1062
+ .modal {
1063
+ width: 95vw;
1064
+ padding: 16px;
1065
+ }
1066
+
1067
+ .modal textarea {
1068
+ height: 140px;
1069
+ }
1070
+ }