vibrium-speak-sdk 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.
package/dist/index.css ADDED
@@ -0,0 +1,1092 @@
1
+ /* src/index.css */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root,
6
+ :host {
7
+ --font-sans:
8
+ ui-sans-serif,
9
+ system-ui,
10
+ sans-serif,
11
+ "Apple Color Emoji",
12
+ "Segoe UI Emoji",
13
+ "Segoe UI Symbol",
14
+ "Noto Color Emoji";
15
+ --font-mono:
16
+ ui-monospace,
17
+ SFMono-Regular,
18
+ Menlo,
19
+ Monaco,
20
+ Consolas,
21
+ "Liberation Mono",
22
+ "Courier New",
23
+ monospace;
24
+ --color-red-500: oklch(63.7% 0.237 25.331);
25
+ --color-amber-50: oklch(98.7% 0.022 95.277);
26
+ --color-amber-100: oklch(96.2% 0.059 95.617);
27
+ --color-amber-800: oklch(47.3% 0.137 46.201);
28
+ --color-yellow-400: oklch(85.2% 0.199 91.936);
29
+ --color-yellow-500: oklch(79.5% 0.184 86.047);
30
+ --color-green-500: oklch(72.3% 0.219 149.579);
31
+ --color-blue-50: oklch(97% 0.014 254.604);
32
+ --color-blue-100: oklch(93.2% 0.032 255.585);
33
+ --color-blue-500: oklch(62.3% 0.214 259.815);
34
+ --color-blue-600: oklch(54.6% 0.245 262.881);
35
+ --color-blue-700: oklch(48.8% 0.243 264.376);
36
+ --color-blue-800: oklch(42.4% 0.199 265.638);
37
+ --color-blue-900: oklch(37.9% 0.146 265.522);
38
+ --color-slate-100: oklch(96.8% 0.007 247.896);
39
+ --color-slate-700: oklch(37.2% 0.044 257.287);
40
+ --color-gray-100: oklch(96.7% 0.003 264.542);
41
+ --color-gray-200: oklch(92.8% 0.006 264.531);
42
+ --color-gray-400: oklch(70.7% 0.022 261.325);
43
+ --color-gray-500: oklch(55.1% 0.027 264.364);
44
+ --color-gray-800: oklch(27.8% 0.033 256.848);
45
+ --color-gray-900: oklch(21% 0.034 264.665);
46
+ --color-white: #fff;
47
+ --spacing: 0.25rem;
48
+ --text-xs: 0.75rem;
49
+ --text-xs--line-height: calc(1 / 0.75);
50
+ --text-sm: 0.875rem;
51
+ --text-sm--line-height: calc(1.25 / 0.875);
52
+ --text-base: 1rem;
53
+ --text-base--line-height: calc(1.5 / 1);
54
+ --text-lg: 1.125rem;
55
+ --text-lg--line-height: calc(1.75 / 1.125);
56
+ --text-xl: 1.25rem;
57
+ --text-xl--line-height: calc(1.75 / 1.25);
58
+ --font-weight-normal: 400;
59
+ --font-weight-semibold: 600;
60
+ --leading-tight: 1.25;
61
+ --leading-snug: 1.375;
62
+ --leading-relaxed: 1.625;
63
+ --radius-sm: 0.25rem;
64
+ --radius-lg: 0.5rem;
65
+ --radius-xl: 0.75rem;
66
+ --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
67
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
68
+ --default-transition-duration: 150ms;
69
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
70
+ --default-font-family: var(--font-sans);
71
+ --default-mono-font-family: var(--font-mono);
72
+ }
73
+ }
74
+ @layer base {
75
+ *,
76
+ ::after,
77
+ ::before,
78
+ ::backdrop,
79
+ ::file-selector-button {
80
+ box-sizing: border-box;
81
+ margin: 0;
82
+ padding: 0;
83
+ border: 0 solid;
84
+ }
85
+ html,
86
+ :host {
87
+ line-height: 1.5;
88
+ -webkit-text-size-adjust: 100%;
89
+ -moz-tab-size: 4;
90
+ -o-tab-size: 4;
91
+ tab-size: 4;
92
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
93
+ font-feature-settings: var(--default-font-feature-settings, normal);
94
+ font-variation-settings: var(--default-font-variation-settings, normal);
95
+ -webkit-tap-highlight-color: transparent;
96
+ }
97
+ hr {
98
+ height: 0;
99
+ color: inherit;
100
+ border-top-width: 1px;
101
+ }
102
+ abbr:where([title]) {
103
+ -webkit-text-decoration: underline dotted;
104
+ text-decoration: underline dotted;
105
+ }
106
+ h1,
107
+ h2,
108
+ h3,
109
+ h4,
110
+ h5,
111
+ h6 {
112
+ font-size: inherit;
113
+ font-weight: inherit;
114
+ }
115
+ a {
116
+ color: inherit;
117
+ -webkit-text-decoration: inherit;
118
+ text-decoration: inherit;
119
+ }
120
+ b,
121
+ strong {
122
+ font-weight: bolder;
123
+ }
124
+ code,
125
+ kbd,
126
+ samp,
127
+ pre {
128
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
129
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
130
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
131
+ font-size: 1em;
132
+ }
133
+ small {
134
+ font-size: 80%;
135
+ }
136
+ sub,
137
+ sup {
138
+ font-size: 75%;
139
+ line-height: 0;
140
+ position: relative;
141
+ vertical-align: baseline;
142
+ }
143
+ sub {
144
+ bottom: -0.25em;
145
+ }
146
+ sup {
147
+ top: -0.5em;
148
+ }
149
+ table {
150
+ text-indent: 0;
151
+ border-color: inherit;
152
+ border-collapse: collapse;
153
+ }
154
+ :-moz-focusring {
155
+ outline: auto;
156
+ }
157
+ progress {
158
+ vertical-align: baseline;
159
+ }
160
+ summary {
161
+ display: list-item;
162
+ }
163
+ ol,
164
+ ul,
165
+ menu {
166
+ list-style: none;
167
+ }
168
+ img,
169
+ svg,
170
+ video,
171
+ canvas,
172
+ audio,
173
+ iframe,
174
+ embed,
175
+ object {
176
+ display: block;
177
+ vertical-align: middle;
178
+ }
179
+ img,
180
+ video {
181
+ max-width: 100%;
182
+ height: auto;
183
+ }
184
+ button,
185
+ input,
186
+ select,
187
+ optgroup,
188
+ textarea,
189
+ ::file-selector-button {
190
+ font: inherit;
191
+ font-feature-settings: inherit;
192
+ font-variation-settings: inherit;
193
+ letter-spacing: inherit;
194
+ color: inherit;
195
+ border-radius: 0;
196
+ background-color: transparent;
197
+ opacity: 1;
198
+ }
199
+ :where(select:is([multiple], [size])) optgroup {
200
+ font-weight: bolder;
201
+ }
202
+ :where(select:is([multiple], [size])) optgroup option {
203
+ padding-inline-start: 20px;
204
+ }
205
+ ::file-selector-button {
206
+ margin-inline-end: 4px;
207
+ }
208
+ ::-moz-placeholder {
209
+ opacity: 1;
210
+ }
211
+ ::placeholder {
212
+ opacity: 1;
213
+ }
214
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
215
+ ::-moz-placeholder {
216
+ color: currentcolor;
217
+ @supports (color: color-mix(in lab, red, red)) {
218
+ color: color-mix(in oklab, currentcolor 50%, transparent);
219
+ }
220
+ }
221
+ ::placeholder {
222
+ color: currentcolor;
223
+ @supports (color: color-mix(in lab, red, red)) {
224
+ color: color-mix(in oklab, currentcolor 50%, transparent);
225
+ }
226
+ }
227
+ }
228
+ textarea {
229
+ resize: vertical;
230
+ }
231
+ ::-webkit-search-decoration {
232
+ -webkit-appearance: none;
233
+ }
234
+ ::-webkit-date-and-time-value {
235
+ min-height: 1lh;
236
+ text-align: inherit;
237
+ }
238
+ ::-webkit-datetime-edit {
239
+ display: inline-flex;
240
+ }
241
+ ::-webkit-datetime-edit-fields-wrapper {
242
+ padding: 0;
243
+ }
244
+ ::-webkit-datetime-edit,
245
+ ::-webkit-datetime-edit-year-field,
246
+ ::-webkit-datetime-edit-month-field,
247
+ ::-webkit-datetime-edit-day-field,
248
+ ::-webkit-datetime-edit-hour-field,
249
+ ::-webkit-datetime-edit-minute-field,
250
+ ::-webkit-datetime-edit-second-field,
251
+ ::-webkit-datetime-edit-millisecond-field,
252
+ ::-webkit-datetime-edit-meridiem-field {
253
+ padding-block: 0;
254
+ }
255
+ ::-webkit-calendar-picker-indicator {
256
+ line-height: 1;
257
+ }
258
+ :-moz-ui-invalid {
259
+ box-shadow: none;
260
+ }
261
+ button,
262
+ input:where([type=button], [type=reset], [type=submit]),
263
+ ::file-selector-button {
264
+ -webkit-appearance: button;
265
+ -moz-appearance: button;
266
+ appearance: button;
267
+ }
268
+ ::-webkit-inner-spin-button,
269
+ ::-webkit-outer-spin-button {
270
+ height: auto;
271
+ }
272
+ [hidden]:where(:not([hidden=until-found])) {
273
+ display: none !important;
274
+ }
275
+ }
276
+ @layer utilities {
277
+ .pointer-events-none {
278
+ pointer-events: none;
279
+ }
280
+ .absolute {
281
+ position: absolute;
282
+ }
283
+ .fixed {
284
+ position: fixed;
285
+ }
286
+ .relative {
287
+ position: relative;
288
+ }
289
+ .-inset-1 {
290
+ inset: calc(var(--spacing) * -1);
291
+ }
292
+ .-inset-2 {
293
+ inset: calc(var(--spacing) * -2);
294
+ }
295
+ .inset-0 {
296
+ inset: calc(var(--spacing) * 0);
297
+ }
298
+ .right-6 {
299
+ right: calc(var(--spacing) * 6);
300
+ }
301
+ .bottom-6 {
302
+ bottom: calc(var(--spacing) * 6);
303
+ }
304
+ .bottom-24 {
305
+ bottom: calc(var(--spacing) * 24);
306
+ }
307
+ .z-\[1000\] {
308
+ z-index: 1000;
309
+ }
310
+ .z-\[1100\] {
311
+ z-index: 1100;
312
+ }
313
+ .container {
314
+ width: 100%;
315
+ @media (width >= 40rem) {
316
+ max-width: 40rem;
317
+ }
318
+ @media (width >= 48rem) {
319
+ max-width: 48rem;
320
+ }
321
+ @media (width >= 64rem) {
322
+ max-width: 64rem;
323
+ }
324
+ @media (width >= 80rem) {
325
+ max-width: 80rem;
326
+ }
327
+ @media (width >= 96rem) {
328
+ max-width: 96rem;
329
+ }
330
+ }
331
+ .my-2 {
332
+ margin-block: calc(var(--spacing) * 2);
333
+ }
334
+ .mt-0\.5 {
335
+ margin-top: calc(var(--spacing) * 0.5);
336
+ }
337
+ .mt-1 {
338
+ margin-top: calc(var(--spacing) * 1);
339
+ }
340
+ .mb-0\.5 {
341
+ margin-bottom: calc(var(--spacing) * 0.5);
342
+ }
343
+ .mb-2 {
344
+ margin-bottom: calc(var(--spacing) * 2);
345
+ }
346
+ .ml-2 {
347
+ margin-left: calc(var(--spacing) * 2);
348
+ }
349
+ .flex {
350
+ display: flex;
351
+ }
352
+ .grid {
353
+ display: grid;
354
+ }
355
+ .hidden {
356
+ display: none;
357
+ }
358
+ .inline-flex {
359
+ display: inline-flex;
360
+ }
361
+ .h-2\.5 {
362
+ height: calc(var(--spacing) * 2.5);
363
+ }
364
+ .h-4 {
365
+ height: calc(var(--spacing) * 4);
366
+ }
367
+ .h-4\.5 {
368
+ height: calc(var(--spacing) * 4.5);
369
+ }
370
+ .h-5 {
371
+ height: calc(var(--spacing) * 5);
372
+ }
373
+ .h-8 {
374
+ height: calc(var(--spacing) * 8);
375
+ }
376
+ .h-9 {
377
+ height: calc(var(--spacing) * 9);
378
+ }
379
+ .h-10 {
380
+ height: calc(var(--spacing) * 10);
381
+ }
382
+ .h-14 {
383
+ height: calc(var(--spacing) * 14);
384
+ }
385
+ .max-h-\[300px\] {
386
+ max-height: 300px;
387
+ }
388
+ .min-h-\[240px\] {
389
+ min-height: 240px;
390
+ }
391
+ .w-2\.5 {
392
+ width: calc(var(--spacing) * 2.5);
393
+ }
394
+ .w-4 {
395
+ width: calc(var(--spacing) * 4);
396
+ }
397
+ .w-4\.5 {
398
+ width: calc(var(--spacing) * 4.5);
399
+ }
400
+ .w-5 {
401
+ width: calc(var(--spacing) * 5);
402
+ }
403
+ .w-8 {
404
+ width: calc(var(--spacing) * 8);
405
+ }
406
+ .w-9 {
407
+ width: calc(var(--spacing) * 9);
408
+ }
409
+ .w-10 {
410
+ width: calc(var(--spacing) * 10);
411
+ }
412
+ .w-14 {
413
+ width: calc(var(--spacing) * 14);
414
+ }
415
+ .w-80 {
416
+ width: calc(var(--spacing) * 80);
417
+ }
418
+ .max-w-\[85\%\] {
419
+ max-width: 85%;
420
+ }
421
+ .min-w-0 {
422
+ min-width: calc(var(--spacing) * 0);
423
+ }
424
+ .flex-1 {
425
+ flex: 1;
426
+ }
427
+ .shrink-0 {
428
+ flex-shrink: 0;
429
+ }
430
+ .scale-110 {
431
+ --tw-scale-x: 110%;
432
+ --tw-scale-y: 110%;
433
+ --tw-scale-z: 110%;
434
+ scale: var(--tw-scale-x) var(--tw-scale-y);
435
+ }
436
+ .rotate-90 {
437
+ rotate: 90deg;
438
+ }
439
+ .animate-ping {
440
+ animation: var(--animate-ping);
441
+ }
442
+ .animate-pulse {
443
+ animation: var(--animate-pulse);
444
+ }
445
+ .cursor-pointer {
446
+ cursor: pointer;
447
+ }
448
+ .list-disc {
449
+ list-style-type: disc;
450
+ }
451
+ .grid-cols-2 {
452
+ grid-template-columns: repeat(2, minmax(0, 1fr));
453
+ }
454
+ .flex-col {
455
+ flex-direction: column;
456
+ }
457
+ .items-center {
458
+ align-items: center;
459
+ }
460
+ .justify-between {
461
+ justify-content: space-between;
462
+ }
463
+ .justify-center {
464
+ justify-content: center;
465
+ }
466
+ .justify-start {
467
+ justify-content: flex-start;
468
+ }
469
+ .gap-1\.5 {
470
+ gap: calc(var(--spacing) * 1.5);
471
+ }
472
+ .gap-2\.5 {
473
+ gap: calc(var(--spacing) * 2.5);
474
+ }
475
+ .gap-3 {
476
+ gap: calc(var(--spacing) * 3);
477
+ }
478
+ .space-y-1 {
479
+ :where(& > :not(:last-child)) {
480
+ --tw-space-y-reverse: 0;
481
+ margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
482
+ margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
483
+ }
484
+ }
485
+ .self-center {
486
+ align-self: center;
487
+ }
488
+ .self-end {
489
+ align-self: flex-end;
490
+ }
491
+ .self-start {
492
+ align-self: flex-start;
493
+ }
494
+ .truncate {
495
+ overflow: hidden;
496
+ text-overflow: ellipsis;
497
+ white-space: nowrap;
498
+ }
499
+ .overflow-hidden {
500
+ overflow: hidden;
501
+ }
502
+ .overflow-y-auto {
503
+ overflow-y: auto;
504
+ }
505
+ .scroll-smooth {
506
+ scroll-behavior: smooth;
507
+ }
508
+ .rounded-\[16px\] {
509
+ border-radius: 16px;
510
+ }
511
+ .rounded-\[20px\] {
512
+ border-radius: 20px;
513
+ }
514
+ .rounded-full {
515
+ border-radius: calc(infinity * 1px);
516
+ }
517
+ .rounded-lg {
518
+ border-radius: var(--radius-lg);
519
+ }
520
+ .rounded-xl {
521
+ border-radius: var(--radius-xl);
522
+ }
523
+ .rounded-tl-sm {
524
+ border-top-left-radius: var(--radius-sm);
525
+ }
526
+ .rounded-tr-sm {
527
+ border-top-right-radius: var(--radius-sm);
528
+ }
529
+ .border {
530
+ border-style: var(--tw-border-style);
531
+ border-width: 1px;
532
+ }
533
+ .border-t {
534
+ border-top-style: var(--tw-border-style);
535
+ border-top-width: 1px;
536
+ }
537
+ .border-b {
538
+ border-bottom-style: var(--tw-border-style);
539
+ border-bottom-width: 1px;
540
+ }
541
+ .border-amber-100 {
542
+ border-color: var(--color-amber-100);
543
+ }
544
+ .border-blue-100\/50 {
545
+ border-color: color-mix(in srgb, oklch(93.2% 0.032 255.585) 50%, transparent);
546
+ @supports (color: color-mix(in lab, red, red)) {
547
+ border-color: color-mix(in oklab, var(--color-blue-100) 50%, transparent);
548
+ }
549
+ }
550
+ .border-blue-500\/10 {
551
+ border-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 10%, transparent);
552
+ @supports (color: color-mix(in lab, red, red)) {
553
+ border-color: color-mix(in oklab, var(--color-blue-500) 10%, transparent);
554
+ }
555
+ }
556
+ .border-gray-100 {
557
+ border-color: var(--color-gray-100);
558
+ }
559
+ .border-gray-100\/80 {
560
+ border-color: color-mix(in srgb, oklch(96.7% 0.003 264.542) 80%, transparent);
561
+ @supports (color: color-mix(in lab, red, red)) {
562
+ border-color: color-mix(in oklab, var(--color-gray-100) 80%, transparent);
563
+ }
564
+ }
565
+ .border-gray-200\/80 {
566
+ border-color: color-mix(in srgb, oklch(92.8% 0.006 264.531) 80%, transparent);
567
+ @supports (color: color-mix(in lab, red, red)) {
568
+ border-color: color-mix(in oklab, var(--color-gray-200) 80%, transparent);
569
+ }
570
+ }
571
+ .border-slate-100 {
572
+ border-color: var(--color-slate-100);
573
+ }
574
+ .border-transparent {
575
+ border-color: transparent;
576
+ }
577
+ .bg-\[\#1a73e8\] {
578
+ background-color: #1a73e8;
579
+ }
580
+ .bg-\[\#e8eaed\] {
581
+ background-color: #e8eaed;
582
+ }
583
+ .bg-\[\#e8f0fe\] {
584
+ background-color: #e8f0fe;
585
+ }
586
+ .bg-\[\#f1f3f4\] {
587
+ background-color: #f1f3f4;
588
+ }
589
+ .bg-\[\#f8f9fa\] {
590
+ background-color: #f8f9fa;
591
+ }
592
+ .bg-\[\#fbbc05\] {
593
+ background-color: #fbbc05;
594
+ }
595
+ .bg-\[\#fbbc05\]\/50 {
596
+ background-color: color-mix(in oklab, #fbbc05 50%, transparent);
597
+ }
598
+ .bg-amber-50 {
599
+ background-color: var(--color-amber-50);
600
+ }
601
+ .bg-blue-50\/50 {
602
+ background-color: color-mix(in srgb, oklch(97% 0.014 254.604) 50%, transparent);
603
+ @supports (color: color-mix(in lab, red, red)) {
604
+ background-color: color-mix(in oklab, var(--color-blue-50) 50%, transparent);
605
+ }
606
+ }
607
+ .bg-blue-500 {
608
+ background-color: var(--color-blue-500);
609
+ }
610
+ .bg-blue-500\/25 {
611
+ background-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 25%, transparent);
612
+ @supports (color: color-mix(in lab, red, red)) {
613
+ background-color: color-mix(in oklab, var(--color-blue-500) 25%, transparent);
614
+ }
615
+ }
616
+ .bg-blue-600 {
617
+ background-color: var(--color-blue-600);
618
+ }
619
+ .bg-gray-400 {
620
+ background-color: var(--color-gray-400);
621
+ }
622
+ .bg-green-500 {
623
+ background-color: var(--color-green-500);
624
+ }
625
+ .bg-green-500\/25 {
626
+ background-color: color-mix(in srgb, oklch(72.3% 0.219 149.579) 25%, transparent);
627
+ @supports (color: color-mix(in lab, red, red)) {
628
+ background-color: color-mix(in oklab, var(--color-green-500) 25%, transparent);
629
+ }
630
+ }
631
+ .bg-red-500 {
632
+ background-color: var(--color-red-500);
633
+ }
634
+ .bg-white {
635
+ background-color: var(--color-white);
636
+ }
637
+ .bg-white\/10 {
638
+ background-color: color-mix(in srgb, #fff 10%, transparent);
639
+ @supports (color: color-mix(in lab, red, red)) {
640
+ background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
641
+ }
642
+ }
643
+ .bg-white\/15 {
644
+ background-color: color-mix(in srgb, #fff 15%, transparent);
645
+ @supports (color: color-mix(in lab, red, red)) {
646
+ background-color: color-mix(in oklab, var(--color-white) 15%, transparent);
647
+ }
648
+ }
649
+ .bg-yellow-400 {
650
+ background-color: var(--color-yellow-400);
651
+ }
652
+ .bg-yellow-500\/20 {
653
+ background-color: color-mix(in srgb, oklch(79.5% 0.184 86.047) 20%, transparent);
654
+ @supports (color: color-mix(in lab, red, red)) {
655
+ background-color: color-mix(in oklab, var(--color-yellow-500) 20%, transparent);
656
+ }
657
+ }
658
+ .bg-gradient-to-br {
659
+ --tw-gradient-position: to bottom right in oklab;
660
+ background-image: linear-gradient(var(--tw-gradient-stops));
661
+ }
662
+ .from-blue-500 {
663
+ --tw-gradient-from: var(--color-blue-500);
664
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
665
+ }
666
+ .to-blue-700 {
667
+ --tw-gradient-to: var(--color-blue-700);
668
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
669
+ }
670
+ .p-2\.5 {
671
+ padding: calc(var(--spacing) * 2.5);
672
+ }
673
+ .p-3 {
674
+ padding: calc(var(--spacing) * 3);
675
+ }
676
+ .p-3\.5 {
677
+ padding: calc(var(--spacing) * 3.5);
678
+ }
679
+ .p-4 {
680
+ padding: calc(var(--spacing) * 4);
681
+ }
682
+ .px-3 {
683
+ padding-inline: calc(var(--spacing) * 3);
684
+ }
685
+ .px-3\.5 {
686
+ padding-inline: calc(var(--spacing) * 3.5);
687
+ }
688
+ .py-1 {
689
+ padding-block: calc(var(--spacing) * 1);
690
+ }
691
+ .py-2\.5 {
692
+ padding-block: calc(var(--spacing) * 2.5);
693
+ }
694
+ .pl-5 {
695
+ padding-left: calc(var(--spacing) * 5);
696
+ }
697
+ .text-center {
698
+ text-align: center;
699
+ }
700
+ .font-sans {
701
+ font-family: var(--font-sans);
702
+ }
703
+ .text-base {
704
+ font-size: var(--text-base);
705
+ line-height: var(--tw-leading, var(--text-base--line-height));
706
+ }
707
+ .text-lg {
708
+ font-size: var(--text-lg);
709
+ line-height: var(--tw-leading, var(--text-lg--line-height));
710
+ }
711
+ .text-sm {
712
+ font-size: var(--text-sm);
713
+ line-height: var(--tw-leading, var(--text-sm--line-height));
714
+ }
715
+ .text-xl {
716
+ font-size: var(--text-xl);
717
+ line-height: var(--tw-leading, var(--text-xl--line-height));
718
+ }
719
+ .text-xs {
720
+ font-size: var(--text-xs);
721
+ line-height: var(--tw-leading, var(--text-xs--line-height));
722
+ }
723
+ .text-\[10px\] {
724
+ font-size: 10px;
725
+ }
726
+ .text-\[11px\] {
727
+ font-size: 11px;
728
+ }
729
+ .leading-relaxed {
730
+ --tw-leading: var(--leading-relaxed);
731
+ line-height: var(--leading-relaxed);
732
+ }
733
+ .leading-snug {
734
+ --tw-leading: var(--leading-snug);
735
+ line-height: var(--leading-snug);
736
+ }
737
+ .leading-tight {
738
+ --tw-leading: var(--leading-tight);
739
+ line-height: var(--leading-tight);
740
+ }
741
+ .font-normal {
742
+ --tw-font-weight: var(--font-weight-normal);
743
+ font-weight: var(--font-weight-normal);
744
+ }
745
+ .font-semibold {
746
+ --tw-font-weight: var(--font-weight-semibold);
747
+ font-weight: var(--font-weight-semibold);
748
+ }
749
+ .text-amber-800 {
750
+ color: var(--color-amber-800);
751
+ }
752
+ .text-blue-800 {
753
+ color: var(--color-blue-800);
754
+ }
755
+ .text-blue-900 {
756
+ color: var(--color-blue-900);
757
+ }
758
+ .text-gray-500 {
759
+ color: var(--color-gray-500);
760
+ }
761
+ .text-gray-800 {
762
+ color: var(--color-gray-800);
763
+ }
764
+ .text-gray-900 {
765
+ color: var(--color-gray-900);
766
+ }
767
+ .text-slate-700 {
768
+ color: var(--color-slate-700);
769
+ }
770
+ .text-white {
771
+ color: var(--color-white);
772
+ }
773
+ .text-white\/80 {
774
+ color: color-mix(in srgb, #fff 80%, transparent);
775
+ @supports (color: color-mix(in lab, red, red)) {
776
+ color: color-mix(in oklab, var(--color-white) 80%, transparent);
777
+ }
778
+ }
779
+ .underline {
780
+ text-decoration-line: underline;
781
+ }
782
+ .placeholder-gray-500 {
783
+ &::-moz-placeholder {
784
+ color: var(--color-gray-500);
785
+ }
786
+ &::placeholder {
787
+ color: var(--color-gray-500);
788
+ }
789
+ }
790
+ .shadow-lg {
791
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
792
+ box-shadow:
793
+ var(--tw-inset-shadow),
794
+ var(--tw-inset-ring-shadow),
795
+ var(--tw-ring-offset-shadow),
796
+ var(--tw-ring-shadow),
797
+ var(--tw-shadow);
798
+ }
799
+ .shadow-md {
800
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
801
+ box-shadow:
802
+ var(--tw-inset-shadow),
803
+ var(--tw-inset-ring-shadow),
804
+ var(--tw-ring-offset-shadow),
805
+ var(--tw-ring-shadow),
806
+ var(--tw-shadow);
807
+ }
808
+ .shadow-sm {
809
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
810
+ box-shadow:
811
+ var(--tw-inset-shadow),
812
+ var(--tw-inset-ring-shadow),
813
+ var(--tw-ring-offset-shadow),
814
+ var(--tw-ring-shadow),
815
+ var(--tw-shadow);
816
+ }
817
+ .shadow-xl {
818
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
819
+ box-shadow:
820
+ var(--tw-inset-shadow),
821
+ var(--tw-inset-ring-shadow),
822
+ var(--tw-ring-offset-shadow),
823
+ var(--tw-ring-shadow),
824
+ var(--tw-shadow);
825
+ }
826
+ .ring {
827
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
828
+ box-shadow:
829
+ var(--tw-inset-shadow),
830
+ var(--tw-inset-ring-shadow),
831
+ var(--tw-ring-offset-shadow),
832
+ var(--tw-ring-shadow),
833
+ var(--tw-shadow);
834
+ }
835
+ .ring-4 {
836
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
837
+ box-shadow:
838
+ var(--tw-inset-shadow),
839
+ var(--tw-inset-ring-shadow),
840
+ var(--tw-ring-offset-shadow),
841
+ var(--tw-ring-shadow),
842
+ var(--tw-shadow);
843
+ }
844
+ .shadow-blue-500\/10 {
845
+ --tw-shadow-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 10%, transparent);
846
+ @supports (color: color-mix(in lab, red, red)) {
847
+ --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-blue-500) 10%, transparent) var(--tw-shadow-alpha), transparent);
848
+ }
849
+ }
850
+ .shadow-blue-500\/20 {
851
+ --tw-shadow-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 20%, transparent);
852
+ @supports (color: color-mix(in lab, red, red)) {
853
+ --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-blue-500) 20%, transparent) var(--tw-shadow-alpha), transparent);
854
+ }
855
+ }
856
+ .shadow-slate-100 {
857
+ --tw-shadow-color: oklch(96.8% 0.007 247.896);
858
+ @supports (color: color-mix(in lab, red, red)) {
859
+ --tw-shadow-color: color-mix(in oklab, var(--color-slate-100) var(--tw-shadow-alpha), transparent);
860
+ }
861
+ }
862
+ .ring-blue-500\/35 {
863
+ --tw-ring-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 35%, transparent);
864
+ @supports (color: color-mix(in lab, red, red)) {
865
+ --tw-ring-color: color-mix(in oklab, var(--color-blue-500) 35%, transparent);
866
+ }
867
+ }
868
+ .transition-all {
869
+ transition-property: all;
870
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
871
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
872
+ }
873
+ .transition-colors {
874
+ transition-property:
875
+ color,
876
+ background-color,
877
+ border-color,
878
+ outline-color,
879
+ text-decoration-color,
880
+ fill,
881
+ stroke,
882
+ --tw-gradient-from,
883
+ --tw-gradient-via,
884
+ --tw-gradient-to;
885
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
886
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
887
+ }
888
+ .transition-transform {
889
+ transition-property:
890
+ transform,
891
+ translate,
892
+ scale,
893
+ rotate;
894
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
895
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
896
+ }
897
+ .duration-200 {
898
+ --tw-duration: 200ms;
899
+ transition-duration: 200ms;
900
+ }
901
+ .duration-300 {
902
+ --tw-duration: 300ms;
903
+ transition-duration: 300ms;
904
+ }
905
+ .hover\:scale-110 {
906
+ &:hover {
907
+ @media (hover: hover) {
908
+ --tw-scale-x: 110%;
909
+ --tw-scale-y: 110%;
910
+ --tw-scale-z: 110%;
911
+ scale: var(--tw-scale-x) var(--tw-scale-y);
912
+ }
913
+ }
914
+ }
915
+ .hover\:bg-\[\#1557b0\] {
916
+ &:hover {
917
+ @media (hover: hover) {
918
+ background-color: #1557b0;
919
+ }
920
+ }
921
+ }
922
+ .hover\:bg-\[\#d2e3fc\] {
923
+ &:hover {
924
+ @media (hover: hover) {
925
+ background-color: #d2e3fc;
926
+ }
927
+ }
928
+ }
929
+ .hover\:bg-\[\#e8eaed\] {
930
+ &:hover {
931
+ @media (hover: hover) {
932
+ background-color: #e8eaed;
933
+ }
934
+ }
935
+ }
936
+ .hover\:bg-white\/20 {
937
+ &:hover {
938
+ @media (hover: hover) {
939
+ background-color: color-mix(in srgb, #fff 20%, transparent);
940
+ @supports (color: color-mix(in lab, red, red)) {
941
+ background-color: color-mix(in oklab, var(--color-white) 20%, transparent);
942
+ }
943
+ }
944
+ }
945
+ }
946
+ .hover\:text-blue-700 {
947
+ &:hover {
948
+ @media (hover: hover) {
949
+ color: var(--color-blue-700);
950
+ }
951
+ }
952
+ }
953
+ .focus\:border-gray-200 {
954
+ &:focus {
955
+ border-color: var(--color-gray-200);
956
+ }
957
+ }
958
+ .focus\:bg-white {
959
+ &:focus {
960
+ background-color: var(--color-white);
961
+ }
962
+ }
963
+ .focus\:ring-2 {
964
+ &:focus {
965
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
966
+ box-shadow:
967
+ var(--tw-inset-shadow),
968
+ var(--tw-inset-ring-shadow),
969
+ var(--tw-ring-offset-shadow),
970
+ var(--tw-ring-shadow),
971
+ var(--tw-shadow);
972
+ }
973
+ }
974
+ .focus\:ring-blue-100 {
975
+ &:focus {
976
+ --tw-ring-color: var(--color-blue-100);
977
+ }
978
+ }
979
+ .focus\:outline-none {
980
+ &:focus {
981
+ --tw-outline-style: none;
982
+ outline-style: none;
983
+ }
984
+ }
985
+ .active\:scale-95 {
986
+ &:active {
987
+ --tw-scale-x: 95%;
988
+ --tw-scale-y: 95%;
989
+ --tw-scale-z: 95%;
990
+ scale: var(--tw-scale-x) var(--tw-scale-y);
991
+ }
992
+ }
993
+ .active\:scale-\[0\.98\] {
994
+ &:active {
995
+ scale: 0.98;
996
+ }
997
+ }
998
+ .disabled\:cursor-not-allowed {
999
+ &:disabled {
1000
+ cursor: not-allowed;
1001
+ }
1002
+ }
1003
+ .disabled\:opacity-50 {
1004
+ &:disabled {
1005
+ opacity: 50%;
1006
+ }
1007
+ }
1008
+ }
1009
+ @property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
1010
+ @property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
1011
+ @property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
1012
+ @property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
1013
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
1014
+ @property --tw-gradient-position { syntax: "*"; inherits: false; }
1015
+ @property --tw-gradient-from { syntax: "<color>"; inherits: false; initial-value: #0000; }
1016
+ @property --tw-gradient-via { syntax: "<color>"; inherits: false; initial-value: #0000; }
1017
+ @property --tw-gradient-to { syntax: "<color>"; inherits: false; initial-value: #0000; }
1018
+ @property --tw-gradient-stops { syntax: "*"; inherits: false; }
1019
+ @property --tw-gradient-via-stops { syntax: "*"; inherits: false; }
1020
+ @property --tw-gradient-from-position { syntax: "<length-percentage>"; inherits: false; initial-value: 0%; }
1021
+ @property --tw-gradient-via-position { syntax: "<length-percentage>"; inherits: false; initial-value: 50%; }
1022
+ @property --tw-gradient-to-position { syntax: "<length-percentage>"; inherits: false; initial-value: 100%; }
1023
+ @property --tw-leading { syntax: "*"; inherits: false; }
1024
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
1025
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1026
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
1027
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1028
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1029
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
1030
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1031
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
1032
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1033
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
1034
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1035
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
1036
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
1037
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
1038
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1039
+ @property --tw-duration { syntax: "*"; inherits: false; }
1040
+ @keyframes ping {
1041
+ 75%, 100% {
1042
+ transform: scale(2);
1043
+ opacity: 0;
1044
+ }
1045
+ }
1046
+ @keyframes pulse {
1047
+ 50% {
1048
+ opacity: 0.5;
1049
+ }
1050
+ }
1051
+ @layer properties {
1052
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1053
+ *,
1054
+ ::before,
1055
+ ::after,
1056
+ ::backdrop {
1057
+ --tw-scale-x: 1;
1058
+ --tw-scale-y: 1;
1059
+ --tw-scale-z: 1;
1060
+ --tw-space-y-reverse: 0;
1061
+ --tw-border-style: solid;
1062
+ --tw-gradient-position: initial;
1063
+ --tw-gradient-from: #0000;
1064
+ --tw-gradient-via: #0000;
1065
+ --tw-gradient-to: #0000;
1066
+ --tw-gradient-stops: initial;
1067
+ --tw-gradient-via-stops: initial;
1068
+ --tw-gradient-from-position: 0%;
1069
+ --tw-gradient-via-position: 50%;
1070
+ --tw-gradient-to-position: 100%;
1071
+ --tw-leading: initial;
1072
+ --tw-font-weight: initial;
1073
+ --tw-shadow: 0 0 #0000;
1074
+ --tw-shadow-color: initial;
1075
+ --tw-shadow-alpha: 100%;
1076
+ --tw-inset-shadow: 0 0 #0000;
1077
+ --tw-inset-shadow-color: initial;
1078
+ --tw-inset-shadow-alpha: 100%;
1079
+ --tw-ring-color: initial;
1080
+ --tw-ring-shadow: 0 0 #0000;
1081
+ --tw-inset-ring-color: initial;
1082
+ --tw-inset-ring-shadow: 0 0 #0000;
1083
+ --tw-ring-inset: initial;
1084
+ --tw-ring-offset-width: 0px;
1085
+ --tw-ring-offset-color: #fff;
1086
+ --tw-ring-offset-shadow: 0 0 #0000;
1087
+ --tw-duration: initial;
1088
+ }
1089
+ }
1090
+ }
1091
+ /*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
1092
+ /*# sourceMappingURL=index.css.map */