@djb25/digit-ui-css 1.0.57 → 1.0.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,480 @@
1
+ .ekyc-dashboard-wrapper {
2
+ min-height: 100vh;
3
+ background: #f5f7fb;
4
+ color: #0f172a;
5
+ }
6
+
7
+ .dashboard-shell {
8
+ max-width: 1600px;
9
+ margin: auto;
10
+ }
11
+
12
+ /* ================= HEADER ================= */
13
+
14
+ .dashboard-header {
15
+ display: flex;
16
+ justify-content: space-between;
17
+ align-items: flex-start;
18
+ gap: 24px;
19
+ margin-bottom: 36px;
20
+ }
21
+
22
+ .dashboard-label {
23
+ font-size: 12px;
24
+ font-weight: 700;
25
+ text-transform: uppercase;
26
+ letter-spacing: 0.18em;
27
+ color: #3b82f6;
28
+ margin-bottom: 10px;
29
+ }
30
+
31
+ .dashboard-header h1 {
32
+ margin: 0;
33
+ font-size: 46px;
34
+ font-weight: 800;
35
+ color: #0f172a;
36
+ line-height: 1;
37
+ }
38
+
39
+ .dashboard-subtitle {
40
+ margin-top: 14px;
41
+ color: #64748b;
42
+ max-width: 720px;
43
+ line-height: 1.7;
44
+ font-size: 15px;
45
+ }
46
+
47
+ /* ================= BUTTONS ================= */
48
+
49
+ .primary-button,
50
+ .secondary-button,
51
+ .back-button {
52
+ border: none;
53
+ border-radius: 16px;
54
+ padding: 13px 20px;
55
+ font-weight: 700;
56
+ display: inline-flex;
57
+ align-items: center;
58
+ gap: 10px;
59
+ cursor: pointer;
60
+ transition: all 0.2s ease;
61
+ }
62
+
63
+ .primary-button {
64
+ background: #0f172a;
65
+ color: white;
66
+ box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
67
+ }
68
+
69
+ .primary-button:hover {
70
+ transform: translateY(-2px);
71
+ }
72
+
73
+ .secondary-button,
74
+ .back-button {
75
+ background: white;
76
+ color: #0f172a;
77
+ border: 1px solid #e2e8f0;
78
+ }
79
+
80
+ .secondary-button:hover,
81
+ .back-button:hover {
82
+ background: #f8fafc;
83
+ }
84
+
85
+ /* ================= KPI GRID ================= */
86
+
87
+ .kpi-grid {
88
+ display: grid;
89
+ grid-template-columns: repeat(3, 1fr);
90
+ gap: 22px;
91
+ margin-bottom: 32px;
92
+ }
93
+
94
+ .kpi-card {
95
+ background: white;
96
+ border-radius: 28px;
97
+ padding: 26px;
98
+ display: flex;
99
+ align-items: center;
100
+ gap: 18px;
101
+ min-height: 140px;
102
+ border: 1px solid #eef2f7;
103
+ transition: all 0.25s ease;
104
+ position: relative;
105
+ overflow: hidden;
106
+ }
107
+
108
+ .kpi-card:hover {
109
+ transform: translateY(-4px);
110
+ box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
111
+ }
112
+
113
+ .kpi-card::before {
114
+ content: "";
115
+ position: absolute;
116
+ width: 140px;
117
+ height: 140px;
118
+ border-radius: 50%;
119
+ top: -70px;
120
+ right: -70px;
121
+ opacity: 0.04;
122
+ }
123
+
124
+ .card-primary::before {
125
+ background: #3b82f6;
126
+ }
127
+
128
+ .card-success::before {
129
+ background: #10b981;
130
+ }
131
+
132
+ .card-warning::before {
133
+ background: #f59e0b;
134
+ }
135
+
136
+ .card-danger::before {
137
+ background: #ef4444;
138
+ }
139
+
140
+ .card-info::before,
141
+ .card-secondary::before,
142
+ .card-muted::before {
143
+ background: #8b5cf6;
144
+ }
145
+
146
+ .kpi-icon {
147
+ width: 64px;
148
+ height: 64px;
149
+ border-radius: 20px;
150
+ display: grid;
151
+ place-items: center;
152
+ font-size: 24px;
153
+ flex-shrink: 0;
154
+ }
155
+
156
+ .card-primary .kpi-icon {
157
+ background: #eff6ff;
158
+ color: #2563eb;
159
+ }
160
+
161
+ .card-success .kpi-icon {
162
+ background: #ecfdf5;
163
+ color: #10b981;
164
+ }
165
+
166
+ .card-warning .kpi-icon {
167
+ background: #fffbeb;
168
+ color: #f59e0b;
169
+ }
170
+
171
+ .card-danger .kpi-icon {
172
+ background: #fef2f2;
173
+ color: #ef4444;
174
+ }
175
+
176
+ .card-info .kpi-icon,
177
+ .card-secondary .kpi-icon,
178
+ .card-muted .kpi-icon {
179
+ background: #f5f3ff;
180
+ color: #8b5cf6;
181
+ }
182
+
183
+ .kpi-title {
184
+ margin: 0 0 8px;
185
+ color: #64748b;
186
+ font-size: 13px;
187
+ font-weight: 600;
188
+ letter-spacing: 0.03em;
189
+ }
190
+
191
+ .kpi-card h2 {
192
+ margin: 0;
193
+ font-size: 34px;
194
+ font-weight: 800;
195
+ color: #0f172a;
196
+ }
197
+
198
+ /* ================= SECTION ================= */
199
+
200
+ .vendor-section,
201
+ .analytics-grid,
202
+ .zone-section,
203
+ .bottom-grid {
204
+ margin-top: 32px;
205
+ }
206
+
207
+ .section-header,
208
+ .section-top {
209
+ display: flex;
210
+ justify-content: space-between;
211
+ align-items: center;
212
+ margin-bottom: 22px;
213
+ gap: 18px;
214
+ }
215
+
216
+ section h2 {
217
+ margin: 0;
218
+ font-size: 26px;
219
+ font-weight: 700;
220
+ color: #0f172a;
221
+ }
222
+
223
+ section p {
224
+ margin-top: 8px;
225
+ color: #64748b;
226
+ }
227
+
228
+ /* ================= SEARCH ================= */
229
+
230
+ .search-box {
231
+ background: white;
232
+ border: 1px solid #e2e8f0;
233
+ border-radius: 16px;
234
+ padding: 13px 16px;
235
+ display: flex;
236
+ align-items: center;
237
+ gap: 10px;
238
+ width: min(420px, 100%);
239
+ }
240
+
241
+ .search-box input {
242
+ border: none;
243
+ outline: none;
244
+ background: transparent;
245
+ width: 100%;
246
+ color: #0f172a;
247
+ font-size: 14px;
248
+ }
249
+
250
+ /* ================= FILTER PILLS ================= */
251
+
252
+ .status-pill-group {
253
+ display: flex;
254
+ gap: 10px;
255
+ flex-wrap: wrap;
256
+ }
257
+
258
+ .status-pill {
259
+ border: 1px solid #e2e8f0;
260
+ background: white;
261
+ color: #64748b;
262
+ border-radius: 999px;
263
+ padding: 10px 18px;
264
+ cursor: pointer;
265
+ transition: all 0.2s ease;
266
+ }
267
+
268
+ .status-pill.active {
269
+ background: #0f172a;
270
+ color: white;
271
+ border-color: #0f172a;
272
+ }
273
+
274
+ /* ================= VENDOR CARDS ================= */
275
+
276
+ .vendor-grid {
277
+ display: grid;
278
+ grid-template-columns: repeat(3, 1fr);
279
+ gap: 22px;
280
+ }
281
+
282
+ .vendor-card {
283
+ background: white;
284
+ border-radius: 28px;
285
+ padding: 24px;
286
+ border: 1px solid #eef2f7;
287
+ transition: all 0.25s ease;
288
+ cursor: pointer;
289
+ }
290
+
291
+ .vendor-card:hover {
292
+ transform: translateY(-5px);
293
+ box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
294
+ }
295
+
296
+ .vendor-chip {
297
+ display: inline-flex;
298
+ padding: 8px 14px;
299
+ border-radius: 999px;
300
+ background: #eff6ff;
301
+ color: #2563eb;
302
+ font-size: 12px;
303
+ font-weight: 700;
304
+ }
305
+
306
+ .vendor-card h3 {
307
+ margin: 14px 0 4px;
308
+ font-size: 38px;
309
+ font-weight: 800;
310
+ color: #0f172a;
311
+ }
312
+
313
+ .vendor-subtitle {
314
+ color: #64748b;
315
+ font-size: 14px;
316
+ }
317
+
318
+ .progress-bar {
319
+ width: 100%;
320
+ height: 10px;
321
+ background: #e2e8f0;
322
+ border-radius: 999px;
323
+ overflow: hidden;
324
+ margin-top: 18px;
325
+ }
326
+
327
+ .progress-fill {
328
+ height: 100%;
329
+ border-radius: inherit;
330
+ background: linear-gradient(90deg, #3b82f6, #10b981);
331
+ }
332
+
333
+ .vendor-stats-grid {
334
+ display: grid;
335
+ grid-template-columns: repeat(2, 1fr);
336
+ gap: 14px;
337
+ margin-top: 20px;
338
+ }
339
+
340
+ .vendor-stats-grid div {
341
+ background: #f8fafc;
342
+ border-radius: 18px;
343
+ padding: 16px;
344
+ }
345
+
346
+ .vendor-stats-grid strong {
347
+ display: block;
348
+ font-size: 22px;
349
+ color: #0f172a;
350
+ }
351
+
352
+ .vendor-stats-grid span {
353
+ color: #64748b;
354
+ font-size: 13px;
355
+ }
356
+
357
+ /* ================= ANALYTICS ================= */
358
+
359
+ .analytics-grid {
360
+ display: grid;
361
+ grid-template-columns: 1.4fr 1fr 1fr;
362
+ gap: 22px;
363
+ }
364
+
365
+ .analytics-panel {
366
+ background: white;
367
+ border-radius: 28px;
368
+ padding: 24px;
369
+ border: 1px solid #eef2f7;
370
+ }
371
+
372
+ .chart-card {
373
+ background: #fcfdff;
374
+ border-radius: 22px;
375
+ padding: 12px;
376
+ }
377
+
378
+ /* ================= TABLE ================= */
379
+
380
+ .table-wrapper {
381
+ background: white;
382
+ border-radius: 28px;
383
+ border: 1px solid #eef2f7;
384
+ overflow: hidden;
385
+ }
386
+
387
+ .table-wrapper table {
388
+ width: 100%;
389
+ border-collapse: collapse;
390
+ }
391
+
392
+ .table-wrapper thead {
393
+ background: #f8fafc;
394
+ }
395
+
396
+ .table-wrapper th {
397
+ padding: 18px;
398
+ text-align: left;
399
+ font-size: 12px;
400
+ color: #64748b;
401
+ text-transform: uppercase;
402
+ letter-spacing: 0.08em;
403
+ }
404
+
405
+ .table-wrapper td {
406
+ padding: 18px;
407
+ border-top: 1px solid #f1f5f9;
408
+ color: #0f172a;
409
+ }
410
+
411
+ .table-wrapper tbody tr:hover {
412
+ background: #fafcff;
413
+ }
414
+
415
+ /* ================= BADGES ================= */
416
+
417
+ .badge,
418
+ .status-badge {
419
+ padding: 8px 14px;
420
+ border-radius: 999px;
421
+ font-size: 12px;
422
+ font-weight: 700;
423
+ }
424
+
425
+ .badge.success,
426
+ .status-badge.success {
427
+ background: #ecfdf5;
428
+ color: #10b981;
429
+ }
430
+
431
+ .badge.warning,
432
+ .status-badge.warning {
433
+ background: #fffbeb;
434
+ color: #f59e0b;
435
+ }
436
+
437
+ .badge.info {
438
+ background: #eff6ff;
439
+ color: #2563eb;
440
+ }
441
+
442
+ .status-badge.danger {
443
+ background: #fef2f2;
444
+ color: #ef4444;
445
+ }
446
+
447
+ /* ================= RESPONSIVE ================= */
448
+
449
+ @media (max-width: 1400px) {
450
+ .kpi-grid,
451
+ .vendor-grid,
452
+ .analytics-grid {
453
+ grid-template-columns: repeat(2, 1fr);
454
+ }
455
+ }
456
+
457
+ @media (max-width: 992px) {
458
+ .kpi-grid,
459
+ .vendor-grid,
460
+ .analytics-grid,
461
+ .bottom-grid {
462
+ grid-template-columns: 1fr;
463
+ }
464
+
465
+ .dashboard-header,
466
+ .section-top {
467
+ flex-direction: column;
468
+ align-items: flex-start;
469
+ }
470
+
471
+ .dashboard-header h1 {
472
+ font-size: 38px;
473
+ }
474
+ }
475
+
476
+ @media (max-width: 640px) {
477
+ .dashboard-header h1 {
478
+ font-size: 30px;
479
+ }
480
+ }