@djb25/digit-ui-css 1.0.57 → 1.0.59

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,1067 @@
1
+ :root {
2
+ --glass-bg: rgba(255, 255, 255, 0.72);
3
+ --glass-border: rgba(255, 255, 255, 0.4);
4
+ --glass-blur: blur(18px);
5
+
6
+ --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
7
+ --dark-text: #0f172a;
8
+ --muted-text: #64748b;
9
+
10
+ --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
11
+ --card-hover-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
12
+ }
13
+
14
+ .enterprise-dashboard-layout {
15
+ width: 100%;
16
+ position: relative;
17
+ min-height: inherit;
18
+ overflow: hidden;
19
+ background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
20
+ padding: 8px;
21
+ overflow-y: scroll;
22
+
23
+ .dashboard-background-glow {
24
+ position: absolute;
25
+ border-radius: 50%;
26
+ filter: blur(90px);
27
+ opacity: 0.25;
28
+ z-index: 0;
29
+ }
30
+
31
+ .glow-1 {
32
+ width: 320px;
33
+ height: 320px;
34
+ background: #8b5cf6;
35
+ top: -100px;
36
+ right: -60px;
37
+ }
38
+
39
+ .glow-2 {
40
+ width: 280px;
41
+ height: 280px;
42
+ background: #3b82f6;
43
+ bottom: -120px;
44
+ left: -60px;
45
+ }
46
+
47
+ .dashboard-header {
48
+ position: relative;
49
+ z-index: 2;
50
+ }
51
+
52
+ .glass-card {
53
+ background: var(--glass-bg);
54
+ backdrop-filter: var(--glass-blur);
55
+ -webkit-backdrop-filter: var(--glass-blur);
56
+ border: 1px solid var(--glass-border);
57
+ border-radius: 28px;
58
+ box-shadow: var(--card-shadow);
59
+ transition: all 0.35s ease;
60
+
61
+ display: flex;
62
+ justify-content: space-between;
63
+ align-items: center;
64
+
65
+ padding: 32px;
66
+ gap: 24px;
67
+ }
68
+
69
+ .glass-card:hover {
70
+ transform: translateY(-4px);
71
+ box-shadow: var(--card-hover-shadow);
72
+ }
73
+
74
+ .dashboard-header-left {
75
+ display: flex;
76
+ flex-direction: column;
77
+ }
78
+
79
+ .dashboard-chip {
80
+ width: fit-content;
81
+ margin-bottom: 14px;
82
+ padding: 6px 14px;
83
+ border-radius: 999px;
84
+ background: rgba(99, 102, 241, 0.12);
85
+ color: #4f46e5;
86
+ font-size: 11px;
87
+ font-weight: 800;
88
+ letter-spacing: 0.08em;
89
+ }
90
+
91
+ .dashboard-title {
92
+ font-size: 38px;
93
+ font-weight: 900;
94
+ line-height: 1.1;
95
+ margin: 0;
96
+ letter-spacing: -0.06em;
97
+ color: var(--dark-text);
98
+ }
99
+
100
+ .gradient-text {
101
+ background: var(--primary-gradient);
102
+ -webkit-background-clip: text;
103
+ -webkit-text-fill-color: transparent;
104
+ }
105
+
106
+ .dashboard-subtitle {
107
+ margin-top: 10px;
108
+ font-size: 15px;
109
+ line-height: 1.6;
110
+ color: var(--muted-text);
111
+ font-weight: 500;
112
+ max-width: 560px;
113
+ }
114
+
115
+ .dashboard-header-actions {
116
+ display: flex;
117
+ align-items: center;
118
+ gap: 18px;
119
+ }
120
+
121
+ .role-switcher {
122
+ display: flex;
123
+ align-items: center;
124
+ gap: 8px;
125
+
126
+ padding: 6px;
127
+ border-radius: 18px;
128
+
129
+ background: rgba(255, 255, 255, 0.65);
130
+ border: 1px solid rgba(255, 255, 255, 0.5);
131
+
132
+ box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
133
+ }
134
+
135
+ .role-switcher-button {
136
+ border: none;
137
+ cursor: pointer;
138
+
139
+ padding: 10px 16px;
140
+ border-radius: 14px;
141
+
142
+ font-size: 12px;
143
+ font-weight: 800;
144
+ letter-spacing: 0.02em;
145
+
146
+ transition: all 0.25s ease;
147
+ }
148
+
149
+ .role-switcher-button.active {
150
+ background: var(--primary-gradient);
151
+ color: #ffffff;
152
+ transform: translateY(-1px);
153
+
154
+ box-shadow: 0 8px 18px rgba(99, 102, 241, 0.3);
155
+ }
156
+
157
+ .role-switcher-button.inactive {
158
+ background: transparent;
159
+ color: #64748b;
160
+ }
161
+
162
+ .role-switcher-button.inactive:hover {
163
+ background: rgba(99, 102, 241, 0.08);
164
+ color: #4338ca;
165
+ }
166
+
167
+ .notification-button {
168
+ position: relative;
169
+
170
+ border: none;
171
+ cursor: pointer;
172
+
173
+ width: 52px;
174
+ height: 52px;
175
+
176
+ border-radius: 18px;
177
+
178
+ background: rgba(255, 255, 255, 0.7);
179
+
180
+ display: flex;
181
+ align-items: center;
182
+ justify-content: center;
183
+
184
+ transition: all 0.25s ease;
185
+
186
+ box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
187
+ }
188
+
189
+ .notification-button:hover {
190
+ transform: translateY(-2px) scale(1.03);
191
+ }
192
+
193
+ .notification-icon {
194
+ font-size: 20px;
195
+ }
196
+
197
+ .notification-badge {
198
+ position: absolute;
199
+
200
+ top: 10px;
201
+ right: 10px;
202
+
203
+ width: 10px;
204
+ height: 10px;
205
+
206
+ border-radius: 50%;
207
+ background: #ef4444;
208
+ border: 2px solid #ffffff;
209
+ }
210
+
211
+ .dashboard-filter-wrapper {
212
+ position: relative;
213
+ z-index: 2;
214
+ margin-top: 24px;
215
+ }
216
+
217
+ .dashboard-content {
218
+ width: 100%;
219
+ position: relative;
220
+ z-index: 2;
221
+ margin: 32px;
222
+
223
+ animation: fadeInScale 0.6s ease-out forwards;
224
+ }
225
+ }
226
+
227
+ @keyframes fadeInScale {
228
+ from {
229
+ opacity: 0;
230
+ transform: scale(0.98) translateY(8px);
231
+ }
232
+
233
+ to {
234
+ opacity: 1;
235
+ transform: scale(1) translateY(0);
236
+ }
237
+ }
238
+
239
+ .ekyc-dashboard-wrapper {
240
+ width: 100%;
241
+ .ceo-dashboard {
242
+ display: flex;
243
+ height: 100%;
244
+ width: 100%;
245
+ background: #eef2f7;
246
+ }
247
+
248
+ /* SIDEBAR */
249
+ .ekyc-sidebar {
250
+ width: 280px;
251
+ background: linear-gradient(180deg, #081c36, #102d57);
252
+ color: white;
253
+ padding: 24px;
254
+ display: flex;
255
+ flex-direction: column;
256
+ justify-content: space-between;
257
+ position: sticky;
258
+ top: 0;
259
+ }
260
+
261
+ .logo-section {
262
+ display: flex;
263
+ align-items: center;
264
+ gap: 14px;
265
+ margin-bottom: 40px;
266
+
267
+ h2 {
268
+ font-size: 20px;
269
+ font-weight: 700;
270
+ }
271
+
272
+ p {
273
+ font-size: 13px;
274
+ opacity: 0.7;
275
+ }
276
+ }
277
+
278
+ .logo-circle {
279
+ width: 60px;
280
+ height: 60px;
281
+ border-radius: 18px;
282
+ background: rgba(255, 255, 255, 0.1);
283
+ display: flex;
284
+ align-items: center;
285
+ justify-content: center;
286
+ font-size: 28px;
287
+ }
288
+
289
+ .sidebar-menu {
290
+ display: flex;
291
+ flex-direction: column;
292
+ gap: 12px;
293
+
294
+ button {
295
+ border: none;
296
+ background: transparent;
297
+ color: white;
298
+ text-align: left;
299
+ padding: 14px 18px;
300
+ border-radius: 14px;
301
+ cursor: pointer;
302
+ transition: 0.3s ease;
303
+ font-size: 15px;
304
+ font-weight: 500;
305
+
306
+ &:hover {
307
+ background: rgba(255, 255, 255, 0.08);
308
+ }
309
+
310
+ &.active {
311
+ background: linear-gradient(135deg, #00a8ff, #0077ff);
312
+ box-shadow: 0 10px 25px rgba(0, 119, 255, 0.35);
313
+ }
314
+ }
315
+ }
316
+
317
+ .main-content {
318
+ flex: 1;
319
+ padding: 24px;
320
+ overflow-x: hidden;
321
+ }
322
+
323
+ .ekyc-topbar {
324
+ display: flex;
325
+ align-items: center;
326
+ justify-content: space-between;
327
+ margin-bottom: 24px;
328
+ gap: 20px;
329
+ }
330
+
331
+ .search-box {
332
+ background: white;
333
+ padding: 14px 18px;
334
+ border-radius: 18px;
335
+ display: flex;
336
+ align-items: center;
337
+ gap: 12px;
338
+ flex: 1;
339
+ box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
340
+
341
+ input {
342
+ border: none;
343
+ outline: none;
344
+ width: 100%;
345
+ font-size: 15px;
346
+ }
347
+ }
348
+
349
+ .topbar-right {
350
+ display: flex;
351
+ align-items: center;
352
+ gap: 18px;
353
+ }
354
+
355
+ .notification-icon {
356
+ width: 55px;
357
+ height: 55px;
358
+ border-radius: 18px;
359
+ background: white;
360
+ display: flex;
361
+ align-items: center;
362
+ justify-content: center;
363
+ position: relative;
364
+ font-size: 20px;
365
+ box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
366
+
367
+ span {
368
+ position: absolute;
369
+ top: 8px;
370
+ right: 8px;
371
+ width: 18px;
372
+ height: 18px;
373
+ border-radius: 50%;
374
+ background: red;
375
+ color: white;
376
+ font-size: 11px;
377
+ display: flex;
378
+ align-items: center;
379
+ justify-content: center;
380
+ }
381
+ }
382
+
383
+ .profile-card {
384
+ background: white;
385
+ padding: 10px 16px;
386
+ border-radius: 18px;
387
+ display: flex;
388
+ align-items: center;
389
+ gap: 12px;
390
+ box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
391
+
392
+ img {
393
+ width: 48px;
394
+ height: 48px;
395
+ border-radius: 50%;
396
+ object-fit: cover;
397
+ }
398
+
399
+ h4 {
400
+ font-size: 15px;
401
+ }
402
+
403
+ p {
404
+ font-size: 12px;
405
+ color: #777;
406
+ }
407
+ }
408
+
409
+ .hero-banner {
410
+ background: linear-gradient(135deg, #0d47a1, #1976d2);
411
+ border-radius: 28px;
412
+ padding: 35px;
413
+ color: white;
414
+ display: flex;
415
+ justify-content: space-between;
416
+ align-items: center;
417
+ margin-bottom: 28px;
418
+ box-shadow: 0 18px 40px rgba(25, 118, 210, 0.35);
419
+
420
+ h1 {
421
+ font-size: 32px;
422
+ margin-bottom: 12px;
423
+ }
424
+
425
+ p {
426
+ max-width: 700px;
427
+ line-height: 1.6;
428
+ opacity: 0.9;
429
+ }
430
+
431
+ button {
432
+ border: none;
433
+ background: white;
434
+ color: #1976d2;
435
+ padding: 14px 24px;
436
+ border-radius: 14px;
437
+ font-weight: 700;
438
+ cursor: pointer;
439
+ }
440
+ }
441
+
442
+ .kpi-grid1 {
443
+ display: grid;
444
+ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
445
+ gap: 20px;
446
+ margin-bottom: 28px;
447
+ }
448
+
449
+ .kpi-card {
450
+ background: white;
451
+ border-radius: 12px;
452
+ padding: 24px;
453
+ display: flex;
454
+ align-items: center;
455
+ gap: 18px;
456
+
457
+ .icon-box {
458
+ width: 70px;
459
+ height: 70px;
460
+ border-radius: 20px;
461
+ font-size: 28px;
462
+ color: white;
463
+ display: flex !important;
464
+ justify-content: center;
465
+ align-items: center !important;
466
+ }
467
+
468
+ h3 {
469
+ font-size: 30px;
470
+ margin-bottom: 6px;
471
+ }
472
+
473
+ p {
474
+ color: #666;
475
+ font-size: 14px;
476
+ }
477
+
478
+ &.primary .icon-box {
479
+ background: linear-gradient(135deg, #2979ff, #2962ff);
480
+ }
481
+
482
+ &.success .icon-box {
483
+ background: linear-gradient(135deg, #00c853, #00e676);
484
+ }
485
+
486
+ &.warning .icon-box {
487
+ background: linear-gradient(135deg, #ff9100, #ffb300);
488
+ }
489
+
490
+ &.danger .icon-box {
491
+ background: linear-gradient(135deg, #ff1744, #ff5252);
492
+ }
493
+ }
494
+
495
+ .dashboard-section {
496
+ background: white;
497
+ border-radius: 26px;
498
+ padding: 26px;
499
+ margin-bottom: 28px;
500
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
501
+ }
502
+
503
+ .section-header {
504
+ display: flex !important;
505
+ align-items: center !important;
506
+ justify-content: space-between;
507
+ margin-bottom: 24px;
508
+
509
+ h2 {
510
+ display: flex;
511
+ align-items: center;
512
+ gap: 12px;
513
+ font-size: 22px;
514
+ color: #1b2b4b;
515
+ }
516
+
517
+ button {
518
+ border: none;
519
+ background: #1976d2;
520
+ color: white;
521
+ padding: 10px 18px;
522
+ border-radius: 12px;
523
+ cursor: pointer;
524
+ font-weight: 600;
525
+ }
526
+ }
527
+
528
+ .vendor-grid {
529
+ display: grid;
530
+ grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
531
+ gap: 22px;
532
+ }
533
+
534
+ .vendor-card {
535
+ border: 1px solid #edf1f7;
536
+ border-radius: 24px;
537
+ padding: 22px;
538
+ transition: 0.3s ease;
539
+
540
+ &:hover {
541
+ transform: translateY(-5px);
542
+ box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
543
+ }
544
+ }
545
+
546
+ .vendor-top {
547
+ display: flex;
548
+ justify-content: space-between;
549
+ align-items: center;
550
+ margin-bottom: 18px;
551
+
552
+ h3 {
553
+ font-size: 20px;
554
+ margin-bottom: 6px;
555
+ }
556
+
557
+ p {
558
+ color: #777;
559
+ font-size: 13px;
560
+ }
561
+
562
+ span {
563
+ background: #e3f2fd;
564
+ color: #1565c0;
565
+ padding: 10px 14px;
566
+ border-radius: 12px;
567
+ font-weight: 700;
568
+ }
569
+ }
570
+
571
+ .progress-bar {
572
+ width: 100%;
573
+ height: 12px;
574
+ border-radius: 20px;
575
+ background: #edf2f7;
576
+ overflow: hidden;
577
+ margin-bottom: 20px;
578
+ }
579
+
580
+ .progress-fill {
581
+ height: 100%;
582
+ background: linear-gradient(135deg, #00c853, #00e676);
583
+ border-radius: 20px;
584
+ }
585
+
586
+ .vendor-stats {
587
+ display: grid;
588
+ grid-template-columns: repeat(3, 1fr);
589
+ gap: 14px;
590
+ margin-bottom: 18px;
591
+
592
+ div {
593
+ background: #f7f9fc;
594
+ border-radius: 16px;
595
+ padding: 16px;
596
+ text-align: center;
597
+ }
598
+
599
+ h4 {
600
+ font-size: 20px;
601
+ margin-bottom: 6px;
602
+ }
603
+
604
+ p {
605
+ font-size: 12px;
606
+ color: #666;
607
+ }
608
+ }
609
+
610
+ .vendor-footer {
611
+ display: flex;
612
+ justify-content: space-between;
613
+ color: #666;
614
+ font-size: 14px;
615
+ }
616
+
617
+ .table-wrapper {
618
+ overflow-x: auto;
619
+ }
620
+
621
+ table {
622
+ width: 100%;
623
+ border-collapse: collapse;
624
+
625
+ th,
626
+ td {
627
+ padding: 18px;
628
+ text-align: left;
629
+ }
630
+
631
+ th {
632
+ background: #f3f7fb;
633
+ color: #1b2b4b;
634
+ font-size: 14px;
635
+ }
636
+
637
+ td {
638
+ border-bottom: 1px solid #edf2f7;
639
+ font-size: 14px;
640
+ }
641
+
642
+ tr:hover {
643
+ background: #f8fbff;
644
+ }
645
+ }
646
+
647
+ .status-badge {
648
+ padding: 8px 14px;
649
+ border-radius: 999px;
650
+ font-size: 12px;
651
+ font-weight: 700;
652
+
653
+ &.success {
654
+ background: #e8f5e9;
655
+ color: #2e7d32;
656
+ }
657
+ }
658
+
659
+ .bottom-grid {
660
+ display: grid;
661
+ grid-template-columns: 1.1fr 1fr;
662
+ gap: 24px;
663
+ }
664
+
665
+ .alerts-list {
666
+ display: flex;
667
+ flex-direction: column;
668
+ gap: 16px;
669
+ }
670
+
671
+ .alert-card {
672
+ display: flex;
673
+ align-items: center;
674
+ gap: 14px;
675
+ background: #fff4f4;
676
+ border-left: 5px solid #ff1744;
677
+ padding: 18px;
678
+ border-radius: 16px;
679
+ color: #b71c1c;
680
+ font-weight: 500;
681
+ }
682
+
683
+ .team-stats-grid {
684
+ display: grid;
685
+ grid-template-columns: repeat(2, 1fr);
686
+ gap: 18px;
687
+ }
688
+
689
+ .team-box {
690
+ background: linear-gradient(135deg, #f5f9ff, #edf4ff);
691
+ border-radius: 22px;
692
+ padding: 24px;
693
+
694
+ h3 {
695
+ font-size: 34px;
696
+ margin-bottom: 10px;
697
+ color: #0d47a1;
698
+ }
699
+
700
+ p {
701
+ color: #555;
702
+ line-height: 1.5;
703
+ }
704
+ }
705
+
706
+ @media (max-width: 1200px) {
707
+ .bottom-grid {
708
+ grid-template-columns: 1fr;
709
+ }
710
+ }
711
+
712
+ @media (max-width: 992px) {
713
+ .ceo-dashboard {
714
+ flex-direction: column;
715
+ }
716
+
717
+ .sidebar {
718
+ width: 100%;
719
+ height: auto;
720
+ position: relative;
721
+ }
722
+
723
+ .sidebar-menu {
724
+ flex-direction: row;
725
+ flex-wrap: wrap;
726
+ }
727
+
728
+ .hero-banner {
729
+ flex-direction: column;
730
+ align-items: flex-start;
731
+ gap: 20px;
732
+ }
733
+ }
734
+
735
+ @media (max-width: 768px) {
736
+ .ekyc-topbar {
737
+ flex-direction: column;
738
+ align-items: stretch;
739
+ }
740
+
741
+ .topbar-right {
742
+ justify-content: space-between;
743
+ }
744
+
745
+ .vendor-stats {
746
+ grid-template-columns: 1fr;
747
+ }
748
+
749
+ .team-stats-grid {
750
+ grid-template-columns: 1fr;
751
+ }
752
+
753
+ .hero-banner h1 {
754
+ font-size: 24px;
755
+ }
756
+ }
757
+ }
758
+
759
+ .bottom-grid.detail-bottom-grid {
760
+ display: grid;
761
+ grid-template-columns: 1.2fr 0.8fr;
762
+ gap: 24px;
763
+ margin-top: 32px;
764
+ }
765
+
766
+ /* ================= SUMMARY CARDS ================= */
767
+
768
+ .cards-summary {
769
+ background: #ffffff;
770
+ border-radius: 30px;
771
+ padding: 28px;
772
+ border: 1px solid #eef2f7;
773
+ box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
774
+ transition: all 0.25s ease;
775
+ }
776
+
777
+ .cards-summary:hover {
778
+ transform: translateY(-3px);
779
+ box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
780
+ }
781
+
782
+ .cards-summary h2 {
783
+ margin: 0 0 24px;
784
+ font-size: 24px;
785
+ font-weight: 700;
786
+ color: #0f172a;
787
+ letter-spacing: -0.02em;
788
+ }
789
+
790
+ /* ================= EFFICIENCY GRID ================= */
791
+
792
+ .efficiency-grid {
793
+ display: grid;
794
+ grid-template-columns: repeat(2, 1fr);
795
+ gap: 18px;
796
+ }
797
+
798
+ .efficiency-box {
799
+ position: relative;
800
+ overflow: hidden;
801
+
802
+ background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
803
+
804
+ border: 1px solid #edf2f7;
805
+
806
+ border-radius: 24px;
807
+
808
+ padding: 24px;
809
+
810
+ min-height: 140px;
811
+
812
+ display: flex;
813
+ flex-direction: column;
814
+ justify-content: center;
815
+
816
+ transition: all 0.25s ease;
817
+ }
818
+
819
+ .efficiency-box::before {
820
+ content: "";
821
+
822
+ position: absolute;
823
+
824
+ width: 120px;
825
+ height: 120px;
826
+
827
+ border-radius: 50%;
828
+
829
+ top: -60px;
830
+ right: -60px;
831
+
832
+ background: rgba(59, 130, 246, 0.05);
833
+ }
834
+
835
+ .efficiency-box:hover {
836
+ transform: translateY(-4px);
837
+
838
+ border-color: #dbeafe;
839
+
840
+ box-shadow: 0 16px 34px rgba(59, 130, 246, 0.08);
841
+ }
842
+
843
+ .efficiency-box h3 {
844
+ margin: 0;
845
+
846
+ font-size: 42px;
847
+
848
+ font-weight: 800;
849
+
850
+ color: #0f172a;
851
+
852
+ line-height: 1;
853
+ }
854
+
855
+ .efficiency-box p {
856
+ margin-top: 10px;
857
+
858
+ font-size: 14px;
859
+
860
+ font-weight: 500;
861
+
862
+ color: #64748b;
863
+
864
+ letter-spacing: 0.02em;
865
+ }
866
+
867
+ /* ================= SUPERVISOR PULSE ================= */
868
+
869
+ .pulse-list {
870
+ display: flex;
871
+ flex-direction: column;
872
+ gap: 16px;
873
+ }
874
+
875
+ .pulse-row {
876
+ display: flex;
877
+ align-items: center;
878
+ justify-content: space-between;
879
+
880
+ padding: 18px 20px;
881
+
882
+ background: #f8fafc;
883
+
884
+ border: 1px solid #eef2f7;
885
+
886
+ border-radius: 18px;
887
+
888
+ transition: all 0.22s ease;
889
+ }
890
+
891
+ .pulse-row:hover {
892
+ background: #ffffff;
893
+
894
+ border-color: #dbeafe;
895
+
896
+ transform: translateX(3px);
897
+
898
+ box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
899
+ }
900
+
901
+ .pulse-row span:first-child {
902
+ font-size: 15px;
903
+
904
+ font-weight: 600;
905
+
906
+ color: #0f172a;
907
+ }
908
+
909
+ .pulse-row span:last-child {
910
+ background: #ecfdf5;
911
+
912
+ color: #10b981;
913
+
914
+ padding: 8px 14px;
915
+
916
+ border-radius: 999px;
917
+
918
+ font-size: 12px;
919
+
920
+ font-weight: 700;
921
+ }
922
+
923
+ /* ================= RESPONSIVE ================= */
924
+
925
+ @media (max-width: 1200px) {
926
+ .bottom-grid.detail-bottom-grid {
927
+ grid-template-columns: 1fr;
928
+ }
929
+ }
930
+
931
+ @media (max-width: 640px) {
932
+ .efficiency-grid {
933
+ grid-template-columns: 1fr;
934
+ }
935
+
936
+ .cards-summary {
937
+ padding: 22px;
938
+ }
939
+
940
+ .efficiency-box {
941
+ min-height: 120px;
942
+ }
943
+
944
+ .efficiency-box h3 {
945
+ font-size: 34px;
946
+ }
947
+ }
948
+
949
+ .executive-line-chart {
950
+ background: #ffffff;
951
+
952
+ border-radius: 28px;
953
+
954
+ padding: 18px;
955
+
956
+ border: 1px solid #eef2f7;
957
+
958
+ box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
959
+ }
960
+
961
+ .executive-line-chart .recharts-default-tooltip {
962
+ border-radius: 18px !important;
963
+ }
964
+
965
+ .executive-line-chart .recharts-legend-item-text {
966
+ color: #475569 !important;
967
+ }
968
+
969
+ .vendor-card-footer {
970
+ display: flex;
971
+
972
+ flex-wrap: wrap;
973
+
974
+ gap: 10px;
975
+
976
+ margin-top: 22px;
977
+
978
+ padding-top: 20px;
979
+
980
+ border-top: 1px solid #f1f5f9;
981
+ }
982
+
983
+ .vendor-card-footer span {
984
+ display: inline-flex;
985
+
986
+ align-items: center;
987
+
988
+ justify-content: center;
989
+
990
+ padding: 10px 14px;
991
+
992
+ border-radius: 999px;
993
+
994
+ background: #f8fafc;
995
+
996
+ border: 1px solid #eef2f7;
997
+
998
+ color: #475569;
999
+
1000
+ font-size: 12px;
1001
+
1002
+ font-weight: 600;
1003
+
1004
+ line-height: 1;
1005
+
1006
+ transition: all 0.22s ease;
1007
+ }
1008
+
1009
+ .vendor-card-footer span:hover {
1010
+ background: #ffffff;
1011
+
1012
+ border-color: #dbeafe;
1013
+
1014
+ color: #2563eb;
1015
+
1016
+ transform: translateY(-1px);
1017
+
1018
+ box-shadow: 0 6px 18px rgba(59, 130, 246, 0.08);
1019
+ }
1020
+
1021
+ /* ================= ACTION ================= */
1022
+
1023
+ .vendor-card-action {
1024
+ margin-top: 24px;
1025
+
1026
+ display: flex;
1027
+
1028
+ align-items: center;
1029
+
1030
+ justify-content: space-between;
1031
+
1032
+ padding: 18px 20px;
1033
+
1034
+ border-radius: 18px;
1035
+
1036
+ background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
1037
+
1038
+ border: 1px solid #eef2f7;
1039
+
1040
+ color: #0f172a;
1041
+
1042
+ font-size: 14px;
1043
+
1044
+ font-weight: 700;
1045
+
1046
+ transition: all 0.25s ease;
1047
+ }
1048
+
1049
+ .vendor-card-action svg {
1050
+ font-size: 14px;
1051
+
1052
+ transition: transform 0.25s ease;
1053
+ }
1054
+
1055
+ .vendor-card:hover .vendor-card-action {
1056
+ background: #0f172a;
1057
+
1058
+ color: white;
1059
+
1060
+ border-color: #0f172a;
1061
+
1062
+ box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
1063
+ }
1064
+
1065
+ .vendor-card:hover .vendor-card-action svg {
1066
+ transform: translateX(4px);
1067
+ }