@tinkrapp/widget 1.0.2 → 1.1.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.
@@ -0,0 +1,4956 @@
1
+ /* src/react/styles/globals.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-100: oklch(93.6% 0.032 17.717);
25
+ --color-red-200: oklch(88.5% 0.062 18.334);
26
+ --color-red-300: oklch(80.8% 0.114 19.571);
27
+ --color-red-400: oklch(70.4% 0.191 22.216);
28
+ --color-red-700: oklch(50.5% 0.213 27.518);
29
+ --color-red-900: oklch(39.6% 0.141 25.723);
30
+ --color-orange-100: oklch(95.4% 0.038 75.164);
31
+ --color-orange-300: oklch(83.7% 0.128 66.29);
32
+ --color-orange-700: oklch(55.3% 0.195 38.402);
33
+ --color-orange-900: oklch(40.8% 0.123 38.172);
34
+ --color-yellow-100: oklch(97.3% 0.071 103.193);
35
+ --color-yellow-300: oklch(90.5% 0.182 98.111);
36
+ --color-yellow-700: oklch(55.4% 0.135 66.442);
37
+ --color-yellow-900: oklch(42.1% 0.095 57.708);
38
+ --color-green-100: oklch(96.2% 0.044 156.743);
39
+ --color-green-300: oklch(87.1% 0.15 154.449);
40
+ --color-green-700: oklch(52.7% 0.154 150.069);
41
+ --color-green-900: oklch(39.3% 0.095 152.535);
42
+ --color-teal-100: oklch(95.3% 0.051 180.801);
43
+ --color-teal-300: oklch(85.5% 0.138 181.071);
44
+ --color-teal-700: oklch(51.1% 0.096 186.391);
45
+ --color-teal-900: oklch(38.6% 0.063 188.416);
46
+ --color-blue-100: oklch(93.2% 0.032 255.585);
47
+ --color-blue-300: oklch(80.9% 0.105 251.813);
48
+ --color-blue-700: oklch(48.8% 0.243 264.376);
49
+ --color-blue-900: oklch(37.9% 0.146 265.522);
50
+ --color-indigo-100: oklch(93% 0.034 272.788);
51
+ --color-indigo-300: oklch(78.5% 0.115 274.713);
52
+ --color-indigo-700: oklch(45.7% 0.24 277.023);
53
+ --color-indigo-900: oklch(35.9% 0.144 278.697);
54
+ --color-purple-100: oklch(94.6% 0.033 307.174);
55
+ --color-purple-300: oklch(82.7% 0.119 306.383);
56
+ --color-purple-700: oklch(49.6% 0.265 301.924);
57
+ --color-purple-900: oklch(38.1% 0.176 304.987);
58
+ --color-black: #000;
59
+ --color-white: #fff;
60
+ --spacing: 0.25rem;
61
+ --container-lg: 32rem;
62
+ --container-3xl: 48rem;
63
+ --text-xs: 0.75rem;
64
+ --text-xs--line-height: calc(1 / 0.75);
65
+ --text-sm: 0.875rem;
66
+ --text-sm--line-height: calc(1.25 / 0.875);
67
+ --text-lg: 1.125rem;
68
+ --text-lg--line-height: calc(1.75 / 1.125);
69
+ --text-xl: 1.25rem;
70
+ --text-xl--line-height: calc(1.75 / 1.25);
71
+ --text-2xl: 1.5rem;
72
+ --text-2xl--line-height: calc(2 / 1.5);
73
+ --text-3xl: 1.875rem;
74
+ --text-3xl--line-height: calc(2.25 / 1.875);
75
+ --text-4xl: 2.25rem;
76
+ --text-4xl--line-height: calc(2.5 / 2.25);
77
+ --font-weight-medium: 500;
78
+ --font-weight-semibold: 600;
79
+ --font-weight-bold: 700;
80
+ --font-weight-extrabold: 800;
81
+ --tracking-tight: -0.025em;
82
+ --leading-tight: 1.25;
83
+ --leading-relaxed: 1.625;
84
+ --radius-xs: 0.125rem;
85
+ --radius-md: calc(var(--radius) - 2px);
86
+ --radius-lg: var(--radius);
87
+ --radius-xl: calc(var(--radius) + 4px);
88
+ --radius-2xl: 1rem;
89
+ --radius-3xl: 1.5rem;
90
+ --ease-in: cubic-bezier(0.4, 0, 1, 1);
91
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
92
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
93
+ --animate-spin: spin 1s linear infinite;
94
+ --default-transition-duration: 150ms;
95
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
96
+ --default-font-family: var(--font-sans);
97
+ --default-mono-font-family: var(--font-mono);
98
+ --color-background: hsl(var(--background));
99
+ --color-foreground: hsl(var(--foreground));
100
+ --color-popover: hsl(var(--popover));
101
+ --color-popover-foreground: hsl(var(--popover-foreground));
102
+ --color-primary: hsl(var(--primary));
103
+ --color-muted: hsl(var(--muted));
104
+ --color-muted-foreground: hsl(var(--muted-foreground));
105
+ --color-accent: hsl(var(--accent));
106
+ --color-destructive: hsl(var(--destructive));
107
+ --color-border: hsl(var(--border));
108
+ --color-input: hsl(var(--input));
109
+ --color-ring: hsl(var(--ring));
110
+ }
111
+ }
112
+ @layer base {
113
+ *,
114
+ ::after,
115
+ ::before,
116
+ ::backdrop,
117
+ ::file-selector-button {
118
+ box-sizing: border-box;
119
+ margin: 0;
120
+ padding: 0;
121
+ border: 0 solid;
122
+ }
123
+ html,
124
+ :host {
125
+ line-height: 1.5;
126
+ -webkit-text-size-adjust: 100%;
127
+ -moz-tab-size: 4;
128
+ -o-tab-size: 4;
129
+ tab-size: 4;
130
+ 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");
131
+ font-feature-settings: var(--default-font-feature-settings, normal);
132
+ font-variation-settings: var(--default-font-variation-settings, normal);
133
+ -webkit-tap-highlight-color: transparent;
134
+ }
135
+ hr {
136
+ height: 0;
137
+ color: inherit;
138
+ border-top-width: 1px;
139
+ }
140
+ abbr:where([title]) {
141
+ -webkit-text-decoration: underline dotted;
142
+ text-decoration: underline dotted;
143
+ }
144
+ h1,
145
+ h2,
146
+ h3,
147
+ h4,
148
+ h5,
149
+ h6 {
150
+ font-size: inherit;
151
+ font-weight: inherit;
152
+ }
153
+ a {
154
+ color: inherit;
155
+ -webkit-text-decoration: inherit;
156
+ text-decoration: inherit;
157
+ }
158
+ b,
159
+ strong {
160
+ font-weight: bolder;
161
+ }
162
+ code,
163
+ kbd,
164
+ samp,
165
+ pre {
166
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
167
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
168
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
169
+ font-size: 1em;
170
+ }
171
+ small {
172
+ font-size: 80%;
173
+ }
174
+ sub,
175
+ sup {
176
+ font-size: 75%;
177
+ line-height: 0;
178
+ position: relative;
179
+ vertical-align: baseline;
180
+ }
181
+ sub {
182
+ bottom: -0.25em;
183
+ }
184
+ sup {
185
+ top: -0.5em;
186
+ }
187
+ table {
188
+ text-indent: 0;
189
+ border-color: inherit;
190
+ border-collapse: collapse;
191
+ }
192
+ :-moz-focusring {
193
+ outline: auto;
194
+ }
195
+ progress {
196
+ vertical-align: baseline;
197
+ }
198
+ summary {
199
+ display: list-item;
200
+ }
201
+ ol,
202
+ ul,
203
+ menu {
204
+ list-style: none;
205
+ }
206
+ img,
207
+ svg,
208
+ video,
209
+ canvas,
210
+ audio,
211
+ iframe,
212
+ embed,
213
+ object {
214
+ display: block;
215
+ vertical-align: middle;
216
+ }
217
+ img,
218
+ video {
219
+ max-width: 100%;
220
+ height: auto;
221
+ }
222
+ button,
223
+ input,
224
+ select,
225
+ optgroup,
226
+ textarea,
227
+ ::file-selector-button {
228
+ font: inherit;
229
+ font-feature-settings: inherit;
230
+ font-variation-settings: inherit;
231
+ letter-spacing: inherit;
232
+ color: inherit;
233
+ border-radius: 0;
234
+ background-color: transparent;
235
+ opacity: 1;
236
+ }
237
+ :where(select:is([multiple], [size])) optgroup {
238
+ font-weight: bolder;
239
+ }
240
+ :where(select:is([multiple], [size])) optgroup option {
241
+ padding-inline-start: 20px;
242
+ }
243
+ ::file-selector-button {
244
+ margin-inline-end: 4px;
245
+ }
246
+ ::-moz-placeholder {
247
+ opacity: 1;
248
+ }
249
+ ::placeholder {
250
+ opacity: 1;
251
+ }
252
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
253
+ ::-moz-placeholder {
254
+ color: currentcolor;
255
+ @supports (color: color-mix(in lab, red, red)) {
256
+ color: color-mix(in oklab, currentcolor 50%, transparent);
257
+ }
258
+ }
259
+ ::placeholder {
260
+ color: currentcolor;
261
+ @supports (color: color-mix(in lab, red, red)) {
262
+ color: color-mix(in oklab, currentcolor 50%, transparent);
263
+ }
264
+ }
265
+ }
266
+ textarea {
267
+ resize: vertical;
268
+ }
269
+ ::-webkit-search-decoration {
270
+ -webkit-appearance: none;
271
+ }
272
+ ::-webkit-date-and-time-value {
273
+ min-height: 1lh;
274
+ text-align: inherit;
275
+ }
276
+ ::-webkit-datetime-edit {
277
+ display: inline-flex;
278
+ }
279
+ ::-webkit-datetime-edit-fields-wrapper {
280
+ padding: 0;
281
+ }
282
+ ::-webkit-datetime-edit,
283
+ ::-webkit-datetime-edit-year-field,
284
+ ::-webkit-datetime-edit-month-field,
285
+ ::-webkit-datetime-edit-day-field,
286
+ ::-webkit-datetime-edit-hour-field,
287
+ ::-webkit-datetime-edit-minute-field,
288
+ ::-webkit-datetime-edit-second-field,
289
+ ::-webkit-datetime-edit-millisecond-field,
290
+ ::-webkit-datetime-edit-meridiem-field {
291
+ padding-block: 0;
292
+ }
293
+ ::-webkit-calendar-picker-indicator {
294
+ line-height: 1;
295
+ }
296
+ :-moz-ui-invalid {
297
+ box-shadow: none;
298
+ }
299
+ button,
300
+ input:where([type=button], [type=reset], [type=submit]),
301
+ ::file-selector-button {
302
+ -webkit-appearance: button;
303
+ -moz-appearance: button;
304
+ appearance: button;
305
+ }
306
+ ::-webkit-inner-spin-button,
307
+ ::-webkit-outer-spin-button {
308
+ height: auto;
309
+ }
310
+ [hidden]:where(:not([hidden=until-found])) {
311
+ display: none !important;
312
+ }
313
+ }
314
+ @layer utilities {
315
+ .\@container {
316
+ container-type: inline-size;
317
+ }
318
+ .visible {
319
+ visibility: visible;
320
+ }
321
+ .sr-only {
322
+ position: absolute;
323
+ width: 1px;
324
+ height: 1px;
325
+ padding: 0;
326
+ margin: -1px;
327
+ overflow: hidden;
328
+ clip-path: inset(50%);
329
+ white-space: nowrap;
330
+ border-width: 0;
331
+ }
332
+ .absolute {
333
+ position: absolute;
334
+ }
335
+ .fixed {
336
+ position: fixed;
337
+ }
338
+ .relative {
339
+ position: relative;
340
+ }
341
+ .sticky {
342
+ position: sticky;
343
+ }
344
+ .inset-0 {
345
+ inset: calc(var(--spacing) * 0);
346
+ }
347
+ .-top-12 {
348
+ top: calc(var(--spacing) * -12);
349
+ }
350
+ .top-0 {
351
+ top: calc(var(--spacing) * 0);
352
+ }
353
+ .top-1\.5 {
354
+ top: calc(var(--spacing) * 1.5);
355
+ }
356
+ .top-1\/2 {
357
+ top: calc(1/2 * 100%);
358
+ }
359
+ .top-4 {
360
+ top: calc(var(--spacing) * 4);
361
+ }
362
+ .top-\[50\%\] {
363
+ top: 50%;
364
+ }
365
+ .right-1\.5 {
366
+ right: calc(var(--spacing) * 1.5);
367
+ }
368
+ .right-4 {
369
+ right: calc(var(--spacing) * 4);
370
+ }
371
+ .bottom-0 {
372
+ bottom: calc(var(--spacing) * 0);
373
+ }
374
+ .left-0 {
375
+ left: calc(var(--spacing) * 0);
376
+ }
377
+ .left-\[50\%\] {
378
+ left: 50%;
379
+ }
380
+ .z-10 {
381
+ z-index: 10;
382
+ }
383
+ .z-40 {
384
+ z-index: 40;
385
+ }
386
+ .z-50 {
387
+ z-index: 50;
388
+ }
389
+ .z-\[10000\] {
390
+ z-index: 10000;
391
+ }
392
+ .col-span-full {
393
+ grid-column: 1 / -1;
394
+ }
395
+ .col-start-1 {
396
+ grid-column-start: 1;
397
+ }
398
+ .col-start-2 {
399
+ grid-column-start: 2;
400
+ }
401
+ .col-start-3 {
402
+ grid-column-start: 3;
403
+ }
404
+ .row-start-1 {
405
+ grid-row-start: 1;
406
+ }
407
+ .row-start-2 {
408
+ grid-row-start: 2;
409
+ }
410
+ .row-start-3 {
411
+ grid-row-start: 3;
412
+ }
413
+ .container {
414
+ width: 100%;
415
+ @media (width >= 40rem) {
416
+ max-width: 40rem;
417
+ }
418
+ @media (width >= 48rem) {
419
+ max-width: 48rem;
420
+ }
421
+ @media (width >= 64rem) {
422
+ max-width: 64rem;
423
+ }
424
+ @media (width >= 80rem) {
425
+ max-width: 80rem;
426
+ }
427
+ @media (width >= 96rem) {
428
+ max-width: 96rem;
429
+ }
430
+ }
431
+ .m-0 {
432
+ margin: calc(var(--spacing) * 0);
433
+ }
434
+ .mx-0\.5 {
435
+ margin-inline: calc(var(--spacing) * 0.5);
436
+ }
437
+ .mx-2 {
438
+ margin-inline: calc(var(--spacing) * 2);
439
+ }
440
+ .mx-3 {
441
+ margin-inline: calc(var(--spacing) * 3);
442
+ }
443
+ .mx-auto {
444
+ margin-inline: auto;
445
+ }
446
+ .my-1\.5 {
447
+ margin-block: calc(var(--spacing) * 1.5);
448
+ }
449
+ .my-2 {
450
+ margin-block: calc(var(--spacing) * 2);
451
+ }
452
+ .my-3 {
453
+ margin-block: calc(var(--spacing) * 3);
454
+ }
455
+ .my-4 {
456
+ margin-block: calc(var(--spacing) * 4);
457
+ }
458
+ .my-5 {
459
+ margin-block: calc(var(--spacing) * 5);
460
+ }
461
+ .mt-1 {
462
+ margin-top: calc(var(--spacing) * 1);
463
+ }
464
+ .mt-1\.5 {
465
+ margin-top: calc(var(--spacing) * 1.5);
466
+ }
467
+ .mt-2 {
468
+ margin-top: calc(var(--spacing) * 2);
469
+ }
470
+ .mt-3 {
471
+ margin-top: calc(var(--spacing) * 3);
472
+ }
473
+ .mt-4 {
474
+ margin-top: calc(var(--spacing) * 4);
475
+ }
476
+ .mt-5 {
477
+ margin-top: calc(var(--spacing) * 5);
478
+ }
479
+ .mt-6 {
480
+ margin-top: calc(var(--spacing) * 6);
481
+ }
482
+ .mt-8 {
483
+ margin-top: calc(var(--spacing) * 8);
484
+ }
485
+ .mt-auto {
486
+ margin-top: auto;
487
+ }
488
+ .-mr-1 {
489
+ margin-right: calc(var(--spacing) * -1);
490
+ }
491
+ .mr-2 {
492
+ margin-right: calc(var(--spacing) * 2);
493
+ }
494
+ .mb-0\.5 {
495
+ margin-bottom: calc(var(--spacing) * 0.5);
496
+ }
497
+ .mb-1 {
498
+ margin-bottom: calc(var(--spacing) * 1);
499
+ }
500
+ .mb-1\.5 {
501
+ margin-bottom: calc(var(--spacing) * 1.5);
502
+ }
503
+ .mb-2 {
504
+ margin-bottom: calc(var(--spacing) * 2);
505
+ }
506
+ .mb-3 {
507
+ margin-bottom: calc(var(--spacing) * 3);
508
+ }
509
+ .mb-4 {
510
+ margin-bottom: calc(var(--spacing) * 4);
511
+ }
512
+ .mb-5 {
513
+ margin-bottom: calc(var(--spacing) * 5);
514
+ }
515
+ .mb-8 {
516
+ margin-bottom: calc(var(--spacing) * 8);
517
+ }
518
+ .-ml-1 {
519
+ margin-left: calc(var(--spacing) * -1);
520
+ }
521
+ .-ml-2 {
522
+ margin-left: calc(var(--spacing) * -2);
523
+ }
524
+ .ml-2 {
525
+ margin-left: calc(var(--spacing) * 2);
526
+ }
527
+ .ml-3 {
528
+ margin-left: calc(var(--spacing) * 3);
529
+ }
530
+ .ml-6 {
531
+ margin-left: calc(var(--spacing) * 6);
532
+ }
533
+ .ml-auto {
534
+ margin-left: auto;
535
+ }
536
+ .line-clamp-2 {
537
+ overflow: hidden;
538
+ display: -webkit-box;
539
+ -webkit-box-orient: vertical;
540
+ -webkit-line-clamp: 2;
541
+ }
542
+ .line-clamp-4 {
543
+ overflow: hidden;
544
+ display: -webkit-box;
545
+ -webkit-box-orient: vertical;
546
+ -webkit-line-clamp: 4;
547
+ }
548
+ .block {
549
+ display: block;
550
+ }
551
+ .flex {
552
+ display: flex;
553
+ }
554
+ .grid {
555
+ display: grid;
556
+ }
557
+ .hidden {
558
+ display: none;
559
+ }
560
+ .inline {
561
+ display: inline;
562
+ }
563
+ .inline-flex {
564
+ display: inline-flex;
565
+ }
566
+ .table {
567
+ display: table;
568
+ }
569
+ .aspect-square {
570
+ aspect-ratio: 1 / 1;
571
+ }
572
+ .size-2\.5 {
573
+ width: calc(var(--spacing) * 2.5);
574
+ height: calc(var(--spacing) * 2.5);
575
+ }
576
+ .size-3 {
577
+ width: calc(var(--spacing) * 3);
578
+ height: calc(var(--spacing) * 3);
579
+ }
580
+ .size-3\.5 {
581
+ width: calc(var(--spacing) * 3.5);
582
+ height: calc(var(--spacing) * 3.5);
583
+ }
584
+ .size-4 {
585
+ width: calc(var(--spacing) * 4);
586
+ height: calc(var(--spacing) * 4);
587
+ }
588
+ .size-5 {
589
+ width: calc(var(--spacing) * 5);
590
+ height: calc(var(--spacing) * 5);
591
+ }
592
+ .size-8 {
593
+ width: calc(var(--spacing) * 8);
594
+ height: calc(var(--spacing) * 8);
595
+ }
596
+ .size-9 {
597
+ width: calc(var(--spacing) * 9);
598
+ height: calc(var(--spacing) * 9);
599
+ }
600
+ .size-10 {
601
+ width: calc(var(--spacing) * 10);
602
+ height: calc(var(--spacing) * 10);
603
+ }
604
+ .size-12 {
605
+ width: calc(var(--spacing) * 12);
606
+ height: calc(var(--spacing) * 12);
607
+ }
608
+ .size-14 {
609
+ width: calc(var(--spacing) * 14);
610
+ height: calc(var(--spacing) * 14);
611
+ }
612
+ .size-\[34px\] {
613
+ width: 34px;
614
+ height: 34px;
615
+ }
616
+ .size-full {
617
+ width: 100%;
618
+ height: 100%;
619
+ }
620
+ .h-3 {
621
+ height: calc(var(--spacing) * 3);
622
+ }
623
+ .h-3\.5 {
624
+ height: calc(var(--spacing) * 3.5);
625
+ }
626
+ .h-4 {
627
+ height: calc(var(--spacing) * 4);
628
+ }
629
+ .h-6 {
630
+ height: calc(var(--spacing) * 6);
631
+ }
632
+ .h-7 {
633
+ height: calc(var(--spacing) * 7);
634
+ }
635
+ .h-8 {
636
+ height: calc(var(--spacing) * 8);
637
+ }
638
+ .h-9 {
639
+ height: calc(var(--spacing) * 9);
640
+ }
641
+ .h-10 {
642
+ height: calc(var(--spacing) * 10);
643
+ }
644
+ .h-auto {
645
+ height: auto;
646
+ }
647
+ .h-full {
648
+ height: 100%;
649
+ }
650
+ .max-h-32 {
651
+ max-height: calc(var(--spacing) * 32);
652
+ }
653
+ .max-h-80 {
654
+ max-height: calc(var(--spacing) * 80);
655
+ }
656
+ .max-h-\[80dvh\] {
657
+ max-height: 80dvh;
658
+ }
659
+ .max-h-\[80vh\] {
660
+ max-height: 80vh;
661
+ }
662
+ .max-h-\[300px\] {
663
+ max-height: 300px;
664
+ }
665
+ .max-h-\[400px\] {
666
+ max-height: 400px;
667
+ }
668
+ .min-h-14 {
669
+ min-height: calc(var(--spacing) * 14);
670
+ }
671
+ .w-3 {
672
+ width: calc(var(--spacing) * 3);
673
+ }
674
+ .w-3\.5 {
675
+ width: calc(var(--spacing) * 3.5);
676
+ }
677
+ .w-4 {
678
+ width: calc(var(--spacing) * 4);
679
+ }
680
+ .w-6 {
681
+ width: calc(var(--spacing) * 6);
682
+ }
683
+ .w-7 {
684
+ width: calc(var(--spacing) * 7);
685
+ }
686
+ .w-8 {
687
+ width: calc(var(--spacing) * 8);
688
+ }
689
+ .w-48 {
690
+ width: calc(var(--spacing) * 48);
691
+ }
692
+ .w-64 {
693
+ width: calc(var(--spacing) * 64);
694
+ }
695
+ .w-72 {
696
+ width: calc(var(--spacing) * 72);
697
+ }
698
+ .w-auto {
699
+ width: auto;
700
+ }
701
+ .w-fit {
702
+ width: -moz-fit-content;
703
+ width: fit-content;
704
+ }
705
+ .w-full {
706
+ width: 100%;
707
+ }
708
+ .max-w-\(--thread-max-width\) {
709
+ max-width: var(--thread-max-width);
710
+ }
711
+ .max-w-\[85\%\] {
712
+ max-width: 85%;
713
+ }
714
+ .max-w-\[200px\] {
715
+ max-width: 200px;
716
+ }
717
+ .max-w-\[350px\] {
718
+ max-width: 350px;
719
+ }
720
+ .max-w-\[calc\(100\%-2rem\)\] {
721
+ max-width: calc(100% - 2rem);
722
+ }
723
+ .max-w-full {
724
+ max-width: 100%;
725
+ }
726
+ .max-w-none {
727
+ max-width: none;
728
+ }
729
+ .min-w-0 {
730
+ min-width: calc(var(--spacing) * 0);
731
+ }
732
+ .flex-1 {
733
+ flex: 1;
734
+ }
735
+ .flex-shrink {
736
+ flex-shrink: 1;
737
+ }
738
+ .flex-shrink-0 {
739
+ flex-shrink: 0;
740
+ }
741
+ .shrink-0 {
742
+ flex-shrink: 0;
743
+ }
744
+ .grow {
745
+ flex-grow: 1;
746
+ }
747
+ .border-separate {
748
+ border-collapse: separate;
749
+ }
750
+ .border-spacing-0 {
751
+ --tw-border-spacing-x: calc(var(--spacing) * 0);
752
+ --tw-border-spacing-y: calc(var(--spacing) * 0);
753
+ border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
754
+ }
755
+ .origin-\(--radix-tooltip-content-transform-origin\) {
756
+ transform-origin: var(--radix-tooltip-content-transform-origin);
757
+ }
758
+ .-translate-x-full {
759
+ --tw-translate-x: -100%;
760
+ translate: var(--tw-translate-x) var(--tw-translate-y);
761
+ }
762
+ .translate-x-\[-50\%\] {
763
+ --tw-translate-x: -50%;
764
+ translate: var(--tw-translate-x) var(--tw-translate-y);
765
+ }
766
+ .-translate-y-1\/2 {
767
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
768
+ translate: var(--tw-translate-x) var(--tw-translate-y);
769
+ }
770
+ .translate-y-\[-50\%\] {
771
+ --tw-translate-y: -50%;
772
+ translate: var(--tw-translate-x) var(--tw-translate-y);
773
+ }
774
+ .translate-y-\[calc\(-50\%_-_2px\)\] {
775
+ --tw-translate-y: calc(-50% - 2px);
776
+ translate: var(--tw-translate-x) var(--tw-translate-y);
777
+ }
778
+ .rotate-45 {
779
+ rotate: 45deg;
780
+ }
781
+ .rotate-180 {
782
+ rotate: 180deg;
783
+ }
784
+ .animate-spin {
785
+ animation: var(--animate-spin);
786
+ }
787
+ .cursor-default {
788
+ cursor: default;
789
+ }
790
+ .cursor-pointer {
791
+ cursor: pointer;
792
+ }
793
+ .resize {
794
+ resize: both;
795
+ }
796
+ .resize-none {
797
+ resize: none;
798
+ }
799
+ .scroll-m-20 {
800
+ scroll-margin: calc(var(--spacing) * 20);
801
+ }
802
+ .list-decimal {
803
+ list-style-type: decimal;
804
+ }
805
+ .list-disc {
806
+ list-style-type: disc;
807
+ }
808
+ .auto-rows-auto {
809
+ grid-auto-rows: auto;
810
+ }
811
+ .grid-cols-\[minmax\(72px\,1fr\)_auto\] {
812
+ grid-template-columns: minmax(72px, 1fr) auto;
813
+ }
814
+ .flex-col {
815
+ flex-direction: column;
816
+ }
817
+ .flex-col-reverse {
818
+ flex-direction: column-reverse;
819
+ }
820
+ .flex-row {
821
+ flex-direction: row;
822
+ }
823
+ .flex-wrap {
824
+ flex-wrap: wrap;
825
+ }
826
+ .content-start {
827
+ align-content: flex-start;
828
+ }
829
+ .items-center {
830
+ align-items: center;
831
+ }
832
+ .items-end {
833
+ align-items: flex-end;
834
+ }
835
+ .items-start {
836
+ align-items: flex-start;
837
+ }
838
+ .justify-between {
839
+ justify-content: space-between;
840
+ }
841
+ .justify-center {
842
+ justify-content: center;
843
+ }
844
+ .justify-end {
845
+ justify-content: flex-end;
846
+ }
847
+ .justify-start {
848
+ justify-content: flex-start;
849
+ }
850
+ .gap-1 {
851
+ gap: calc(var(--spacing) * 1);
852
+ }
853
+ .gap-1\.5 {
854
+ gap: calc(var(--spacing) * 1.5);
855
+ }
856
+ .gap-2 {
857
+ gap: calc(var(--spacing) * 2);
858
+ }
859
+ .gap-3 {
860
+ gap: calc(var(--spacing) * 3);
861
+ }
862
+ .gap-4 {
863
+ gap: calc(var(--spacing) * 4);
864
+ }
865
+ .gap-y-2 {
866
+ row-gap: calc(var(--spacing) * 2);
867
+ }
868
+ .self-center {
869
+ align-self: center;
870
+ }
871
+ .self-end {
872
+ align-self: flex-end;
873
+ }
874
+ .truncate {
875
+ overflow: hidden;
876
+ text-overflow: ellipsis;
877
+ white-space: nowrap;
878
+ }
879
+ .overflow-hidden {
880
+ overflow: hidden;
881
+ }
882
+ .overflow-visible {
883
+ overflow: visible;
884
+ }
885
+ .overflow-x-auto {
886
+ overflow-x: auto;
887
+ }
888
+ .overflow-y-auto {
889
+ overflow-y: auto;
890
+ }
891
+ .overflow-y-scroll {
892
+ overflow-y: scroll;
893
+ }
894
+ .scroll-smooth {
895
+ scroll-behavior: smooth;
896
+ }
897
+ .rounded {
898
+ border-radius: 0.25rem;
899
+ }
900
+ .rounded-2xl {
901
+ border-radius: var(--radius-2xl);
902
+ }
903
+ .rounded-\[2px\] {
904
+ border-radius: 2px;
905
+ }
906
+ .rounded-\[14px\] {
907
+ border-radius: 14px;
908
+ }
909
+ .rounded-full {
910
+ border-radius: calc(infinity * 1px);
911
+ }
912
+ .rounded-lg {
913
+ border-radius: var(--radius);
914
+ }
915
+ .rounded-md {
916
+ border-radius: calc(var(--radius) - 2px);
917
+ }
918
+ .rounded-none {
919
+ border-radius: 0;
920
+ }
921
+ .rounded-sm {
922
+ border-radius: calc(var(--radius) - 4px);
923
+ }
924
+ .rounded-xl {
925
+ border-radius: calc(var(--radius) + 4px);
926
+ }
927
+ .rounded-xs {
928
+ border-radius: var(--radius-xs);
929
+ }
930
+ .rounded-t-3xl {
931
+ border-top-left-radius: var(--radius-3xl);
932
+ border-top-right-radius: var(--radius-3xl);
933
+ }
934
+ .rounded-t-lg {
935
+ border-top-left-radius: var(--radius);
936
+ border-top-right-radius: var(--radius);
937
+ }
938
+ .rounded-t-none\! {
939
+ border-top-left-radius: 0 !important;
940
+ border-top-right-radius: 0 !important;
941
+ }
942
+ .rounded-b-lg {
943
+ border-bottom-right-radius: var(--radius);
944
+ border-bottom-left-radius: var(--radius);
945
+ }
946
+ .border {
947
+ border-style: var(--tw-border-style);
948
+ border-width: 1px;
949
+ }
950
+ .border-t {
951
+ border-top-style: var(--tw-border-style);
952
+ border-top-width: 1px;
953
+ }
954
+ .border-b {
955
+ border-bottom-style: var(--tw-border-style);
956
+ border-bottom-width: 1px;
957
+ }
958
+ .border-l {
959
+ border-left-style: var(--tw-border-style);
960
+ border-left-width: 1px;
961
+ }
962
+ .border-l-2 {
963
+ border-left-style: var(--tw-border-style);
964
+ border-left-width: 2px;
965
+ }
966
+ .border-border {
967
+ border-color: hsl(var(--border));
968
+ }
969
+ .border-destructive {
970
+ border-color: hsl(var(--destructive));
971
+ }
972
+ .border-foreground\/20 {
973
+ border-color: hsl(var(--foreground));
974
+ @supports (color: color-mix(in lab, red, red)) {
975
+ border-color: color-mix(in oklab, hsl(var(--foreground)) 20%, transparent);
976
+ }
977
+ }
978
+ .border-input {
979
+ border-color: hsl(var(--input));
980
+ }
981
+ .border-muted-foreground {
982
+ border-color: hsl(var(--muted-foreground));
983
+ }
984
+ .border-muted-foreground\/50 {
985
+ border-color: hsl(var(--muted-foreground));
986
+ @supports (color: color-mix(in lab, red, red)) {
987
+ border-color: color-mix(in oklab, hsl(var(--muted-foreground)) 50%, transparent);
988
+ }
989
+ }
990
+ .border-white\/10 {
991
+ border-color: color-mix(in srgb, #fff 10%, transparent);
992
+ @supports (color: color-mix(in lab, red, red)) {
993
+ border-color: color-mix(in oklab, var(--color-white) 10%, transparent);
994
+ }
995
+ }
996
+ .border-white\/20 {
997
+ border-color: color-mix(in srgb, #fff 20%, transparent);
998
+ @supports (color: color-mix(in lab, red, red)) {
999
+ border-color: color-mix(in oklab, var(--color-white) 20%, transparent);
1000
+ }
1001
+ }
1002
+ .border-white\/30 {
1003
+ border-color: color-mix(in srgb, #fff 30%, transparent);
1004
+ @supports (color: color-mix(in lab, red, red)) {
1005
+ border-color: color-mix(in oklab, var(--color-white) 30%, transparent);
1006
+ }
1007
+ }
1008
+ .bg-accent\/20 {
1009
+ background-color: hsl(var(--accent));
1010
+ @supports (color: color-mix(in lab, red, red)) {
1011
+ background-color: color-mix(in oklab, hsl(var(--accent)) 20%, transparent);
1012
+ }
1013
+ }
1014
+ .bg-background {
1015
+ background-color: hsl(var(--background));
1016
+ }
1017
+ .bg-black {
1018
+ background-color: var(--color-black);
1019
+ }
1020
+ .bg-black\/20 {
1021
+ background-color: color-mix(in srgb, #000 20%, transparent);
1022
+ @supports (color: color-mix(in lab, red, red)) {
1023
+ background-color: color-mix(in oklab, var(--color-black) 20%, transparent);
1024
+ }
1025
+ }
1026
+ .bg-black\/30 {
1027
+ background-color: color-mix(in srgb, #000 30%, transparent);
1028
+ @supports (color: color-mix(in lab, red, red)) {
1029
+ background-color: color-mix(in oklab, var(--color-black) 30%, transparent);
1030
+ }
1031
+ }
1032
+ .bg-black\/50 {
1033
+ background-color: color-mix(in srgb, #000 50%, transparent);
1034
+ @supports (color: color-mix(in lab, red, red)) {
1035
+ background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
1036
+ }
1037
+ }
1038
+ .bg-blue-100 {
1039
+ background-color: var(--color-blue-100);
1040
+ }
1041
+ .bg-card {
1042
+ background-color: hsl(var(--card));
1043
+ }
1044
+ .bg-destructive {
1045
+ background-color: hsl(var(--destructive));
1046
+ }
1047
+ .bg-destructive\/10 {
1048
+ background-color: hsl(var(--destructive));
1049
+ @supports (color: color-mix(in lab, red, red)) {
1050
+ background-color: color-mix(in oklab, hsl(var(--destructive)) 10%, transparent);
1051
+ }
1052
+ }
1053
+ .bg-foreground {
1054
+ background-color: hsl(var(--foreground));
1055
+ }
1056
+ .bg-green-100 {
1057
+ background-color: var(--color-green-100);
1058
+ }
1059
+ .bg-indigo-100 {
1060
+ background-color: var(--color-indigo-100);
1061
+ }
1062
+ .bg-muted {
1063
+ background-color: hsl(var(--muted));
1064
+ }
1065
+ .bg-muted-foreground\/15 {
1066
+ background-color: hsl(var(--muted-foreground));
1067
+ @supports (color: color-mix(in lab, red, red)) {
1068
+ background-color: color-mix(in oklab, hsl(var(--muted-foreground)) 15%, transparent);
1069
+ }
1070
+ }
1071
+ .bg-muted\/30 {
1072
+ background-color: hsl(var(--muted));
1073
+ @supports (color: color-mix(in lab, red, red)) {
1074
+ background-color: color-mix(in oklab, hsl(var(--muted)) 30%, transparent);
1075
+ }
1076
+ }
1077
+ .bg-muted\/50 {
1078
+ background-color: hsl(var(--muted));
1079
+ @supports (color: color-mix(in lab, red, red)) {
1080
+ background-color: color-mix(in oklab, hsl(var(--muted)) 50%, transparent);
1081
+ }
1082
+ }
1083
+ .bg-orange-100 {
1084
+ background-color: var(--color-orange-100);
1085
+ }
1086
+ .bg-popover {
1087
+ background-color: hsl(var(--popover));
1088
+ }
1089
+ .bg-primary {
1090
+ background-color: hsl(var(--primary));
1091
+ }
1092
+ .bg-primary-foreground {
1093
+ background-color: hsl(var(--primary-foreground));
1094
+ }
1095
+ .bg-primary-foreground\/80 {
1096
+ background-color: hsl(var(--primary-foreground));
1097
+ @supports (color: color-mix(in lab, red, red)) {
1098
+ background-color: color-mix(in oklab, hsl(var(--primary-foreground)) 80%, transparent);
1099
+ }
1100
+ }
1101
+ .bg-purple-100 {
1102
+ background-color: var(--color-purple-100);
1103
+ }
1104
+ .bg-red-100 {
1105
+ background-color: var(--color-red-100);
1106
+ }
1107
+ .bg-secondary {
1108
+ background-color: hsl(var(--secondary));
1109
+ }
1110
+ .bg-teal-100 {
1111
+ background-color: var(--color-teal-100);
1112
+ }
1113
+ .bg-transparent {
1114
+ background-color: transparent;
1115
+ }
1116
+ .bg-white {
1117
+ background-color: var(--color-white);
1118
+ }
1119
+ .bg-white\/50 {
1120
+ background-color: color-mix(in srgb, #fff 50%, transparent);
1121
+ @supports (color: color-mix(in lab, red, red)) {
1122
+ background-color: color-mix(in oklab, var(--color-white) 50%, transparent);
1123
+ }
1124
+ }
1125
+ .bg-yellow-100 {
1126
+ background-color: var(--color-yellow-100);
1127
+ }
1128
+ .fill-current {
1129
+ fill: currentcolor;
1130
+ }
1131
+ .fill-foreground {
1132
+ fill: hsl(var(--foreground));
1133
+ }
1134
+ .stroke-\[1\.5px\] {
1135
+ stroke-width: 1.5px;
1136
+ }
1137
+ .object-contain {
1138
+ -o-object-fit: contain;
1139
+ object-fit: contain;
1140
+ }
1141
+ .object-cover {
1142
+ -o-object-fit: cover;
1143
+ object-fit: cover;
1144
+ }
1145
+ .p-0 {
1146
+ padding: calc(var(--spacing) * 0);
1147
+ }
1148
+ .p-1 {
1149
+ padding: calc(var(--spacing) * 1);
1150
+ }
1151
+ .p-1\.5 {
1152
+ padding: calc(var(--spacing) * 1.5);
1153
+ }
1154
+ .p-2 {
1155
+ padding: calc(var(--spacing) * 2);
1156
+ }
1157
+ .p-3 {
1158
+ padding: calc(var(--spacing) * 3);
1159
+ }
1160
+ .p-4 {
1161
+ padding: calc(var(--spacing) * 4);
1162
+ }
1163
+ .p-6 {
1164
+ padding: calc(var(--spacing) * 6);
1165
+ }
1166
+ .px-0\.5 {
1167
+ padding-inline: calc(var(--spacing) * 0.5);
1168
+ }
1169
+ .px-1 {
1170
+ padding-inline: calc(var(--spacing) * 1);
1171
+ }
1172
+ .px-1\.5 {
1173
+ padding-inline: calc(var(--spacing) * 1.5);
1174
+ }
1175
+ .px-2 {
1176
+ padding-inline: calc(var(--spacing) * 2);
1177
+ }
1178
+ .px-3 {
1179
+ padding-inline: calc(var(--spacing) * 3);
1180
+ }
1181
+ .px-4 {
1182
+ padding-inline: calc(var(--spacing) * 4);
1183
+ }
1184
+ .px-6 {
1185
+ padding-inline: calc(var(--spacing) * 6);
1186
+ }
1187
+ .py-0\.5 {
1188
+ padding-block: calc(var(--spacing) * 0.5);
1189
+ }
1190
+ .py-1 {
1191
+ padding-block: calc(var(--spacing) * 1);
1192
+ }
1193
+ .py-1\.5 {
1194
+ padding-block: calc(var(--spacing) * 1.5);
1195
+ }
1196
+ .py-2 {
1197
+ padding-block: calc(var(--spacing) * 2);
1198
+ }
1199
+ .py-2\.5 {
1200
+ padding-block: calc(var(--spacing) * 2.5);
1201
+ }
1202
+ .py-3 {
1203
+ padding-block: calc(var(--spacing) * 3);
1204
+ }
1205
+ .py-8 {
1206
+ padding-block: calc(var(--spacing) * 8);
1207
+ }
1208
+ .pt-0\.5 {
1209
+ padding-top: calc(var(--spacing) * 0.5);
1210
+ }
1211
+ .pt-2 {
1212
+ padding-top: calc(var(--spacing) * 2);
1213
+ }
1214
+ .pt-4 {
1215
+ padding-top: calc(var(--spacing) * 4);
1216
+ }
1217
+ .pr-2 {
1218
+ padding-right: calc(var(--spacing) * 2);
1219
+ }
1220
+ .pb-1 {
1221
+ padding-bottom: calc(var(--spacing) * 1);
1222
+ }
1223
+ .pb-3 {
1224
+ padding-bottom: calc(var(--spacing) * 3);
1225
+ }
1226
+ .pb-4 {
1227
+ padding-bottom: calc(var(--spacing) * 4);
1228
+ }
1229
+ .pl-2 {
1230
+ padding-left: calc(var(--spacing) * 2);
1231
+ }
1232
+ .pl-6 {
1233
+ padding-left: calc(var(--spacing) * 6);
1234
+ }
1235
+ .text-center {
1236
+ text-align: center;
1237
+ }
1238
+ .text-left {
1239
+ text-align: left;
1240
+ }
1241
+ .align-middle {
1242
+ vertical-align: middle;
1243
+ }
1244
+ .font-mono {
1245
+ font-family: var(--font-mono);
1246
+ }
1247
+ .text-2xl {
1248
+ font-size: var(--text-2xl);
1249
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
1250
+ }
1251
+ .text-3xl {
1252
+ font-size: var(--text-3xl);
1253
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
1254
+ }
1255
+ .text-4xl {
1256
+ font-size: var(--text-4xl);
1257
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
1258
+ }
1259
+ .text-lg {
1260
+ font-size: var(--text-lg);
1261
+ line-height: var(--tw-leading, var(--text-lg--line-height));
1262
+ }
1263
+ .text-sm {
1264
+ font-size: var(--text-sm);
1265
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1266
+ }
1267
+ .text-xl {
1268
+ font-size: var(--text-xl);
1269
+ line-height: var(--tw-leading, var(--text-xl--line-height));
1270
+ }
1271
+ .text-xs {
1272
+ font-size: var(--text-xs);
1273
+ line-height: var(--tw-leading, var(--text-xs--line-height));
1274
+ }
1275
+ .leading-7 {
1276
+ --tw-leading: calc(var(--spacing) * 7);
1277
+ line-height: calc(var(--spacing) * 7);
1278
+ }
1279
+ .leading-none {
1280
+ --tw-leading: 1;
1281
+ line-height: 1;
1282
+ }
1283
+ .leading-relaxed {
1284
+ --tw-leading: var(--leading-relaxed);
1285
+ line-height: var(--leading-relaxed);
1286
+ }
1287
+ .leading-tight {
1288
+ --tw-leading: var(--leading-tight);
1289
+ line-height: var(--leading-tight);
1290
+ }
1291
+ .font-bold {
1292
+ --tw-font-weight: var(--font-weight-bold);
1293
+ font-weight: var(--font-weight-bold);
1294
+ }
1295
+ .font-extrabold {
1296
+ --tw-font-weight: var(--font-weight-extrabold);
1297
+ font-weight: var(--font-weight-extrabold);
1298
+ }
1299
+ .font-medium {
1300
+ --tw-font-weight: var(--font-weight-medium);
1301
+ font-weight: var(--font-weight-medium);
1302
+ }
1303
+ .font-semibold {
1304
+ --tw-font-weight: var(--font-weight-semibold);
1305
+ font-weight: var(--font-weight-semibold);
1306
+ }
1307
+ .tracking-tight {
1308
+ --tw-tracking: var(--tracking-tight);
1309
+ letter-spacing: var(--tracking-tight);
1310
+ }
1311
+ .text-balance {
1312
+ text-wrap: balance;
1313
+ }
1314
+ .wrap-break-word {
1315
+ overflow-wrap: break-word;
1316
+ }
1317
+ .whitespace-nowrap {
1318
+ white-space: nowrap;
1319
+ }
1320
+ .whitespace-pre-wrap {
1321
+ white-space: pre-wrap;
1322
+ }
1323
+ .text-background {
1324
+ color: hsl(var(--background));
1325
+ }
1326
+ .text-blue-300 {
1327
+ color: var(--color-blue-300);
1328
+ }
1329
+ .text-blue-700 {
1330
+ color: var(--color-blue-700);
1331
+ }
1332
+ .text-destructive {
1333
+ color: hsl(var(--destructive));
1334
+ }
1335
+ .text-foreground {
1336
+ color: hsl(var(--foreground));
1337
+ }
1338
+ .text-green-700 {
1339
+ color: var(--color-green-700);
1340
+ }
1341
+ .text-indigo-700 {
1342
+ color: var(--color-indigo-700);
1343
+ }
1344
+ .text-muted-foreground {
1345
+ color: hsl(var(--muted-foreground));
1346
+ }
1347
+ .text-muted-foreground\/60 {
1348
+ color: hsl(var(--muted-foreground));
1349
+ @supports (color: color-mix(in lab, red, red)) {
1350
+ color: color-mix(in oklab, hsl(var(--muted-foreground)) 60%, transparent);
1351
+ }
1352
+ }
1353
+ .text-orange-700 {
1354
+ color: var(--color-orange-700);
1355
+ }
1356
+ .text-popover-foreground {
1357
+ color: hsl(var(--popover-foreground));
1358
+ }
1359
+ .text-primary {
1360
+ color: hsl(var(--primary));
1361
+ }
1362
+ .text-primary-foreground {
1363
+ color: hsl(var(--primary-foreground));
1364
+ }
1365
+ .text-purple-700 {
1366
+ color: var(--color-purple-700);
1367
+ }
1368
+ .text-red-400 {
1369
+ color: var(--color-red-400);
1370
+ }
1371
+ .text-red-700 {
1372
+ color: var(--color-red-700);
1373
+ }
1374
+ .text-secondary-foreground {
1375
+ color: hsl(var(--secondary-foreground));
1376
+ }
1377
+ .text-teal-700 {
1378
+ color: var(--color-teal-700);
1379
+ }
1380
+ .text-white {
1381
+ color: var(--color-white);
1382
+ }
1383
+ .text-white\/60 {
1384
+ color: color-mix(in srgb, #fff 60%, transparent);
1385
+ @supports (color: color-mix(in lab, red, red)) {
1386
+ color: color-mix(in oklab, var(--color-white) 60%, transparent);
1387
+ }
1388
+ }
1389
+ .text-white\/70 {
1390
+ color: color-mix(in srgb, #fff 70%, transparent);
1391
+ @supports (color: color-mix(in lab, red, red)) {
1392
+ color: color-mix(in oklab, var(--color-white) 70%, transparent);
1393
+ }
1394
+ }
1395
+ .text-white\/80 {
1396
+ color: color-mix(in srgb, #fff 80%, transparent);
1397
+ @supports (color: color-mix(in lab, red, red)) {
1398
+ color: color-mix(in oklab, var(--color-white) 80%, transparent);
1399
+ }
1400
+ }
1401
+ .text-white\/90 {
1402
+ color: color-mix(in srgb, #fff 90%, transparent);
1403
+ @supports (color: color-mix(in lab, red, red)) {
1404
+ color: color-mix(in oklab, var(--color-white) 90%, transparent);
1405
+ }
1406
+ }
1407
+ .text-yellow-700 {
1408
+ color: var(--color-yellow-700);
1409
+ }
1410
+ .lowercase {
1411
+ text-transform: lowercase;
1412
+ }
1413
+ .italic {
1414
+ font-style: italic;
1415
+ }
1416
+ .underline {
1417
+ text-decoration-line: underline;
1418
+ }
1419
+ .underline-offset-2 {
1420
+ text-underline-offset: 2px;
1421
+ }
1422
+ .underline-offset-4 {
1423
+ text-underline-offset: 4px;
1424
+ }
1425
+ .opacity-0 {
1426
+ opacity: 0%;
1427
+ }
1428
+ .opacity-60 {
1429
+ opacity: 60%;
1430
+ }
1431
+ .opacity-70 {
1432
+ opacity: 70%;
1433
+ }
1434
+ .opacity-80 {
1435
+ opacity: 80%;
1436
+ }
1437
+ .opacity-100 {
1438
+ opacity: 100%;
1439
+ }
1440
+ .shadow {
1441
+ --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));
1442
+ box-shadow:
1443
+ var(--tw-inset-shadow),
1444
+ var(--tw-inset-ring-shadow),
1445
+ var(--tw-ring-offset-shadow),
1446
+ var(--tw-ring-shadow),
1447
+ var(--tw-shadow);
1448
+ }
1449
+ .shadow-lg {
1450
+ --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));
1451
+ box-shadow:
1452
+ var(--tw-inset-shadow),
1453
+ var(--tw-inset-ring-shadow),
1454
+ var(--tw-ring-offset-shadow),
1455
+ var(--tw-ring-shadow),
1456
+ var(--tw-shadow);
1457
+ }
1458
+ .shadow-md {
1459
+ --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));
1460
+ box-shadow:
1461
+ var(--tw-inset-shadow),
1462
+ var(--tw-inset-ring-shadow),
1463
+ var(--tw-ring-offset-shadow),
1464
+ var(--tw-ring-shadow),
1465
+ var(--tw-shadow);
1466
+ }
1467
+ .shadow-sm {
1468
+ --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));
1469
+ box-shadow:
1470
+ var(--tw-inset-shadow),
1471
+ var(--tw-inset-ring-shadow),
1472
+ var(--tw-ring-offset-shadow),
1473
+ var(--tw-ring-shadow),
1474
+ var(--tw-shadow);
1475
+ }
1476
+ .shadow-xs {
1477
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
1478
+ box-shadow:
1479
+ var(--tw-inset-shadow),
1480
+ var(--tw-inset-ring-shadow),
1481
+ var(--tw-ring-offset-shadow),
1482
+ var(--tw-ring-shadow),
1483
+ var(--tw-shadow);
1484
+ }
1485
+ .ring-offset-background {
1486
+ --tw-ring-offset-color: hsl(var(--background));
1487
+ }
1488
+ .outline {
1489
+ outline-style: var(--tw-outline-style);
1490
+ outline-width: 1px;
1491
+ }
1492
+ .transition {
1493
+ transition-property:
1494
+ color,
1495
+ background-color,
1496
+ border-color,
1497
+ outline-color,
1498
+ text-decoration-color,
1499
+ fill,
1500
+ stroke,
1501
+ --tw-gradient-from,
1502
+ --tw-gradient-via,
1503
+ --tw-gradient-to,
1504
+ opacity,
1505
+ box-shadow,
1506
+ transform,
1507
+ translate,
1508
+ scale,
1509
+ rotate,
1510
+ filter,
1511
+ backdrop-filter,
1512
+ display,
1513
+ content-visibility,
1514
+ overlay,
1515
+ pointer-events;
1516
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1517
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1518
+ }
1519
+ .transition-all {
1520
+ transition-property: all;
1521
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1522
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1523
+ }
1524
+ .transition-colors {
1525
+ transition-property:
1526
+ color,
1527
+ background-color,
1528
+ border-color,
1529
+ outline-color,
1530
+ text-decoration-color,
1531
+ fill,
1532
+ stroke,
1533
+ --tw-gradient-from,
1534
+ --tw-gradient-via,
1535
+ --tw-gradient-to;
1536
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1537
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1538
+ }
1539
+ .transition-opacity {
1540
+ transition-property: opacity;
1541
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1542
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1543
+ }
1544
+ .transition-shadow {
1545
+ transition-property: box-shadow;
1546
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1547
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1548
+ }
1549
+ .transition-transform {
1550
+ transition-property:
1551
+ transform,
1552
+ translate,
1553
+ scale,
1554
+ rotate;
1555
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1556
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1557
+ }
1558
+ .delay-75 {
1559
+ transition-delay: 75ms;
1560
+ }
1561
+ .duration-150 {
1562
+ --tw-duration: 150ms;
1563
+ transition-duration: 150ms;
1564
+ }
1565
+ .duration-200 {
1566
+ --tw-duration: 200ms;
1567
+ transition-duration: 200ms;
1568
+ }
1569
+ .ease-in-out {
1570
+ --tw-ease: var(--ease-in-out);
1571
+ transition-timing-function: var(--ease-in-out);
1572
+ }
1573
+ .outline-none {
1574
+ --tw-outline-style: none;
1575
+ outline-style: none;
1576
+ }
1577
+ .select-none {
1578
+ -webkit-user-select: none;
1579
+ -moz-user-select: none;
1580
+ user-select: none;
1581
+ }
1582
+ .group-hover\:opacity-100 {
1583
+ &:is(:where(.group):hover *) {
1584
+ @media (hover: hover) {
1585
+ opacity: 100%;
1586
+ }
1587
+ }
1588
+ }
1589
+ .first\:mt-0 {
1590
+ &:first-child {
1591
+ margin-top: calc(var(--spacing) * 0);
1592
+ }
1593
+ }
1594
+ .first\:rounded-tl-lg {
1595
+ &:first-child {
1596
+ border-top-left-radius: var(--radius);
1597
+ }
1598
+ }
1599
+ .first\:border-t {
1600
+ &:first-child {
1601
+ border-top-style: var(--tw-border-style);
1602
+ border-top-width: 1px;
1603
+ }
1604
+ }
1605
+ .last\:mb-0 {
1606
+ &:last-child {
1607
+ margin-bottom: calc(var(--spacing) * 0);
1608
+ }
1609
+ }
1610
+ .last\:rounded-tr-lg {
1611
+ &:last-child {
1612
+ border-top-right-radius: var(--radius);
1613
+ }
1614
+ }
1615
+ .last\:border-r {
1616
+ &:last-child {
1617
+ border-right-style: var(--tw-border-style);
1618
+ border-right-width: 1px;
1619
+ }
1620
+ }
1621
+ .empty\:hidden {
1622
+ &:empty {
1623
+ display: none;
1624
+ }
1625
+ }
1626
+ .empty\:before\:pointer-events-none {
1627
+ &:empty {
1628
+ &::before {
1629
+ content: var(--tw-content);
1630
+ pointer-events: none;
1631
+ }
1632
+ }
1633
+ }
1634
+ .empty\:before\:text-muted-foreground {
1635
+ &:empty {
1636
+ &::before {
1637
+ content: var(--tw-content);
1638
+ color: hsl(var(--muted-foreground));
1639
+ }
1640
+ }
1641
+ }
1642
+ .empty\:before\:content-\[attr\(data-placeholder\)\] {
1643
+ &:empty {
1644
+ &::before {
1645
+ --tw-content: attr(data-placeholder);
1646
+ content: var(--tw-content);
1647
+ }
1648
+ }
1649
+ }
1650
+ .hover\:bg-accent {
1651
+ &:hover {
1652
+ @media (hover: hover) {
1653
+ background-color: hsl(var(--accent));
1654
+ }
1655
+ }
1656
+ }
1657
+ .hover\:bg-accent\/10 {
1658
+ &:hover {
1659
+ @media (hover: hover) {
1660
+ background-color: hsl(var(--accent));
1661
+ @supports (color: color-mix(in lab, red, red)) {
1662
+ background-color: color-mix(in oklab, hsl(var(--accent)) 10%, transparent);
1663
+ }
1664
+ }
1665
+ }
1666
+ }
1667
+ .hover\:bg-accent\/50 {
1668
+ &:hover {
1669
+ @media (hover: hover) {
1670
+ background-color: hsl(var(--accent));
1671
+ @supports (color: color-mix(in lab, red, red)) {
1672
+ background-color: color-mix(in oklab, hsl(var(--accent)) 50%, transparent);
1673
+ }
1674
+ }
1675
+ }
1676
+ }
1677
+ .hover\:bg-destructive\/90 {
1678
+ &:hover {
1679
+ @media (hover: hover) {
1680
+ background-color: hsl(var(--destructive));
1681
+ @supports (color: color-mix(in lab, red, red)) {
1682
+ background-color: color-mix(in oklab, hsl(var(--destructive)) 90%, transparent);
1683
+ }
1684
+ }
1685
+ }
1686
+ }
1687
+ .hover\:bg-muted {
1688
+ &:hover {
1689
+ @media (hover: hover) {
1690
+ background-color: hsl(var(--muted));
1691
+ }
1692
+ }
1693
+ }
1694
+ .hover\:bg-muted-foreground\/15 {
1695
+ &:hover {
1696
+ @media (hover: hover) {
1697
+ background-color: hsl(var(--muted-foreground));
1698
+ @supports (color: color-mix(in lab, red, red)) {
1699
+ background-color: color-mix(in oklab, hsl(var(--muted-foreground)) 15%, transparent);
1700
+ }
1701
+ }
1702
+ }
1703
+ }
1704
+ .hover\:bg-muted\/50 {
1705
+ &:hover {
1706
+ @media (hover: hover) {
1707
+ background-color: hsl(var(--muted));
1708
+ @supports (color: color-mix(in lab, red, red)) {
1709
+ background-color: color-mix(in oklab, hsl(var(--muted)) 50%, transparent);
1710
+ }
1711
+ }
1712
+ }
1713
+ }
1714
+ .hover\:bg-primary\/90 {
1715
+ &:hover {
1716
+ @media (hover: hover) {
1717
+ background-color: hsl(var(--primary));
1718
+ @supports (color: color-mix(in lab, red, red)) {
1719
+ background-color: color-mix(in oklab, hsl(var(--primary)) 90%, transparent);
1720
+ }
1721
+ }
1722
+ }
1723
+ }
1724
+ .hover\:bg-secondary\/80 {
1725
+ &:hover {
1726
+ @media (hover: hover) {
1727
+ background-color: hsl(var(--secondary));
1728
+ @supports (color: color-mix(in lab, red, red)) {
1729
+ background-color: color-mix(in oklab, hsl(var(--secondary)) 80%, transparent);
1730
+ }
1731
+ }
1732
+ }
1733
+ }
1734
+ .hover\:bg-white\! {
1735
+ &:hover {
1736
+ @media (hover: hover) {
1737
+ background-color: var(--color-white) !important;
1738
+ }
1739
+ }
1740
+ }
1741
+ .hover\:bg-white\/10 {
1742
+ &:hover {
1743
+ @media (hover: hover) {
1744
+ background-color: color-mix(in srgb, #fff 10%, transparent);
1745
+ @supports (color: color-mix(in lab, red, red)) {
1746
+ background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
1747
+ }
1748
+ }
1749
+ }
1750
+ }
1751
+ .hover\:bg-white\/20 {
1752
+ &:hover {
1753
+ @media (hover: hover) {
1754
+ background-color: color-mix(in srgb, #fff 20%, transparent);
1755
+ @supports (color: color-mix(in lab, red, red)) {
1756
+ background-color: color-mix(in oklab, var(--color-white) 20%, transparent);
1757
+ }
1758
+ }
1759
+ }
1760
+ }
1761
+ .hover\:text-accent-foreground {
1762
+ &:hover {
1763
+ @media (hover: hover) {
1764
+ color: hsl(var(--accent-foreground));
1765
+ }
1766
+ }
1767
+ }
1768
+ .hover\:text-destructive {
1769
+ &:hover {
1770
+ @media (hover: hover) {
1771
+ color: hsl(var(--destructive));
1772
+ }
1773
+ }
1774
+ }
1775
+ .hover\:text-foreground {
1776
+ &:hover {
1777
+ @media (hover: hover) {
1778
+ color: hsl(var(--foreground));
1779
+ }
1780
+ }
1781
+ }
1782
+ .hover\:text-primary {
1783
+ &:hover {
1784
+ @media (hover: hover) {
1785
+ color: hsl(var(--primary));
1786
+ }
1787
+ }
1788
+ }
1789
+ .hover\:underline {
1790
+ &:hover {
1791
+ @media (hover: hover) {
1792
+ text-decoration-line: underline;
1793
+ }
1794
+ }
1795
+ }
1796
+ .hover\:opacity-75 {
1797
+ &:hover {
1798
+ @media (hover: hover) {
1799
+ opacity: 75%;
1800
+ }
1801
+ }
1802
+ }
1803
+ .hover\:opacity-90 {
1804
+ &:hover {
1805
+ @media (hover: hover) {
1806
+ opacity: 90%;
1807
+ }
1808
+ }
1809
+ }
1810
+ .hover\:opacity-100 {
1811
+ &:hover {
1812
+ @media (hover: hover) {
1813
+ opacity: 100%;
1814
+ }
1815
+ }
1816
+ }
1817
+ .focus\:ring-2 {
1818
+ &:focus {
1819
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1820
+ box-shadow:
1821
+ var(--tw-inset-shadow),
1822
+ var(--tw-inset-ring-shadow),
1823
+ var(--tw-ring-offset-shadow),
1824
+ var(--tw-ring-shadow),
1825
+ var(--tw-shadow);
1826
+ }
1827
+ }
1828
+ .focus\:ring-ring {
1829
+ &:focus {
1830
+ --tw-ring-color: hsl(var(--ring));
1831
+ }
1832
+ }
1833
+ .focus\:ring-offset-2 {
1834
+ &:focus {
1835
+ --tw-ring-offset-width: 2px;
1836
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1837
+ }
1838
+ }
1839
+ .focus\:outline-hidden {
1840
+ &:focus {
1841
+ --tw-outline-style: none;
1842
+ outline-style: none;
1843
+ @media (forced-colors: active) {
1844
+ outline: 2px solid transparent;
1845
+ outline-offset: 2px;
1846
+ }
1847
+ }
1848
+ }
1849
+ .focus\:outline-none {
1850
+ &:focus {
1851
+ --tw-outline-style: none;
1852
+ outline-style: none;
1853
+ }
1854
+ }
1855
+ .focus-visible\:border-ring {
1856
+ &:focus-visible {
1857
+ border-color: hsl(var(--ring));
1858
+ }
1859
+ }
1860
+ .focus-visible\:ring-0 {
1861
+ &:focus-visible {
1862
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1863
+ box-shadow:
1864
+ var(--tw-inset-shadow),
1865
+ var(--tw-inset-ring-shadow),
1866
+ var(--tw-ring-offset-shadow),
1867
+ var(--tw-ring-shadow),
1868
+ var(--tw-shadow);
1869
+ }
1870
+ }
1871
+ .focus-visible\:ring-\[3px\] {
1872
+ &:focus-visible {
1873
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1874
+ box-shadow:
1875
+ var(--tw-inset-shadow),
1876
+ var(--tw-inset-ring-shadow),
1877
+ var(--tw-ring-offset-shadow),
1878
+ var(--tw-ring-shadow),
1879
+ var(--tw-shadow);
1880
+ }
1881
+ }
1882
+ .focus-visible\:ring-destructive\/20 {
1883
+ &:focus-visible {
1884
+ --tw-ring-color: hsl(var(--destructive));
1885
+ @supports (color: color-mix(in lab, red, red)) {
1886
+ --tw-ring-color: color-mix(in oklab, hsl(var(--destructive)) 20%, transparent);
1887
+ }
1888
+ }
1889
+ }
1890
+ .focus-visible\:ring-ring\/50 {
1891
+ &:focus-visible {
1892
+ --tw-ring-color: hsl(var(--ring));
1893
+ @supports (color: color-mix(in lab, red, red)) {
1894
+ --tw-ring-color: color-mix(in oklab, hsl(var(--ring)) 50%, transparent);
1895
+ }
1896
+ }
1897
+ }
1898
+ .disabled\:pointer-events-none {
1899
+ &:disabled {
1900
+ pointer-events: none;
1901
+ }
1902
+ }
1903
+ .disabled\:invisible {
1904
+ &:disabled {
1905
+ visibility: hidden;
1906
+ }
1907
+ }
1908
+ .disabled\:opacity-50 {
1909
+ &:disabled {
1910
+ opacity: 50%;
1911
+ }
1912
+ }
1913
+ .has-\[\[contenteditable\]\:focus-visible\]\:border-ring {
1914
+ &:has(*:is([contenteditable]:focus-visible)) {
1915
+ border-color: hsl(var(--ring));
1916
+ }
1917
+ }
1918
+ .has-\[\[contenteditable\]\:focus-visible\]\:ring-2 {
1919
+ &:has(*:is([contenteditable]:focus-visible)) {
1920
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1921
+ box-shadow:
1922
+ var(--tw-inset-shadow),
1923
+ var(--tw-inset-ring-shadow),
1924
+ var(--tw-ring-offset-shadow),
1925
+ var(--tw-ring-shadow),
1926
+ var(--tw-shadow);
1927
+ }
1928
+ }
1929
+ .has-\[\[contenteditable\]\:focus-visible\]\:ring-ring\/20 {
1930
+ &:has(*:is([contenteditable]:focus-visible)) {
1931
+ --tw-ring-color: hsl(var(--ring));
1932
+ @supports (color: color-mix(in lab, red, red)) {
1933
+ --tw-ring-color: color-mix(in oklab, hsl(var(--ring)) 20%, transparent);
1934
+ }
1935
+ }
1936
+ }
1937
+ .has-\[\>svg\]\:px-2\.5 {
1938
+ &:has(> svg) {
1939
+ padding-inline: calc(var(--spacing) * 2.5);
1940
+ }
1941
+ }
1942
+ .has-\[\>svg\]\:px-3 {
1943
+ &:has(> svg) {
1944
+ padding-inline: calc(var(--spacing) * 3);
1945
+ }
1946
+ }
1947
+ .has-\[\>svg\]\:px-4 {
1948
+ &:has(> svg) {
1949
+ padding-inline: calc(var(--spacing) * 4);
1950
+ }
1951
+ }
1952
+ .aria-invalid\:border-destructive {
1953
+ &[aria-invalid=true] {
1954
+ border-color: hsl(var(--destructive));
1955
+ }
1956
+ }
1957
+ .aria-invalid\:ring-destructive\/20 {
1958
+ &[aria-invalid=true] {
1959
+ --tw-ring-color: hsl(var(--destructive));
1960
+ @supports (color: color-mix(in lab, red, red)) {
1961
+ --tw-ring-color: color-mix(in oklab, hsl(var(--destructive)) 20%, transparent);
1962
+ }
1963
+ }
1964
+ }
1965
+ .data-floating\:absolute {
1966
+ &[data-floating] {
1967
+ position: absolute;
1968
+ }
1969
+ }
1970
+ .data-floating\:rounded-md {
1971
+ &[data-floating] {
1972
+ border-radius: calc(var(--radius) - 2px);
1973
+ }
1974
+ }
1975
+ .data-floating\:border {
1976
+ &[data-floating] {
1977
+ border-style: var(--tw-border-style);
1978
+ border-width: 1px;
1979
+ }
1980
+ }
1981
+ .data-floating\:bg-background {
1982
+ &[data-floating] {
1983
+ background-color: hsl(var(--background));
1984
+ }
1985
+ }
1986
+ .data-floating\:p-1 {
1987
+ &[data-floating] {
1988
+ padding: calc(var(--spacing) * 1);
1989
+ }
1990
+ }
1991
+ .data-floating\:shadow-sm {
1992
+ &[data-floating] {
1993
+ --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));
1994
+ box-shadow:
1995
+ var(--tw-inset-shadow),
1996
+ var(--tw-inset-ring-shadow),
1997
+ var(--tw-ring-offset-shadow),
1998
+ var(--tw-ring-shadow),
1999
+ var(--tw-shadow);
2000
+ }
2001
+ }
2002
+ .data-\[active\]\:bg-muted {
2003
+ &[data-active] {
2004
+ background-color: hsl(var(--muted));
2005
+ }
2006
+ }
2007
+ .data-\[dragging\=true\]\:border-dashed {
2008
+ &[data-dragging=true] {
2009
+ --tw-border-style: dashed;
2010
+ border-style: dashed;
2011
+ }
2012
+ }
2013
+ .data-\[dragging\=true\]\:border-ring {
2014
+ &[data-dragging=true] {
2015
+ border-color: hsl(var(--ring));
2016
+ }
2017
+ }
2018
+ .data-\[dragging\=true\]\:bg-accent\/50 {
2019
+ &[data-dragging=true] {
2020
+ background-color: hsl(var(--accent));
2021
+ @supports (color: color-mix(in lab, red, red)) {
2022
+ background-color: color-mix(in oklab, hsl(var(--accent)) 50%, transparent);
2023
+ }
2024
+ }
2025
+ }
2026
+ .data-\[state\=open\]\:bg-accent {
2027
+ &[data-state=open] {
2028
+ background-color: hsl(var(--accent));
2029
+ }
2030
+ }
2031
+ .data-\[state\=open\]\:text-muted-foreground {
2032
+ &[data-state=open] {
2033
+ color: hsl(var(--muted-foreground));
2034
+ }
2035
+ }
2036
+ .sm\:max-w-3xl {
2037
+ @media (width >= 40rem) {
2038
+ max-width: var(--container-3xl);
2039
+ }
2040
+ }
2041
+ .sm\:max-w-lg {
2042
+ @media (width >= 40rem) {
2043
+ max-width: var(--container-lg);
2044
+ }
2045
+ }
2046
+ .sm\:flex-row {
2047
+ @media (width >= 40rem) {
2048
+ flex-direction: row;
2049
+ }
2050
+ }
2051
+ .sm\:justify-end {
2052
+ @media (width >= 40rem) {
2053
+ justify-content: flex-end;
2054
+ }
2055
+ }
2056
+ .sm\:text-left {
2057
+ @media (width >= 40rem) {
2058
+ text-align: left;
2059
+ }
2060
+ }
2061
+ .\@md\:flex-col {
2062
+ @container (width >= 28rem) {
2063
+ flex-direction: column;
2064
+ }
2065
+ }
2066
+ .dark\:border-input {
2067
+ &:is(.dark *) {
2068
+ border-color: hsl(var(--input));
2069
+ }
2070
+ }
2071
+ .dark\:border-muted-foreground\/15 {
2072
+ &:is(.dark *) {
2073
+ border-color: hsl(var(--muted-foreground));
2074
+ @supports (color: color-mix(in lab, red, red)) {
2075
+ border-color: color-mix(in oklab, hsl(var(--muted-foreground)) 15%, transparent);
2076
+ }
2077
+ }
2078
+ }
2079
+ .dark\:bg-background {
2080
+ &:is(.dark *) {
2081
+ background-color: hsl(var(--background));
2082
+ }
2083
+ }
2084
+ .dark\:bg-black\/20 {
2085
+ &:is(.dark *) {
2086
+ background-color: color-mix(in srgb, #000 20%, transparent);
2087
+ @supports (color: color-mix(in lab, red, red)) {
2088
+ background-color: color-mix(in oklab, var(--color-black) 20%, transparent);
2089
+ }
2090
+ }
2091
+ }
2092
+ .dark\:bg-blue-900\/30 {
2093
+ &:is(.dark *) {
2094
+ background-color: color-mix(in srgb, oklch(37.9% 0.146 265.522) 30%, transparent);
2095
+ @supports (color: color-mix(in lab, red, red)) {
2096
+ background-color: color-mix(in oklab, var(--color-blue-900) 30%, transparent);
2097
+ }
2098
+ }
2099
+ }
2100
+ .dark\:bg-destructive\/5 {
2101
+ &:is(.dark *) {
2102
+ background-color: hsl(var(--destructive));
2103
+ @supports (color: color-mix(in lab, red, red)) {
2104
+ background-color: color-mix(in oklab, hsl(var(--destructive)) 5%, transparent);
2105
+ }
2106
+ }
2107
+ }
2108
+ .dark\:bg-destructive\/60 {
2109
+ &:is(.dark *) {
2110
+ background-color: hsl(var(--destructive));
2111
+ @supports (color: color-mix(in lab, red, red)) {
2112
+ background-color: color-mix(in oklab, hsl(var(--destructive)) 60%, transparent);
2113
+ }
2114
+ }
2115
+ }
2116
+ .dark\:bg-green-900\/30 {
2117
+ &:is(.dark *) {
2118
+ background-color: color-mix(in srgb, oklch(39.3% 0.095 152.535) 30%, transparent);
2119
+ @supports (color: color-mix(in lab, red, red)) {
2120
+ background-color: color-mix(in oklab, var(--color-green-900) 30%, transparent);
2121
+ }
2122
+ }
2123
+ }
2124
+ .dark\:bg-indigo-900\/30 {
2125
+ &:is(.dark *) {
2126
+ background-color: color-mix(in srgb, oklch(35.9% 0.144 278.697) 30%, transparent);
2127
+ @supports (color: color-mix(in lab, red, red)) {
2128
+ background-color: color-mix(in oklab, var(--color-indigo-900) 30%, transparent);
2129
+ }
2130
+ }
2131
+ }
2132
+ .dark\:bg-input\/30 {
2133
+ &:is(.dark *) {
2134
+ background-color: hsl(var(--input));
2135
+ @supports (color: color-mix(in lab, red, red)) {
2136
+ background-color: color-mix(in oklab, hsl(var(--input)) 30%, transparent);
2137
+ }
2138
+ }
2139
+ }
2140
+ .dark\:bg-muted-foreground\/20 {
2141
+ &:is(.dark *) {
2142
+ background-color: hsl(var(--muted-foreground));
2143
+ @supports (color: color-mix(in lab, red, red)) {
2144
+ background-color: color-mix(in oklab, hsl(var(--muted-foreground)) 20%, transparent);
2145
+ }
2146
+ }
2147
+ }
2148
+ .dark\:bg-orange-900\/30 {
2149
+ &:is(.dark *) {
2150
+ background-color: color-mix(in srgb, oklch(40.8% 0.123 38.172) 30%, transparent);
2151
+ @supports (color: color-mix(in lab, red, red)) {
2152
+ background-color: color-mix(in oklab, var(--color-orange-900) 30%, transparent);
2153
+ }
2154
+ }
2155
+ }
2156
+ .dark\:bg-purple-900\/30 {
2157
+ &:is(.dark *) {
2158
+ background-color: color-mix(in srgb, oklch(38.1% 0.176 304.987) 30%, transparent);
2159
+ @supports (color: color-mix(in lab, red, red)) {
2160
+ background-color: color-mix(in oklab, var(--color-purple-900) 30%, transparent);
2161
+ }
2162
+ }
2163
+ }
2164
+ .dark\:bg-red-900\/30 {
2165
+ &:is(.dark *) {
2166
+ background-color: color-mix(in srgb, oklch(39.6% 0.141 25.723) 30%, transparent);
2167
+ @supports (color: color-mix(in lab, red, red)) {
2168
+ background-color: color-mix(in oklab, var(--color-red-900) 30%, transparent);
2169
+ }
2170
+ }
2171
+ }
2172
+ .dark\:bg-teal-900\/30 {
2173
+ &:is(.dark *) {
2174
+ background-color: color-mix(in srgb, oklch(38.6% 0.063 188.416) 30%, transparent);
2175
+ @supports (color: color-mix(in lab, red, red)) {
2176
+ background-color: color-mix(in oklab, var(--color-teal-900) 30%, transparent);
2177
+ }
2178
+ }
2179
+ }
2180
+ .dark\:bg-yellow-900\/30 {
2181
+ &:is(.dark *) {
2182
+ background-color: color-mix(in srgb, oklch(42.1% 0.095 57.708) 30%, transparent);
2183
+ @supports (color: color-mix(in lab, red, red)) {
2184
+ background-color: color-mix(in oklab, var(--color-yellow-900) 30%, transparent);
2185
+ }
2186
+ }
2187
+ }
2188
+ .dark\:stroke-\[2\.5px\] {
2189
+ &:is(.dark *) {
2190
+ stroke-width: 2.5px;
2191
+ }
2192
+ }
2193
+ .dark\:text-blue-300 {
2194
+ &:is(.dark *) {
2195
+ color: var(--color-blue-300);
2196
+ }
2197
+ }
2198
+ .dark\:text-green-300 {
2199
+ &:is(.dark *) {
2200
+ color: var(--color-green-300);
2201
+ }
2202
+ }
2203
+ .dark\:text-indigo-300 {
2204
+ &:is(.dark *) {
2205
+ color: var(--color-indigo-300);
2206
+ }
2207
+ }
2208
+ .dark\:text-orange-300 {
2209
+ &:is(.dark *) {
2210
+ color: var(--color-orange-300);
2211
+ }
2212
+ }
2213
+ .dark\:text-purple-300 {
2214
+ &:is(.dark *) {
2215
+ color: var(--color-purple-300);
2216
+ }
2217
+ }
2218
+ .dark\:text-red-200 {
2219
+ &:is(.dark *) {
2220
+ color: var(--color-red-200);
2221
+ }
2222
+ }
2223
+ .dark\:text-red-300 {
2224
+ &:is(.dark *) {
2225
+ color: var(--color-red-300);
2226
+ }
2227
+ }
2228
+ .dark\:text-teal-300 {
2229
+ &:is(.dark *) {
2230
+ color: var(--color-teal-300);
2231
+ }
2232
+ }
2233
+ .dark\:text-yellow-300 {
2234
+ &:is(.dark *) {
2235
+ color: var(--color-yellow-300);
2236
+ }
2237
+ }
2238
+ .dark\:hover\:bg-accent {
2239
+ &:is(.dark *) {
2240
+ &:hover {
2241
+ @media (hover: hover) {
2242
+ background-color: hsl(var(--accent));
2243
+ }
2244
+ }
2245
+ }
2246
+ }
2247
+ .dark\:hover\:bg-accent\/50 {
2248
+ &:is(.dark *) {
2249
+ &:hover {
2250
+ @media (hover: hover) {
2251
+ background-color: hsl(var(--accent));
2252
+ @supports (color: color-mix(in lab, red, red)) {
2253
+ background-color: color-mix(in oklab, hsl(var(--accent)) 50%, transparent);
2254
+ }
2255
+ }
2256
+ }
2257
+ }
2258
+ }
2259
+ .dark\:hover\:bg-input\/50 {
2260
+ &:is(.dark *) {
2261
+ &:hover {
2262
+ @media (hover: hover) {
2263
+ background-color: hsl(var(--input));
2264
+ @supports (color: color-mix(in lab, red, red)) {
2265
+ background-color: color-mix(in oklab, hsl(var(--input)) 50%, transparent);
2266
+ }
2267
+ }
2268
+ }
2269
+ }
2270
+ }
2271
+ .dark\:hover\:bg-muted-foreground\/30 {
2272
+ &:is(.dark *) {
2273
+ &:hover {
2274
+ @media (hover: hover) {
2275
+ background-color: hsl(var(--muted-foreground));
2276
+ @supports (color: color-mix(in lab, red, red)) {
2277
+ background-color: color-mix(in oklab, hsl(var(--muted-foreground)) 30%, transparent);
2278
+ }
2279
+ }
2280
+ }
2281
+ }
2282
+ }
2283
+ .dark\:focus-visible\:ring-destructive\/40 {
2284
+ &:is(.dark *) {
2285
+ &:focus-visible {
2286
+ --tw-ring-color: hsl(var(--destructive));
2287
+ @supports (color: color-mix(in lab, red, red)) {
2288
+ --tw-ring-color: color-mix(in oklab, hsl(var(--destructive)) 40%, transparent);
2289
+ }
2290
+ }
2291
+ }
2292
+ }
2293
+ .dark\:aria-invalid\:ring-destructive\/40 {
2294
+ &:is(.dark *) {
2295
+ &[aria-invalid=true] {
2296
+ --tw-ring-color: hsl(var(--destructive));
2297
+ @supports (color: color-mix(in lab, red, red)) {
2298
+ --tw-ring-color: color-mix(in oklab, hsl(var(--destructive)) 40%, transparent);
2299
+ }
2300
+ }
2301
+ }
2302
+ }
2303
+ .\[\&_svg\]\:pointer-events-none {
2304
+ & svg {
2305
+ pointer-events: none;
2306
+ }
2307
+ }
2308
+ .\[\&_svg\]\:shrink-0 {
2309
+ & svg {
2310
+ flex-shrink: 0;
2311
+ }
2312
+ }
2313
+ .\[\&_svg\]\:text-background {
2314
+ & svg {
2315
+ color: hsl(var(--background));
2316
+ }
2317
+ }
2318
+ .\[\&_svg\]\:text-black {
2319
+ & svg {
2320
+ color: var(--color-black);
2321
+ }
2322
+ }
2323
+ .hover\:\[\&_svg\]\:text-destructive {
2324
+ &:hover {
2325
+ @media (hover: hover) {
2326
+ & svg {
2327
+ color: hsl(var(--destructive));
2328
+ }
2329
+ }
2330
+ }
2331
+ }
2332
+ .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 {
2333
+ & svg:not([class*=size-]) {
2334
+ width: calc(var(--spacing) * 4);
2335
+ height: calc(var(--spacing) * 4);
2336
+ }
2337
+ }
2338
+ .\[\[align\=center\]\]\:text-center {
2339
+ &:is([align=center]) {
2340
+ text-align: center;
2341
+ }
2342
+ }
2343
+ .\[\[align\=right\]\]\:text-right {
2344
+ &:is([align=right]) {
2345
+ text-align: right;
2346
+ }
2347
+ }
2348
+ .\[\&\:last-child\>td\:first-child\]\:rounded-bl-lg {
2349
+ &:last-child > td:first-child {
2350
+ border-bottom-left-radius: var(--radius);
2351
+ }
2352
+ }
2353
+ .\[\&\:last-child\>td\:last-child\]\:rounded-br-lg {
2354
+ &:last-child > td:last-child {
2355
+ border-bottom-right-radius: var(--radius);
2356
+ }
2357
+ }
2358
+ .\[\&\:where\(\>\*\)\]\:col-start-2 {
2359
+ &:where(> *) {
2360
+ grid-column-start: 2;
2361
+ }
2362
+ }
2363
+ .only\:\[\&\>\#attachment-tile\]\:size-24 {
2364
+ &:only-child {
2365
+ & > #attachment-tile {
2366
+ width: calc(var(--spacing) * 24);
2367
+ height: calc(var(--spacing) * 24);
2368
+ }
2369
+ }
2370
+ }
2371
+ .\[\&\>a\]\:text-xs {
2372
+ & > a {
2373
+ font-size: var(--text-xs);
2374
+ line-height: var(--tw-leading, var(--text-xs--line-height));
2375
+ }
2376
+ }
2377
+ .\[\&\>a\]\:no-underline {
2378
+ & > a {
2379
+ text-decoration-line: none;
2380
+ }
2381
+ }
2382
+ .\[\&\>button\]\:rounded-full {
2383
+ & > button {
2384
+ border-radius: calc(infinity * 1px);
2385
+ }
2386
+ }
2387
+ .\[\&\>button\]\:bg-foreground\/60 {
2388
+ & > button {
2389
+ background-color: hsl(var(--foreground));
2390
+ @supports (color: color-mix(in lab, red, red)) {
2391
+ background-color: color-mix(in oklab, hsl(var(--foreground)) 60%, transparent);
2392
+ }
2393
+ }
2394
+ }
2395
+ .\[\&\>button\]\:p-1 {
2396
+ & > button {
2397
+ padding: calc(var(--spacing) * 1);
2398
+ }
2399
+ }
2400
+ .\[\&\>button\]\:opacity-100 {
2401
+ & > button {
2402
+ opacity: 100%;
2403
+ }
2404
+ }
2405
+ .\[\&\>button\]\:ring-0\! {
2406
+ & > button {
2407
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor) !important;
2408
+ box-shadow:
2409
+ var(--tw-inset-shadow),
2410
+ var(--tw-inset-ring-shadow),
2411
+ var(--tw-ring-offset-shadow),
2412
+ var(--tw-ring-shadow),
2413
+ var(--tw-shadow) !important;
2414
+ }
2415
+ }
2416
+ .\[\&\>button\]\:hover\:\[\&_svg\]\:text-destructive {
2417
+ & > button {
2418
+ &:hover {
2419
+ @media (hover: hover) {
2420
+ & svg {
2421
+ color: hsl(var(--destructive));
2422
+ }
2423
+ }
2424
+ }
2425
+ }
2426
+ }
2427
+ .\[\&\>li\]\:mt-0\.5 {
2428
+ & > li {
2429
+ margin-top: calc(var(--spacing) * 0.5);
2430
+ }
2431
+ }
2432
+ .\[\&\>li\]\:mt-2 {
2433
+ & > li {
2434
+ margin-top: calc(var(--spacing) * 2);
2435
+ }
2436
+ }
2437
+ .\[\&\>span\]\:text-xs {
2438
+ & > span {
2439
+ font-size: var(--text-xs);
2440
+ line-height: var(--tw-leading, var(--text-xs--line-height));
2441
+ }
2442
+ }
2443
+ }
2444
+ @layer properties;
2445
+ @layer theme;
2446
+ @layer base {
2447
+ :where(.aui-thread-root, .aui-modal-content) *,
2448
+ :where(.aui-thread-root, .aui-modal-content) ::after,
2449
+ :where(.aui-thread-root, .aui-modal-content) ::before,
2450
+ :where(.aui-thread-root, .aui-modal-content) ::backdrop,
2451
+ :where(.aui-thread-root, .aui-modal-content) ::file-selector-button {
2452
+ box-sizing: border-box;
2453
+ margin: 0;
2454
+ padding: 0;
2455
+ border: 0 solid;
2456
+ }
2457
+ :where(.aui-thread-root, .aui-modal-content) html,
2458
+ :where(.aui-thread-root, .aui-modal-content) :host {
2459
+ line-height: 1.5;
2460
+ -webkit-text-size-adjust: 100%;
2461
+ -moz-tab-size: 4;
2462
+ -o-tab-size: 4;
2463
+ tab-size: 4;
2464
+ 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");
2465
+ font-feature-settings: var(--default-font-feature-settings, normal);
2466
+ font-variation-settings: var(--default-font-variation-settings, normal);
2467
+ -webkit-tap-highlight-color: transparent;
2468
+ }
2469
+ :where(.aui-thread-root, .aui-modal-content) hr {
2470
+ height: 0;
2471
+ color: inherit;
2472
+ border-top-width: 1px;
2473
+ }
2474
+ :where(.aui-thread-root, .aui-modal-content) abbr:where([title]) {
2475
+ -webkit-text-decoration: underline dotted;
2476
+ text-decoration: underline dotted;
2477
+ }
2478
+ :where(.aui-thread-root, .aui-modal-content) h1,
2479
+ :where(.aui-thread-root, .aui-modal-content) h2,
2480
+ :where(.aui-thread-root, .aui-modal-content) h3,
2481
+ :where(.aui-thread-root, .aui-modal-content) h4,
2482
+ :where(.aui-thread-root, .aui-modal-content) h5,
2483
+ :where(.aui-thread-root, .aui-modal-content) h6 {
2484
+ font-size: inherit;
2485
+ font-weight: inherit;
2486
+ }
2487
+ :where(.aui-thread-root, .aui-modal-content) a {
2488
+ color: inherit;
2489
+ -webkit-text-decoration: inherit;
2490
+ text-decoration: inherit;
2491
+ }
2492
+ :where(.aui-thread-root, .aui-modal-content) b,
2493
+ :where(.aui-thread-root, .aui-modal-content) strong {
2494
+ font-weight: bolder;
2495
+ }
2496
+ :where(.aui-thread-root, .aui-modal-content) code,
2497
+ :where(.aui-thread-root, .aui-modal-content) kbd,
2498
+ :where(.aui-thread-root, .aui-modal-content) samp,
2499
+ :where(.aui-thread-root, .aui-modal-content) pre {
2500
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
2501
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
2502
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
2503
+ font-size: 1em;
2504
+ }
2505
+ :where(.aui-thread-root, .aui-modal-content) small {
2506
+ font-size: 80%;
2507
+ }
2508
+ :where(.aui-thread-root, .aui-modal-content) sub,
2509
+ :where(.aui-thread-root, .aui-modal-content) sup {
2510
+ font-size: 75%;
2511
+ line-height: 0;
2512
+ position: relative;
2513
+ vertical-align: baseline;
2514
+ }
2515
+ :where(.aui-thread-root, .aui-modal-content) sub {
2516
+ bottom: -0.25em;
2517
+ }
2518
+ :where(.aui-thread-root, .aui-modal-content) sup {
2519
+ top: -0.5em;
2520
+ }
2521
+ :where(.aui-thread-root, .aui-modal-content) table {
2522
+ text-indent: 0;
2523
+ border-color: inherit;
2524
+ border-collapse: collapse;
2525
+ }
2526
+ :where(.aui-thread-root, .aui-modal-content) :-moz-focusring {
2527
+ outline: auto;
2528
+ }
2529
+ :where(.aui-thread-root, .aui-modal-content) progress {
2530
+ vertical-align: baseline;
2531
+ }
2532
+ :where(.aui-thread-root, .aui-modal-content) summary {
2533
+ display: list-item;
2534
+ }
2535
+ :where(.aui-thread-root, .aui-modal-content) ol,
2536
+ :where(.aui-thread-root, .aui-modal-content) ul,
2537
+ :where(.aui-thread-root, .aui-modal-content) menu {
2538
+ list-style: none;
2539
+ }
2540
+ :where(.aui-thread-root, .aui-modal-content) img,
2541
+ :where(.aui-thread-root, .aui-modal-content) svg,
2542
+ :where(.aui-thread-root, .aui-modal-content) video,
2543
+ :where(.aui-thread-root, .aui-modal-content) canvas,
2544
+ :where(.aui-thread-root, .aui-modal-content) audio,
2545
+ :where(.aui-thread-root, .aui-modal-content) iframe,
2546
+ :where(.aui-thread-root, .aui-modal-content) embed,
2547
+ :where(.aui-thread-root, .aui-modal-content) object {
2548
+ display: block;
2549
+ vertical-align: middle;
2550
+ }
2551
+ :where(.aui-thread-root, .aui-modal-content) img,
2552
+ :where(.aui-thread-root, .aui-modal-content) video {
2553
+ max-width: 100%;
2554
+ height: auto;
2555
+ }
2556
+ :where(.aui-thread-root, .aui-modal-content) button,
2557
+ :where(.aui-thread-root, .aui-modal-content) input,
2558
+ :where(.aui-thread-root, .aui-modal-content) select,
2559
+ :where(.aui-thread-root, .aui-modal-content) optgroup,
2560
+ :where(.aui-thread-root, .aui-modal-content) textarea,
2561
+ :where(.aui-thread-root, .aui-modal-content) ::file-selector-button {
2562
+ font: inherit;
2563
+ font-feature-settings: inherit;
2564
+ font-variation-settings: inherit;
2565
+ letter-spacing: inherit;
2566
+ color: inherit;
2567
+ border-radius: 0;
2568
+ background-color: transparent;
2569
+ opacity: 1;
2570
+ }
2571
+ :where(.aui-thread-root, .aui-modal-content) :where(select:is([multiple], [size])) optgroup {
2572
+ font-weight: bolder;
2573
+ }
2574
+ :where(.aui-thread-root, .aui-modal-content) :where(select:is([multiple], [size])) optgroup option {
2575
+ padding-inline-start: 20px;
2576
+ }
2577
+ :where(.aui-thread-root, .aui-modal-content) ::file-selector-button {
2578
+ margin-inline-end: 4px;
2579
+ }
2580
+ :where(.aui-thread-root, .aui-modal-content) ::-moz-placeholder {
2581
+ opacity: 1;
2582
+ }
2583
+ :where(.aui-thread-root, .aui-modal-content) ::placeholder {
2584
+ opacity: 1;
2585
+ }
2586
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
2587
+ :where(.aui-thread-root, .aui-modal-content) ::-moz-placeholder {
2588
+ color: currentcolor;
2589
+ }
2590
+ :where(.aui-thread-root, .aui-modal-content) ::placeholder {
2591
+ color: currentcolor;
2592
+ }
2593
+ @supports (color: color-mix(in lab, red, red)) {
2594
+ :where(.aui-thread-root, .aui-modal-content) ::-moz-placeholder {
2595
+ color: currentcolor;
2596
+ @supports (color: color-mix(in lab, red, red)) {
2597
+ color: color-mix(in oklab, currentcolor 50%, transparent);
2598
+ }
2599
+ }
2600
+ :where(.aui-thread-root, .aui-modal-content) ::placeholder {
2601
+ color: currentcolor;
2602
+ @supports (color: color-mix(in lab, red, red)) {
2603
+ color: color-mix(in oklab, currentcolor 50%, transparent);
2604
+ }
2605
+ }
2606
+ }
2607
+ }
2608
+ :where(.aui-thread-root, .aui-modal-content) textarea {
2609
+ resize: vertical;
2610
+ }
2611
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-search-decoration {
2612
+ -webkit-appearance: none;
2613
+ }
2614
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-date-and-time-value {
2615
+ min-height: 1lh;
2616
+ text-align: inherit;
2617
+ }
2618
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-datetime-edit {
2619
+ display: inline-flex;
2620
+ }
2621
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-datetime-edit-fields-wrapper {
2622
+ padding: 0;
2623
+ }
2624
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-datetime-edit,
2625
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-datetime-edit-year-field,
2626
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-datetime-edit-month-field,
2627
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-datetime-edit-day-field,
2628
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-datetime-edit-hour-field,
2629
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-datetime-edit-minute-field,
2630
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-datetime-edit-second-field,
2631
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-datetime-edit-millisecond-field,
2632
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-datetime-edit-meridiem-field {
2633
+ padding-block: 0;
2634
+ }
2635
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-calendar-picker-indicator {
2636
+ line-height: 1;
2637
+ }
2638
+ :where(.aui-thread-root, .aui-modal-content) :-moz-ui-invalid {
2639
+ box-shadow: none;
2640
+ }
2641
+ :where(.aui-thread-root, .aui-modal-content) button,
2642
+ :where(.aui-thread-root, .aui-modal-content) input:where([type=button], [type=reset], [type=submit]),
2643
+ :where(.aui-thread-root, .aui-modal-content) ::file-selector-button {
2644
+ -webkit-appearance: button;
2645
+ -moz-appearance: button;
2646
+ appearance: button;
2647
+ }
2648
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-inner-spin-button,
2649
+ :where(.aui-thread-root, .aui-modal-content) ::-webkit-outer-spin-button {
2650
+ height: auto;
2651
+ }
2652
+ :where(.aui-thread-root, .aui-modal-content) [hidden]:where(:not([hidden=until-found])) {
2653
+ display: none !important;
2654
+ }
2655
+ }
2656
+ :root {
2657
+ --background: 0 0% 100%;
2658
+ --foreground: 240 10% 3.9%;
2659
+ --card: 0 0% 100%;
2660
+ --card-foreground: 240 10% 3.9%;
2661
+ --popover: 0 0% 100%;
2662
+ --popover-foreground: 240 10% 3.9%;
2663
+ --primary: 240 5.9% 10%;
2664
+ --primary-foreground: 0 0% 98%;
2665
+ --secondary: 240 4.8% 95.9%;
2666
+ --secondary-foreground: 240 5.9% 10%;
2667
+ --muted: 240 4.8% 95.9%;
2668
+ --muted-foreground: 240 3.8% 46.1%;
2669
+ --accent: 240 4.8% 95.9%;
2670
+ --accent-foreground: 240 5.9% 10%;
2671
+ --destructive: 0 84.2% 60.2%;
2672
+ --destructive-foreground: 0 0% 98%;
2673
+ --border: 240 5.9% 90%;
2674
+ --input: 240 5.9% 90%;
2675
+ --ring: 240 10% 3.9%;
2676
+ --chart-1: 12 76% 61%;
2677
+ --chart-2: 173 58% 39%;
2678
+ --chart-3: 197 37% 24%;
2679
+ --chart-4: 43 74% 66%;
2680
+ --chart-5: 27 87% 67%;
2681
+ --sidebar: 0 0% 100%;
2682
+ --sidebar-foreground: 240 10% 3.9%;
2683
+ --sidebar-primary: 240 5.9% 10%;
2684
+ --sidebar-primary-foreground: 0 0% 98%;
2685
+ --sidebar-accent: 240 4.8% 95.9%;
2686
+ --sidebar-accent-foreground: 240 5.9% 10%;
2687
+ --sidebar-border: 240 5.9% 90%;
2688
+ --sidebar-ring: 240 10% 3.9%;
2689
+ --radius: 0.5rem;
2690
+ }
2691
+ .dark {
2692
+ --background: 240 10% 3.9%;
2693
+ --foreground: 0 0% 98%;
2694
+ --card: 240 10% 3.9%;
2695
+ --card-foreground: 0 0% 98%;
2696
+ --popover: 240 10% 3.9%;
2697
+ --popover-foreground: 0 0% 98%;
2698
+ --primary: 0 0% 98%;
2699
+ --primary-foreground: 240 5.9% 10%;
2700
+ --secondary: 240 3.7% 15.9%;
2701
+ --secondary-foreground: 0 0% 98%;
2702
+ --muted: 240 3.7% 15.9%;
2703
+ --muted-foreground: 240 5% 64.9%;
2704
+ --accent: 240 3.7% 15.9%;
2705
+ --accent-foreground: 0 0% 98%;
2706
+ --destructive: 0 62.8% 30.6%;
2707
+ --destructive-foreground: 0 0% 98%;
2708
+ --border: 240 3.7% 15.9%;
2709
+ --input: 240 3.7% 15.9%;
2710
+ --ring: 240 4.9% 83.9%;
2711
+ --chart-1: 220 70% 50%;
2712
+ --chart-2: 160 60% 45%;
2713
+ --chart-3: 30 80% 55%;
2714
+ --chart-4: 280 65% 60%;
2715
+ --chart-5: 340 75% 55%;
2716
+ --sidebar: 240 10% 3.9%;
2717
+ --sidebar-foreground: 0 0% 98%;
2718
+ --sidebar-primary: 220 70% 50%;
2719
+ --sidebar-primary-foreground: 0 0% 98%;
2720
+ --sidebar-accent: 240 3.7% 15.9%;
2721
+ --sidebar-accent-foreground: 0 0% 98%;
2722
+ --sidebar-border: 240 3.7% 15.9%;
2723
+ --sidebar-ring: 240 4.9% 83.9%;
2724
+ }
2725
+ @property --tw-animation-delay { syntax: "*"; inherits: false; initial-value: 0s; }
2726
+ @property --tw-animation-direction { syntax: "*"; inherits: false; initial-value: normal; }
2727
+ @property --tw-animation-duration { syntax: "*"; inherits: false; }
2728
+ @property --tw-animation-fill-mode { syntax: "*"; inherits: false; initial-value: none; }
2729
+ @property --tw-animation-iteration-count { syntax: "*"; inherits: false; initial-value: 1; }
2730
+ @property --tw-enter-blur { syntax: "*"; inherits: false; initial-value: 0; }
2731
+ @property --tw-enter-opacity { syntax: "*"; inherits: false; initial-value: 1; }
2732
+ @property --tw-enter-rotate { syntax: "*"; inherits: false; initial-value: 0; }
2733
+ @property --tw-enter-scale { syntax: "*"; inherits: false; initial-value: 1; }
2734
+ @property --tw-enter-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
2735
+ @property --tw-enter-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
2736
+ @property --tw-exit-blur { syntax: "*"; inherits: false; initial-value: 0; }
2737
+ @property --tw-exit-opacity { syntax: "*"; inherits: false; initial-value: 1; }
2738
+ @property --tw-exit-rotate { syntax: "*"; inherits: false; initial-value: 0; }
2739
+ @property --tw-exit-scale { syntax: "*"; inherits: false; initial-value: 1; }
2740
+ @property --tw-exit-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
2741
+ @property --tw-exit-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
2742
+ @property --shimmer-track-height { syntax: "<length>"; inherits: true; initial-value: 200px; }
2743
+ @property --shimmer-angle { syntax: "<angle>"; inherits: true; initial-value: 15deg; }
2744
+ :where(.aui-thread-root, .aui-modal-content) {
2745
+ color: var(--color-foreground);
2746
+ }
2747
+ :where(.aui-thread-root, .aui-modal-content) * {
2748
+ border-color: var(--color-border);
2749
+ outline-color: hsl(var(--ring));
2750
+ @supports (color: color-mix(in lab, red, red)) {
2751
+ outline-color: color-mix(in srgb, hsl(var(--ring)) 50%, transparent);
2752
+ }
2753
+ }
2754
+ @supports (color: color-mix(in lab, red, red)) {
2755
+ :where(.aui-thread-root, .aui-modal-content) * {
2756
+ outline-color: color-mix(in srgb, hsl(var(--ring)) 50%, transparent);
2757
+ @supports (color: color-mix(in lab, red, red)) {
2758
+ outline-color: color-mix(in oklab, var(--color-ring) 50%, transparent);
2759
+ }
2760
+ }
2761
+ }
2762
+ .aui-assistant-action-bar-root {
2763
+ grid-column-start: 3;
2764
+ grid-row-start: 2;
2765
+ margin-left: calc(var(--spacing) * -1);
2766
+ display: flex;
2767
+ gap: calc(var(--spacing) * 1);
2768
+ color: var(--color-muted-foreground);
2769
+ }
2770
+ .aui-assistant-action-bar-root[data-floating] {
2771
+ position: absolute;
2772
+ }
2773
+ .aui-assistant-action-bar-root[data-floating] {
2774
+ border-radius: var(--radius-md);
2775
+ }
2776
+ .aui-assistant-action-bar-root[data-floating] {
2777
+ border-style: var(--tw-border-style);
2778
+ border-width: 1px;
2779
+ }
2780
+ .aui-assistant-action-bar-root[data-floating] {
2781
+ background-color: var(--color-background);
2782
+ }
2783
+ .aui-assistant-action-bar-root[data-floating] {
2784
+ padding: calc(var(--spacing) * 1);
2785
+ }
2786
+ .aui-assistant-action-bar-root[data-floating] {
2787
+ --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));
2788
+ box-shadow:
2789
+ var(--tw-inset-shadow),
2790
+ var(--tw-inset-ring-shadow),
2791
+ var(--tw-ring-offset-shadow),
2792
+ var(--tw-ring-shadow),
2793
+ var(--tw-shadow);
2794
+ }
2795
+ .aui-assistant-message-content {
2796
+ padding-inline: calc(var(--spacing) * 2);
2797
+ --tw-leading: var(--leading-relaxed);
2798
+ line-height: var(--leading-relaxed);
2799
+ overflow-wrap: break-word;
2800
+ color: var(--color-foreground);
2801
+ }
2802
+ .aui-assistant-message-footer {
2803
+ margin-top: calc(var(--spacing) * 1);
2804
+ margin-left: calc(var(--spacing) * 2);
2805
+ display: flex;
2806
+ }
2807
+ .aui-assistant-message-root {
2808
+ position: relative;
2809
+ margin-inline: auto;
2810
+ width: 100%;
2811
+ max-width: var(--thread-max-width);
2812
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
2813
+ padding-block: calc(var(--spacing) * 3);
2814
+ --tw-duration: 150ms;
2815
+ transition-duration: 150ms;
2816
+ --tw-enter-opacity: 0;
2817
+ --tw-enter-translate-y: calc(1*var(--spacing));
2818
+ }
2819
+ .aui-attachment-add-icon {
2820
+ width: calc(var(--spacing) * 5);
2821
+ height: calc(var(--spacing) * 5);
2822
+ stroke-width: 1.5px;
2823
+ }
2824
+ .aui-attachment-preview {
2825
+ position: relative;
2826
+ margin-inline: auto;
2827
+ display: flex;
2828
+ max-height: 80dvh;
2829
+ width: 100%;
2830
+ align-items: center;
2831
+ justify-content: center;
2832
+ overflow: hidden;
2833
+ background-color: var(--color-background);
2834
+ }
2835
+ .aui-attachment-preview-dialog-content {
2836
+ padding: calc(var(--spacing) * 2);
2837
+ }
2838
+ @media (width >= 40rem) {
2839
+ .aui-attachment-preview-dialog-content {
2840
+ max-width: var(--container-3xl);
2841
+ }
2842
+ }
2843
+ .aui-attachment-preview-dialog-content svg {
2844
+ color: var(--color-background);
2845
+ }
2846
+ .aui-attachment-preview-dialog-content > button {
2847
+ border-radius: calc(infinity * 1px);
2848
+ }
2849
+ .aui-attachment-preview-dialog-content > button {
2850
+ background-color: hsl(var(--foreground));
2851
+ @supports (color: color-mix(in lab, red, red)) {
2852
+ background-color: color-mix(in srgb, hsl(var(--foreground)) 60%, transparent);
2853
+ }
2854
+ }
2855
+ @supports (color: color-mix(in lab, red, red)) {
2856
+ .aui-attachment-preview-dialog-content > button {
2857
+ background-color: color-mix(in srgb, hsl(var(--foreground)) 60%, transparent);
2858
+ @supports (color: color-mix(in lab, red, red)) {
2859
+ background-color: color-mix(in oklab, var(--color-foreground) 60%, transparent);
2860
+ }
2861
+ }
2862
+ }
2863
+ .aui-attachment-preview-dialog-content > button {
2864
+ padding: calc(var(--spacing) * 1);
2865
+ }
2866
+ .aui-attachment-preview-dialog-content > button {
2867
+ opacity: 100%;
2868
+ }
2869
+ .aui-attachment-preview-dialog-content > button {
2870
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor) !important;
2871
+ box-shadow:
2872
+ var(--tw-inset-shadow),
2873
+ var(--tw-inset-ring-shadow),
2874
+ var(--tw-ring-offset-shadow),
2875
+ var(--tw-ring-shadow),
2876
+ var(--tw-shadow) !important;
2877
+ }
2878
+ @media (hover: hover) {
2879
+ .aui-attachment-preview-dialog-content > button:hover svg {
2880
+ color: var(--color-destructive);
2881
+ }
2882
+ }
2883
+ .aui-attachment-preview-dialog-content {
2884
+ position: absolute;
2885
+ width: 1px;
2886
+ height: 1px;
2887
+ padding: 0;
2888
+ margin: -1px;
2889
+ overflow: hidden;
2890
+ clip-path: inset(50%);
2891
+ white-space: nowrap;
2892
+ border-width: 0;
2893
+ }
2894
+ .aui-attachment-preview-image-loaded {
2895
+ display: block;
2896
+ height: auto;
2897
+ max-height: 80vh;
2898
+ width: auto;
2899
+ max-width: 100%;
2900
+ -o-object-fit: contain;
2901
+ object-fit: contain;
2902
+ }
2903
+ .aui-attachment-preview-image-loading {
2904
+ display: none;
2905
+ }
2906
+ .aui-attachment-preview-trigger {
2907
+ cursor: pointer;
2908
+ transition-property:
2909
+ color,
2910
+ background-color,
2911
+ border-color,
2912
+ outline-color,
2913
+ text-decoration-color,
2914
+ fill,
2915
+ stroke,
2916
+ --tw-gradient-from,
2917
+ --tw-gradient-via,
2918
+ --tw-gradient-to;
2919
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2920
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2921
+ }
2922
+ @media (hover: hover) {
2923
+ .aui-attachment-preview-trigger:hover {
2924
+ background-color: hsl(var(--accent));
2925
+ @supports (color: color-mix(in lab, red, red)) {
2926
+ background-color: color-mix(in srgb, hsl(var(--accent)) 50%, transparent);
2927
+ }
2928
+ }
2929
+ @supports (color: color-mix(in lab, red, red)) {
2930
+ .aui-attachment-preview-trigger:hover {
2931
+ background-color: color-mix(in srgb, hsl(var(--accent)) 50%, transparent);
2932
+ @supports (color: color-mix(in lab, red, red)) {
2933
+ background-color: color-mix(in oklab, var(--color-accent) 50%, transparent);
2934
+ }
2935
+ }
2936
+ }
2937
+ }
2938
+ .aui-attachment-remove-icon {
2939
+ width: calc(var(--spacing) * 3);
2940
+ height: calc(var(--spacing) * 3);
2941
+ }
2942
+ .aui-attachment-remove-icon:where(.dark, .dark *) {
2943
+ stroke-width: 2.5px;
2944
+ }
2945
+ .aui-attachment-root {
2946
+ position: relative;
2947
+ }
2948
+ .aui-attachment-root-composer:only-child > #attachment-tile {
2949
+ width: calc(var(--spacing) * 24);
2950
+ height: calc(var(--spacing) * 24);
2951
+ }
2952
+ .aui-attachment-tile {
2953
+ width: calc(var(--spacing) * 14);
2954
+ height: calc(var(--spacing) * 14);
2955
+ cursor: pointer;
2956
+ overflow: hidden;
2957
+ border-radius: 14px;
2958
+ border-style: var(--tw-border-style);
2959
+ border-width: 1px;
2960
+ background-color: var(--color-muted);
2961
+ transition-property: opacity;
2962
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2963
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2964
+ }
2965
+ @media (hover: hover) {
2966
+ .aui-attachment-tile:hover {
2967
+ opacity: 75%;
2968
+ }
2969
+ }
2970
+ .aui-attachment-tile-avatar {
2971
+ height: 100%;
2972
+ width: 100%;
2973
+ border-radius: 0;
2974
+ }
2975
+ .aui-attachment-tile-composer {
2976
+ border-color: hsl(var(--foreground));
2977
+ @supports (color: color-mix(in lab, red, red)) {
2978
+ border-color: color-mix(in srgb, hsl(var(--foreground)) 20%, transparent);
2979
+ }
2980
+ }
2981
+ @supports (color: color-mix(in lab, red, red)) {
2982
+ .aui-attachment-tile-composer {
2983
+ border-color: color-mix(in srgb, hsl(var(--foreground)) 20%, transparent);
2984
+ @supports (color: color-mix(in lab, red, red)) {
2985
+ border-color: color-mix(in oklab, var(--color-foreground) 20%, transparent);
2986
+ }
2987
+ }
2988
+ }
2989
+ .aui-attachment-tile-fallback-icon {
2990
+ width: calc(var(--spacing) * 8);
2991
+ height: calc(var(--spacing) * 8);
2992
+ color: var(--color-muted-foreground);
2993
+ }
2994
+ .aui-attachment-tile-image {
2995
+ -o-object-fit: cover;
2996
+ object-fit: cover;
2997
+ }
2998
+ .aui-attachment-tile-remove {
2999
+ position: absolute;
3000
+ top: calc(var(--spacing) * 1.5);
3001
+ right: calc(var(--spacing) * 1.5);
3002
+ width: calc(var(--spacing) * 3.5);
3003
+ height: calc(var(--spacing) * 3.5);
3004
+ border-radius: calc(infinity * 1px);
3005
+ background-color: var(--color-white);
3006
+ color: var(--color-muted-foreground);
3007
+ opacity: 100%;
3008
+ --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));
3009
+ box-shadow:
3010
+ var(--tw-inset-shadow),
3011
+ var(--tw-inset-ring-shadow),
3012
+ var(--tw-ring-offset-shadow),
3013
+ var(--tw-ring-shadow),
3014
+ var(--tw-shadow);
3015
+ }
3016
+ @media (hover: hover) {
3017
+ .aui-attachment-tile-remove:hover {
3018
+ background-color: var(--color-white) !important;
3019
+ }
3020
+ }
3021
+ .aui-attachment-tile-remove svg {
3022
+ color: var(--color-black);
3023
+ }
3024
+ @media (hover: hover) {
3025
+ .aui-attachment-tile-remove:hover svg {
3026
+ color: var(--color-destructive);
3027
+ }
3028
+ }
3029
+ .aui-branch-picker-root {
3030
+ margin-right: calc(var(--spacing) * 2);
3031
+ margin-left: calc(var(--spacing) * -2);
3032
+ display: inline-flex;
3033
+ align-items: center;
3034
+ font-size: var(--text-xs);
3035
+ line-height: var(--tw-leading, var(--text-xs--line-height));
3036
+ color: var(--color-muted-foreground);
3037
+ }
3038
+ .aui-branch-picker-state {
3039
+ --tw-font-weight: var(--font-weight-medium);
3040
+ font-weight: var(--font-weight-medium);
3041
+ }
3042
+ .aui-button-icon {
3043
+ width: calc(var(--spacing) * 6);
3044
+ height: calc(var(--spacing) * 6);
3045
+ padding: calc(var(--spacing) * 1);
3046
+ position: absolute;
3047
+ width: 1px;
3048
+ height: 1px;
3049
+ padding: 0;
3050
+ margin: -1px;
3051
+ overflow: hidden;
3052
+ clip-path: inset(50%);
3053
+ white-space: nowrap;
3054
+ border-width: 0;
3055
+ }
3056
+ .aui-code-header-language {
3057
+ text-transform: lowercase;
3058
+ }
3059
+ .aui-code-header-language > span {
3060
+ font-size: var(--text-xs);
3061
+ line-height: var(--tw-leading, var(--text-xs--line-height));
3062
+ }
3063
+ .aui-code-header-root {
3064
+ margin-top: calc(var(--spacing) * 4);
3065
+ display: flex;
3066
+ align-items: center;
3067
+ justify-content: space-between;
3068
+ gap: calc(var(--spacing) * 4);
3069
+ border-top-left-radius: var(--radius-lg);
3070
+ border-top-right-radius: var(--radius-lg);
3071
+ background-color: hsl(var(--muted-foreground));
3072
+ @supports (color: color-mix(in lab, red, red)) {
3073
+ background-color: color-mix(in srgb, hsl(var(--muted-foreground)) 15%, transparent);
3074
+ }
3075
+ }
3076
+ @supports (color: color-mix(in lab, red, red)) {
3077
+ .aui-code-header-root {
3078
+ background-color: color-mix(in srgb, hsl(var(--muted-foreground)) 15%, transparent);
3079
+ @supports (color: color-mix(in lab, red, red)) {
3080
+ background-color: color-mix(in oklab, var(--color-muted-foreground) 15%, transparent);
3081
+ }
3082
+ }
3083
+ }
3084
+ .aui-code-header-root {
3085
+ padding-inline: calc(var(--spacing) * 4);
3086
+ padding-block: calc(var(--spacing) * 2);
3087
+ font-size: var(--text-sm);
3088
+ line-height: var(--tw-leading, var(--text-sm--line-height));
3089
+ --tw-font-weight: var(--font-weight-semibold);
3090
+ font-weight: var(--font-weight-semibold);
3091
+ color: var(--color-foreground);
3092
+ }
3093
+ .aui-code-header-root:where(.dark, .dark *) {
3094
+ background-color: hsl(var(--muted-foreground));
3095
+ @supports (color: color-mix(in lab, red, red)) {
3096
+ background-color: color-mix(in srgb, hsl(var(--muted-foreground)) 20%, transparent);
3097
+ }
3098
+ }
3099
+ @supports (color: color-mix(in lab, red, red)) {
3100
+ .aui-code-header-root:where(.dark, .dark *) {
3101
+ background-color: color-mix(in srgb, hsl(var(--muted-foreground)) 20%, transparent);
3102
+ @supports (color: color-mix(in lab, red, red)) {
3103
+ background-color: color-mix(in oklab, var(--color-muted-foreground) 20%, transparent);
3104
+ }
3105
+ }
3106
+ }
3107
+ .aui-composer-action-wrapper {
3108
+ position: relative;
3109
+ margin-inline: calc(var(--spacing) * 2);
3110
+ margin-bottom: calc(var(--spacing) * 2);
3111
+ display: flex;
3112
+ align-items: center;
3113
+ justify-content: space-between;
3114
+ }
3115
+ .aui-composer-add-attachment {
3116
+ width: 34px;
3117
+ height: 34px;
3118
+ border-radius: calc(infinity * 1px);
3119
+ padding: calc(var(--spacing) * 1);
3120
+ font-size: var(--text-xs);
3121
+ line-height: var(--tw-leading, var(--text-xs--line-height));
3122
+ --tw-font-weight: var(--font-weight-semibold);
3123
+ font-weight: var(--font-weight-semibold);
3124
+ }
3125
+ @media (hover: hover) {
3126
+ .aui-composer-add-attachment:hover {
3127
+ background-color: hsl(var(--muted-foreground));
3128
+ @supports (color: color-mix(in lab, red, red)) {
3129
+ background-color: color-mix(in srgb, hsl(var(--muted-foreground)) 15%, transparent);
3130
+ }
3131
+ }
3132
+ @supports (color: color-mix(in lab, red, red)) {
3133
+ .aui-composer-add-attachment:hover {
3134
+ background-color: color-mix(in srgb, hsl(var(--muted-foreground)) 15%, transparent);
3135
+ @supports (color: color-mix(in lab, red, red)) {
3136
+ background-color: color-mix(in oklab, var(--color-muted-foreground) 15%, transparent);
3137
+ }
3138
+ }
3139
+ }
3140
+ }
3141
+ .aui-composer-add-attachment:where(.dark, .dark *) {
3142
+ border-color: hsl(var(--muted-foreground));
3143
+ @supports (color: color-mix(in lab, red, red)) {
3144
+ border-color: color-mix(in srgb, hsl(var(--muted-foreground)) 15%, transparent);
3145
+ }
3146
+ }
3147
+ @supports (color: color-mix(in lab, red, red)) {
3148
+ .aui-composer-add-attachment:where(.dark, .dark *) {
3149
+ border-color: color-mix(in srgb, hsl(var(--muted-foreground)) 15%, transparent);
3150
+ @supports (color: color-mix(in lab, red, red)) {
3151
+ border-color: color-mix(in oklab, var(--color-muted-foreground) 15%, transparent);
3152
+ }
3153
+ }
3154
+ }
3155
+ @media (hover: hover) {
3156
+ .aui-composer-add-attachment:where(.dark, .dark *):hover {
3157
+ background-color: hsl(var(--muted-foreground));
3158
+ @supports (color: color-mix(in lab, red, red)) {
3159
+ background-color: color-mix(in srgb, hsl(var(--muted-foreground)) 30%, transparent);
3160
+ }
3161
+ }
3162
+ @supports (color: color-mix(in lab, red, red)) {
3163
+ .aui-composer-add-attachment:where(.dark, .dark *):hover {
3164
+ background-color: color-mix(in srgb, hsl(var(--muted-foreground)) 30%, transparent);
3165
+ @supports (color: color-mix(in lab, red, red)) {
3166
+ background-color: color-mix(in oklab, var(--color-muted-foreground) 30%, transparent);
3167
+ }
3168
+ }
3169
+ }
3170
+ }
3171
+ .aui-composer-attachment-dropzone {
3172
+ display: flex;
3173
+ width: 100%;
3174
+ flex-direction: column;
3175
+ border-radius: var(--radius-2xl);
3176
+ border-style: var(--tw-border-style);
3177
+ border-width: 1px;
3178
+ border-color: var(--color-input);
3179
+ background-color: var(--color-background);
3180
+ padding-inline: calc(var(--spacing) * 1);
3181
+ padding-top: calc(var(--spacing) * 2);
3182
+ transition-property: box-shadow;
3183
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3184
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
3185
+ --tw-outline-style: none;
3186
+ outline-style: none;
3187
+ }
3188
+ .aui-composer-attachment-dropzone:has(*:is(textarea:focus-visible)) {
3189
+ border-color: var(--color-ring);
3190
+ }
3191
+ .aui-composer-attachment-dropzone:has(*:is(textarea:focus-visible)) {
3192
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
3193
+ box-shadow:
3194
+ var(--tw-inset-shadow),
3195
+ var(--tw-inset-ring-shadow),
3196
+ var(--tw-ring-offset-shadow),
3197
+ var(--tw-ring-shadow),
3198
+ var(--tw-shadow);
3199
+ }
3200
+ .aui-composer-attachment-dropzone:has(*:is(textarea:focus-visible)) {
3201
+ --tw-ring-color: hsl(var(--ring));
3202
+ @supports (color: color-mix(in lab, red, red)) {
3203
+ --tw-ring-color: color-mix(in srgb, hsl(var(--ring)) 20%, transparent);
3204
+ }
3205
+ }
3206
+ @supports (color: color-mix(in lab, red, red)) {
3207
+ .aui-composer-attachment-dropzone:has(*:is(textarea:focus-visible)) {
3208
+ --tw-ring-color: color-mix(in srgb, hsl(var(--ring)) 20%, transparent);
3209
+ @supports (color: color-mix(in lab, red, red)) {
3210
+ --tw-ring-color: color-mix(in oklab, var(--color-ring) 20%, transparent);
3211
+ }
3212
+ }
3213
+ }
3214
+ .aui-composer-attachment-dropzone[data-dragging=true] {
3215
+ --tw-border-style: dashed;
3216
+ border-style: dashed;
3217
+ }
3218
+ .aui-composer-attachment-dropzone[data-dragging=true] {
3219
+ border-color: var(--color-ring);
3220
+ }
3221
+ .aui-composer-attachment-dropzone[data-dragging=true] {
3222
+ background-color: hsl(var(--accent));
3223
+ @supports (color: color-mix(in lab, red, red)) {
3224
+ background-color: color-mix(in srgb, hsl(var(--accent)) 50%, transparent);
3225
+ }
3226
+ }
3227
+ @supports (color: color-mix(in lab, red, red)) {
3228
+ .aui-composer-attachment-dropzone[data-dragging=true] {
3229
+ background-color: color-mix(in srgb, hsl(var(--accent)) 50%, transparent);
3230
+ @supports (color: color-mix(in lab, red, red)) {
3231
+ background-color: color-mix(in oklab, var(--color-accent) 50%, transparent);
3232
+ }
3233
+ }
3234
+ }
3235
+ .aui-composer-attachments {
3236
+ margin-bottom: calc(var(--spacing) * 2);
3237
+ display: flex;
3238
+ width: 100%;
3239
+ flex-direction: row;
3240
+ align-items: center;
3241
+ gap: calc(var(--spacing) * 2);
3242
+ overflow-x: auto;
3243
+ padding-inline: calc(var(--spacing) * 1.5);
3244
+ padding-top: calc(var(--spacing) * 0.5);
3245
+ padding-bottom: calc(var(--spacing) * 1);
3246
+ }
3247
+ .aui-composer-attachments:empty {
3248
+ display: none;
3249
+ }
3250
+ .aui-composer-cancel {
3251
+ width: calc(var(--spacing) * 8);
3252
+ height: calc(var(--spacing) * 8);
3253
+ border-radius: calc(infinity * 1px);
3254
+ }
3255
+ .aui-composer-cancel-icon {
3256
+ width: calc(var(--spacing) * 3);
3257
+ height: calc(var(--spacing) * 3);
3258
+ fill: currentcolor;
3259
+ }
3260
+ .aui-composer-input {
3261
+ margin-bottom: calc(var(--spacing) * 1);
3262
+ max-height: calc(var(--spacing) * 32);
3263
+ min-height: calc(var(--spacing) * 14);
3264
+ width: 100%;
3265
+ resize: none;
3266
+ background-color: transparent;
3267
+ padding-inline: calc(var(--spacing) * 4);
3268
+ padding-top: calc(var(--spacing) * 2);
3269
+ padding-bottom: calc(var(--spacing) * 3);
3270
+ font-size: var(--text-sm);
3271
+ line-height: var(--tw-leading, var(--text-sm--line-height));
3272
+ --tw-outline-style: none;
3273
+ outline-style: none;
3274
+ }
3275
+ .aui-composer-input::-moz-placeholder {
3276
+ color: var(--color-muted-foreground);
3277
+ }
3278
+ .aui-composer-input::placeholder {
3279
+ color: var(--color-muted-foreground);
3280
+ }
3281
+ .aui-composer-input:focus-visible {
3282
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
3283
+ box-shadow:
3284
+ var(--tw-inset-shadow),
3285
+ var(--tw-inset-ring-shadow),
3286
+ var(--tw-ring-offset-shadow),
3287
+ var(--tw-ring-shadow),
3288
+ var(--tw-shadow);
3289
+ }
3290
+ .aui-composer-root {
3291
+ position: relative;
3292
+ display: flex;
3293
+ width: 100%;
3294
+ flex-direction: column;
3295
+ }
3296
+ .aui-composer-send {
3297
+ width: calc(var(--spacing) * 8);
3298
+ height: calc(var(--spacing) * 8);
3299
+ border-radius: calc(infinity * 1px);
3300
+ }
3301
+ .aui-composer-send-icon {
3302
+ width: calc(var(--spacing) * 4);
3303
+ height: calc(var(--spacing) * 4);
3304
+ }
3305
+ .aui-edit-composer-footer {
3306
+ margin-inline: calc(var(--spacing) * 3);
3307
+ margin-bottom: calc(var(--spacing) * 3);
3308
+ display: flex;
3309
+ align-items: center;
3310
+ gap: calc(var(--spacing) * 2);
3311
+ align-self: flex-end;
3312
+ }
3313
+ .aui-edit-composer-input {
3314
+ min-height: calc(var(--spacing) * 14);
3315
+ width: 100%;
3316
+ resize: none;
3317
+ background-color: transparent;
3318
+ padding: calc(var(--spacing) * 4);
3319
+ font-size: var(--text-sm);
3320
+ line-height: var(--tw-leading, var(--text-sm--line-height));
3321
+ color: var(--color-foreground);
3322
+ --tw-outline-style: none;
3323
+ outline-style: none;
3324
+ }
3325
+ .aui-edit-composer-root {
3326
+ margin-left: auto;
3327
+ display: flex;
3328
+ width: 100%;
3329
+ max-width: 85%;
3330
+ flex-direction: column;
3331
+ border-radius: var(--radius-2xl);
3332
+ background-color: var(--color-muted);
3333
+ }
3334
+ .aui-edit-composer-wrapper {
3335
+ margin-inline: auto;
3336
+ display: flex;
3337
+ width: 100%;
3338
+ max-width: var(--thread-max-width);
3339
+ flex-direction: column;
3340
+ padding-inline: calc(var(--spacing) * 2);
3341
+ padding-block: calc(var(--spacing) * 3);
3342
+ }
3343
+ .aui-md-a {
3344
+ --tw-font-weight: var(--font-weight-medium);
3345
+ font-weight: var(--font-weight-medium);
3346
+ color: var(--color-primary);
3347
+ text-decoration-line: underline;
3348
+ text-underline-offset: 4px;
3349
+ }
3350
+ .aui-md-blockquote {
3351
+ border-left-style: var(--tw-border-style);
3352
+ border-left-width: 2px;
3353
+ padding-left: calc(var(--spacing) * 6);
3354
+ font-style: italic;
3355
+ }
3356
+ .aui-md-h1 {
3357
+ margin-bottom: calc(var(--spacing) * 8);
3358
+ scroll-margin: calc(var(--spacing) * 20);
3359
+ font-size: var(--text-4xl);
3360
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
3361
+ --tw-font-weight: var(--font-weight-extrabold);
3362
+ font-weight: var(--font-weight-extrabold);
3363
+ --tw-tracking: var(--tracking-tight);
3364
+ letter-spacing: var(--tracking-tight);
3365
+ }
3366
+ .aui-md-h1:last-child {
3367
+ margin-bottom: calc(var(--spacing) * 0);
3368
+ }
3369
+ .aui-md-h2 {
3370
+ margin-top: calc(var(--spacing) * 8);
3371
+ margin-bottom: calc(var(--spacing) * 4);
3372
+ scroll-margin: calc(var(--spacing) * 20);
3373
+ font-size: var(--text-3xl);
3374
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
3375
+ --tw-font-weight: var(--font-weight-semibold);
3376
+ font-weight: var(--font-weight-semibold);
3377
+ --tw-tracking: var(--tracking-tight);
3378
+ letter-spacing: var(--tracking-tight);
3379
+ }
3380
+ .aui-md-h2:first-child {
3381
+ margin-top: calc(var(--spacing) * 0);
3382
+ }
3383
+ .aui-md-h2:last-child {
3384
+ margin-bottom: calc(var(--spacing) * 0);
3385
+ }
3386
+ .aui-md-h3 {
3387
+ margin-top: calc(var(--spacing) * 6);
3388
+ margin-bottom: calc(var(--spacing) * 4);
3389
+ scroll-margin: calc(var(--spacing) * 20);
3390
+ font-size: var(--text-2xl);
3391
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
3392
+ --tw-font-weight: var(--font-weight-semibold);
3393
+ font-weight: var(--font-weight-semibold);
3394
+ --tw-tracking: var(--tracking-tight);
3395
+ letter-spacing: var(--tracking-tight);
3396
+ }
3397
+ .aui-md-h3:first-child {
3398
+ margin-top: calc(var(--spacing) * 0);
3399
+ }
3400
+ .aui-md-h3:last-child {
3401
+ margin-bottom: calc(var(--spacing) * 0);
3402
+ }
3403
+ .aui-md-h4 {
3404
+ margin-top: calc(var(--spacing) * 6);
3405
+ margin-bottom: calc(var(--spacing) * 4);
3406
+ scroll-margin: calc(var(--spacing) * 20);
3407
+ font-size: var(--text-xl);
3408
+ line-height: var(--tw-leading, var(--text-xl--line-height));
3409
+ --tw-font-weight: var(--font-weight-semibold);
3410
+ font-weight: var(--font-weight-semibold);
3411
+ --tw-tracking: var(--tracking-tight);
3412
+ letter-spacing: var(--tracking-tight);
3413
+ }
3414
+ .aui-md-h4:first-child {
3415
+ margin-top: calc(var(--spacing) * 0);
3416
+ }
3417
+ .aui-md-h4:last-child {
3418
+ margin-bottom: calc(var(--spacing) * 0);
3419
+ }
3420
+ .aui-md-h5 {
3421
+ margin-block: calc(var(--spacing) * 4);
3422
+ font-size: var(--text-lg);
3423
+ line-height: var(--tw-leading, var(--text-lg--line-height));
3424
+ --tw-font-weight: var(--font-weight-semibold);
3425
+ font-weight: var(--font-weight-semibold);
3426
+ }
3427
+ .aui-md-h5:first-child {
3428
+ margin-top: calc(var(--spacing) * 0);
3429
+ }
3430
+ .aui-md-h5:last-child {
3431
+ margin-bottom: calc(var(--spacing) * 0);
3432
+ }
3433
+ .aui-md-h6 {
3434
+ margin-block: calc(var(--spacing) * 4);
3435
+ --tw-font-weight: var(--font-weight-semibold);
3436
+ font-weight: var(--font-weight-semibold);
3437
+ }
3438
+ .aui-md-h6:first-child {
3439
+ margin-top: calc(var(--spacing) * 0);
3440
+ }
3441
+ .aui-md-h6:last-child {
3442
+ margin-bottom: calc(var(--spacing) * 0);
3443
+ }
3444
+ .aui-md-hr {
3445
+ margin-block: calc(var(--spacing) * 5);
3446
+ border-bottom-style: var(--tw-border-style);
3447
+ border-bottom-width: 1px;
3448
+ }
3449
+ .aui-md-inline-code {
3450
+ border-radius: 0.25rem;
3451
+ border-style: var(--tw-border-style);
3452
+ border-width: 1px;
3453
+ background-color: var(--color-muted);
3454
+ --tw-font-weight: var(--font-weight-semibold);
3455
+ font-weight: var(--font-weight-semibold);
3456
+ }
3457
+ .aui-md-ol {
3458
+ margin-block: calc(var(--spacing) * 5);
3459
+ margin-left: calc(var(--spacing) * 6);
3460
+ list-style-type: decimal;
3461
+ }
3462
+ .aui-md-ol > li {
3463
+ margin-top: calc(var(--spacing) * 2);
3464
+ }
3465
+ .aui-md-p {
3466
+ margin-top: calc(var(--spacing) * 5);
3467
+ margin-bottom: calc(var(--spacing) * 5);
3468
+ --tw-leading: calc(var(--spacing) * 7);
3469
+ line-height: calc(var(--spacing) * 7);
3470
+ }
3471
+ .aui-md-p:first-child {
3472
+ margin-top: calc(var(--spacing) * 0);
3473
+ }
3474
+ .aui-md-p:last-child {
3475
+ margin-bottom: calc(var(--spacing) * 0);
3476
+ }
3477
+ .aui-md-pre {
3478
+ overflow-x: auto;
3479
+ border-top-left-radius: 0 !important;
3480
+ border-top-right-radius: 0 !important;
3481
+ border-bottom-right-radius: var(--radius-lg);
3482
+ border-bottom-left-radius: var(--radius-lg);
3483
+ background-color: var(--color-black);
3484
+ padding: calc(var(--spacing) * 4);
3485
+ color: var(--color-white);
3486
+ }
3487
+ .aui-md-sup > a {
3488
+ font-size: var(--text-xs);
3489
+ line-height: var(--tw-leading, var(--text-xs--line-height));
3490
+ }
3491
+ .aui-md-sup > a {
3492
+ text-decoration-line: none;
3493
+ }
3494
+ .aui-md-table {
3495
+ margin-block: calc(var(--spacing) * 5);
3496
+ width: 100%;
3497
+ border-collapse: separate;
3498
+ --tw-border-spacing-x: calc(var(--spacing) * 0);
3499
+ --tw-border-spacing-y: calc(var(--spacing) * 0);
3500
+ border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
3501
+ overflow-y: auto;
3502
+ }
3503
+ .aui-md-td {
3504
+ border-bottom-style: var(--tw-border-style);
3505
+ border-bottom-width: 1px;
3506
+ border-left-style: var(--tw-border-style);
3507
+ border-left-width: 1px;
3508
+ padding-inline: calc(var(--spacing) * 4);
3509
+ padding-block: calc(var(--spacing) * 2);
3510
+ text-align: left;
3511
+ }
3512
+ .aui-md-td:last-child {
3513
+ border-right-style: var(--tw-border-style);
3514
+ border-right-width: 1px;
3515
+ }
3516
+ .aui-md-td:is([align=center]) {
3517
+ text-align: center;
3518
+ }
3519
+ .aui-md-td:is([align=right]) {
3520
+ text-align: right;
3521
+ }
3522
+ .aui-md-th {
3523
+ background-color: var(--color-muted);
3524
+ padding-inline: calc(var(--spacing) * 4);
3525
+ padding-block: calc(var(--spacing) * 2);
3526
+ text-align: left;
3527
+ --tw-font-weight: var(--font-weight-bold);
3528
+ font-weight: var(--font-weight-bold);
3529
+ }
3530
+ .aui-md-th:first-child {
3531
+ border-top-left-radius: var(--radius-lg);
3532
+ }
3533
+ .aui-md-th:last-child {
3534
+ border-top-right-radius: var(--radius-lg);
3535
+ }
3536
+ .aui-md-th:is([align=center]) {
3537
+ text-align: center;
3538
+ }
3539
+ .aui-md-th:is([align=right]) {
3540
+ text-align: right;
3541
+ }
3542
+ .aui-md-tr {
3543
+ margin: calc(var(--spacing) * 0);
3544
+ border-bottom-style: var(--tw-border-style);
3545
+ border-bottom-width: 1px;
3546
+ padding: calc(var(--spacing) * 0);
3547
+ }
3548
+ .aui-md-tr:first-child {
3549
+ border-top-style: var(--tw-border-style);
3550
+ border-top-width: 1px;
3551
+ }
3552
+ .aui-md-tr:last-child > td:first-child {
3553
+ border-bottom-left-radius: var(--radius-lg);
3554
+ }
3555
+ .aui-md-tr:last-child > td:last-child {
3556
+ border-bottom-right-radius: var(--radius-lg);
3557
+ }
3558
+ .aui-md-ul {
3559
+ margin-block: calc(var(--spacing) * 5);
3560
+ margin-left: calc(var(--spacing) * 6);
3561
+ list-style-type: disc;
3562
+ }
3563
+ .aui-md-ul > li {
3564
+ margin-top: calc(var(--spacing) * 2);
3565
+ }
3566
+ .aui-mermaid-diagram {
3567
+ border-bottom-right-radius: var(--radius-lg);
3568
+ border-bottom-left-radius: var(--radius-lg);
3569
+ background-color: var(--color-muted);
3570
+ padding: calc(var(--spacing) * 2);
3571
+ text-align: center;
3572
+ }
3573
+ .aui-mermaid-diagram svg {
3574
+ margin-inline: auto;
3575
+ }
3576
+ .aui-message-error-message {
3577
+ overflow: hidden;
3578
+ display: -webkit-box;
3579
+ -webkit-box-orient: vertical;
3580
+ -webkit-line-clamp: 2;
3581
+ }
3582
+ .aui-message-error-root {
3583
+ margin-top: calc(var(--spacing) * 2);
3584
+ border-radius: var(--radius-md);
3585
+ border-style: var(--tw-border-style);
3586
+ border-width: 1px;
3587
+ border-color: var(--color-destructive);
3588
+ background-color: hsl(var(--destructive));
3589
+ @supports (color: color-mix(in lab, red, red)) {
3590
+ background-color: color-mix(in srgb, hsl(var(--destructive)) 10%, transparent);
3591
+ }
3592
+ }
3593
+ @supports (color: color-mix(in lab, red, red)) {
3594
+ .aui-message-error-root {
3595
+ background-color: color-mix(in srgb, hsl(var(--destructive)) 10%, transparent);
3596
+ @supports (color: color-mix(in lab, red, red)) {
3597
+ background-color: color-mix(in oklab, var(--color-destructive) 10%, transparent);
3598
+ }
3599
+ }
3600
+ }
3601
+ .aui-message-error-root {
3602
+ padding: calc(var(--spacing) * 3);
3603
+ font-size: var(--text-sm);
3604
+ line-height: var(--tw-leading, var(--text-sm--line-height));
3605
+ color: var(--color-destructive);
3606
+ }
3607
+ .aui-message-error-root:where(.dark, .dark *) {
3608
+ background-color: hsl(var(--destructive));
3609
+ @supports (color: color-mix(in lab, red, red)) {
3610
+ background-color: color-mix(in srgb, hsl(var(--destructive)) 5%, transparent);
3611
+ }
3612
+ }
3613
+ @supports (color: color-mix(in lab, red, red)) {
3614
+ .aui-message-error-root:where(.dark, .dark *) {
3615
+ background-color: color-mix(in srgb, hsl(var(--destructive)) 5%, transparent);
3616
+ @supports (color: color-mix(in lab, red, red)) {
3617
+ background-color: color-mix(in oklab, var(--color-destructive) 5%, transparent);
3618
+ }
3619
+ }
3620
+ }
3621
+ .aui-message-error-root:where(.dark, .dark *) {
3622
+ color: var(--color-red-200);
3623
+ }
3624
+ .aui-modal-button {
3625
+ width: 100%;
3626
+ height: 100%;
3627
+ border-radius: calc(infinity * 1px);
3628
+ --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));
3629
+ box-shadow:
3630
+ var(--tw-inset-shadow),
3631
+ var(--tw-inset-ring-shadow),
3632
+ var(--tw-ring-offset-shadow),
3633
+ var(--tw-ring-shadow),
3634
+ var(--tw-shadow);
3635
+ transition-property:
3636
+ transform,
3637
+ translate,
3638
+ scale,
3639
+ rotate;
3640
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3641
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
3642
+ }
3643
+ @media (hover: hover) {
3644
+ .aui-modal-button:hover {
3645
+ --tw-scale-x: 110%;
3646
+ --tw-scale-y: 110%;
3647
+ --tw-scale-z: 110%;
3648
+ scale: var(--tw-scale-x) var(--tw-scale-y);
3649
+ }
3650
+ }
3651
+ .aui-modal-button:active {
3652
+ --tw-scale-x: 90%;
3653
+ --tw-scale-y: 90%;
3654
+ --tw-scale-z: 90%;
3655
+ scale: var(--tw-scale-x) var(--tw-scale-y);
3656
+ }
3657
+ .aui-modal-button-closed-icon {
3658
+ position: absolute;
3659
+ width: calc(var(--spacing) * 6);
3660
+ height: calc(var(--spacing) * 6);
3661
+ transition-property: all;
3662
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3663
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
3664
+ }
3665
+ .aui-modal-button-closed-icon[data-state=closed] {
3666
+ --tw-scale-x: 100%;
3667
+ --tw-scale-y: 100%;
3668
+ --tw-scale-z: 100%;
3669
+ scale: var(--tw-scale-x) var(--tw-scale-y);
3670
+ }
3671
+ .aui-modal-button-closed-icon[data-state=closed] {
3672
+ rotate: 0deg;
3673
+ }
3674
+ .aui-modal-button-closed-icon[data-state=open] {
3675
+ --tw-scale-x: 0%;
3676
+ --tw-scale-y: 0%;
3677
+ --tw-scale-z: 0%;
3678
+ scale: var(--tw-scale-x) var(--tw-scale-y);
3679
+ }
3680
+ .aui-modal-button-closed-icon[data-state=open] {
3681
+ rotate: 90deg;
3682
+ }
3683
+ .aui-modal-button-open-icon {
3684
+ width: calc(var(--spacing) * 6);
3685
+ height: calc(var(--spacing) * 6);
3686
+ transition-property: all;
3687
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3688
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
3689
+ }
3690
+ .aui-modal-button-open-icon[data-state=closed] {
3691
+ --tw-scale-x: 0%;
3692
+ --tw-scale-y: 0%;
3693
+ --tw-scale-z: 0%;
3694
+ scale: var(--tw-scale-x) var(--tw-scale-y);
3695
+ }
3696
+ .aui-modal-button-open-icon[data-state=closed] {
3697
+ rotate: calc(90deg * -1);
3698
+ }
3699
+ .aui-modal-button-open-icon[data-state=open] {
3700
+ --tw-scale-x: 100%;
3701
+ --tw-scale-y: 100%;
3702
+ --tw-scale-z: 100%;
3703
+ scale: var(--tw-scale-x) var(--tw-scale-y);
3704
+ }
3705
+ .aui-modal-button-open-icon[data-state=open] {
3706
+ rotate: 0deg;
3707
+ }
3708
+ .aui-modal-button-open-icon {
3709
+ position: absolute;
3710
+ width: 1px;
3711
+ height: 1px;
3712
+ padding: 0;
3713
+ margin: -1px;
3714
+ overflow: hidden;
3715
+ clip-path: inset(50%);
3716
+ white-space: nowrap;
3717
+ border-width: 0;
3718
+ }
3719
+ .aui-reasoning-content {
3720
+ position: relative;
3721
+ overflow: hidden;
3722
+ font-size: var(--text-sm);
3723
+ line-height: var(--tw-leading, var(--text-sm--line-height));
3724
+ color: var(--color-muted-foreground);
3725
+ --tw-outline-style: none;
3726
+ outline-style: none;
3727
+ --tw-ease: var(--ease-out);
3728
+ transition-timing-function: var(--ease-out);
3729
+ }
3730
+ .aui-reasoning-content[data-state=closed] {
3731
+ animation: collapsible-up var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
3732
+ }
3733
+ .aui-reasoning-content[data-state=open] {
3734
+ animation: collapsible-down var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
3735
+ }
3736
+ .aui-reasoning-content[data-state=closed] {
3737
+ animation-fill-mode: forwards;
3738
+ --tw-animation-fill-mode: forwards;
3739
+ }
3740
+ .aui-reasoning-content[data-state=closed] {
3741
+ pointer-events: none;
3742
+ }
3743
+ .aui-reasoning-content[data-state=open] {
3744
+ --tw-duration: var(--animation-duration);
3745
+ transition-duration: var(--animation-duration);
3746
+ }
3747
+ .aui-reasoning-content[data-state=closed] {
3748
+ --tw-duration: var(--animation-duration);
3749
+ transition-duration: var(--animation-duration);
3750
+ }
3751
+ .aui-reasoning-fade {
3752
+ pointer-events: none;
3753
+ position: absolute;
3754
+ inset-inline: calc(var(--spacing) * 0);
3755
+ bottom: calc(var(--spacing) * 0);
3756
+ z-index: 10;
3757
+ height: calc(var(--spacing) * 16);
3758
+ background-image:
3759
+ linear-gradient(
3760
+ to top,
3761
+ var(--color-background),
3762
+ transparent);
3763
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
3764
+ --tw-enter-opacity: calc(0/100);
3765
+ --tw-enter-opacity: 0;
3766
+ }
3767
+ .aui-reasoning-fade:is(:where(.group\/collapsible-content)[data-state=open] *) {
3768
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
3769
+ }
3770
+ .aui-reasoning-fade:is(:where(.group\/collapsible-content)[data-state=open] *) {
3771
+ --tw-exit-opacity: calc(0/100);
3772
+ --tw-exit-opacity: 0;
3773
+ }
3774
+ .aui-reasoning-fade:is(:where(.group\/collapsible-content)[data-state=open] *) {
3775
+ transition-delay: calc(var(--animation-duration) * 0.75);
3776
+ }
3777
+ .aui-reasoning-fade:is(:where(.group\/collapsible-content)[data-state=open] *) {
3778
+ animation-delay: calc(var(--animation-duration) * 0.75);
3779
+ --tw-animation-delay: calc(var(--animation-duration) * 0.75);
3780
+ }
3781
+ .aui-reasoning-fade:is(:where(.group\/collapsible-content)[data-state=open] *) {
3782
+ animation-fill-mode: forwards;
3783
+ --tw-animation-fill-mode: forwards;
3784
+ }
3785
+ .aui-reasoning-fade {
3786
+ --tw-duration: var(--animation-duration);
3787
+ transition-duration: var(--animation-duration);
3788
+ }
3789
+ .aui-reasoning-fade:is(:where(.group\/collapsible-content)[data-state=open] *) {
3790
+ --tw-duration: var(--animation-duration);
3791
+ transition-duration: var(--animation-duration);
3792
+ }
3793
+ .aui-reasoning-root {
3794
+ margin-bottom: calc(var(--spacing) * 4);
3795
+ width: 100%;
3796
+ }
3797
+ .aui-reasoning-text {
3798
+ position: relative;
3799
+ z-index: 0;
3800
+ }
3801
+ :where(.aui-reasoning-text > :not(:last-child)) {
3802
+ --tw-space-y-reverse: 0;
3803
+ margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
3804
+ margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
3805
+ }
3806
+ .aui-reasoning-text {
3807
+ padding-top: calc(var(--spacing) * 4);
3808
+ padding-left: calc(var(--spacing) * 6);
3809
+ --tw-leading: var(--leading-relaxed);
3810
+ line-height: var(--leading-relaxed);
3811
+ transform: translateZ(0) var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
3812
+ transition-property: transform, opacity;
3813
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3814
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
3815
+ }
3816
+ .aui-reasoning-text:is(:where(.group\/collapsible-content)[data-state=open] *) {
3817
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
3818
+ }
3819
+ .aui-reasoning-text:is(:where(.group\/collapsible-content)[data-state=closed] *) {
3820
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
3821
+ }
3822
+ .aui-reasoning-text:is(:where(.group\/collapsible-content)[data-state=open] *) {
3823
+ --tw-enter-opacity: calc(0/100);
3824
+ --tw-enter-opacity: 0;
3825
+ }
3826
+ .aui-reasoning-text:is(:where(.group\/collapsible-content)[data-state=closed] *) {
3827
+ --tw-exit-opacity: calc(0/100);
3828
+ --tw-exit-opacity: 0;
3829
+ }
3830
+ .aui-reasoning-text:is(:where(.group\/collapsible-content)[data-state=open] *) {
3831
+ --tw-enter-translate-y: calc(4*var(--spacing)*-1);
3832
+ }
3833
+ .aui-reasoning-text:is(:where(.group\/collapsible-content)[data-state=closed] *) {
3834
+ --tw-exit-translate-y: calc(4*var(--spacing)*-1);
3835
+ }
3836
+ .aui-reasoning-text:is(:where(.group\/collapsible-content)[data-state=open] *) {
3837
+ --tw-duration: var(--animation-duration);
3838
+ transition-duration: var(--animation-duration);
3839
+ }
3840
+ .aui-reasoning-text:is(:where(.group\/collapsible-content)[data-state=closed] *) {
3841
+ --tw-duration: var(--animation-duration);
3842
+ transition-duration: var(--animation-duration);
3843
+ }
3844
+ .aui-reasoning-text p {
3845
+ margin-bottom: calc(var(--spacing) * -2);
3846
+ }
3847
+ .aui-reasoning-trigger {
3848
+ margin-bottom: calc(var(--spacing) * -2);
3849
+ display: flex;
3850
+ max-width: 75%;
3851
+ align-items: center;
3852
+ gap: calc(var(--spacing) * 2);
3853
+ padding-block: calc(var(--spacing) * 2);
3854
+ font-size: var(--text-sm);
3855
+ line-height: var(--tw-leading, var(--text-sm--line-height));
3856
+ color: var(--color-muted-foreground);
3857
+ transition-property:
3858
+ color,
3859
+ background-color,
3860
+ border-color,
3861
+ outline-color,
3862
+ text-decoration-color,
3863
+ fill,
3864
+ stroke,
3865
+ --tw-gradient-from,
3866
+ --tw-gradient-via,
3867
+ --tw-gradient-to;
3868
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3869
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
3870
+ }
3871
+ @media (hover: hover) {
3872
+ .aui-reasoning-trigger:hover {
3873
+ color: var(--color-foreground);
3874
+ }
3875
+ }
3876
+ .aui-reasoning-trigger-chevron {
3877
+ margin-top: calc(var(--spacing) * 0.5);
3878
+ width: calc(var(--spacing) * 4);
3879
+ height: calc(var(--spacing) * 4);
3880
+ flex-shrink: 0;
3881
+ transition-property:
3882
+ transform,
3883
+ translate,
3884
+ scale,
3885
+ rotate;
3886
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3887
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
3888
+ --tw-duration: var(--animation-duration);
3889
+ transition-duration: var(--animation-duration);
3890
+ --tw-ease: var(--ease-out);
3891
+ transition-timing-function: var(--ease-out);
3892
+ }
3893
+ .aui-reasoning-trigger-chevron:is(:where(.group\/trigger)[data-state=closed] *) {
3894
+ rotate: calc(90deg * -1);
3895
+ }
3896
+ .aui-reasoning-trigger-chevron:is(:where(.group\/trigger)[data-state=open] *) {
3897
+ rotate: 0deg;
3898
+ }
3899
+ .aui-reasoning-trigger-icon {
3900
+ width: calc(var(--spacing) * 4);
3901
+ height: calc(var(--spacing) * 4);
3902
+ flex-shrink: 0;
3903
+ }
3904
+ .aui-reasoning-trigger-label-wrapper {
3905
+ position: relative;
3906
+ display: inline-block;
3907
+ --tw-leading: 1;
3908
+ line-height: 1;
3909
+ }
3910
+ .aui-reasoning-trigger-shimmer {
3911
+ pointer-events: none;
3912
+ position: absolute;
3913
+ inset: calc(var(--spacing) * 0);
3914
+ --_gradient-width: calc(var(--_spread) + var(--shimmer-track-height) * tan(var(--shimmer-angle)));
3915
+ --_active-distance: calc(var(--shimmer-track-width, 200px) + var(--_gradient-width));
3916
+ --_duration: var(--shimmer-duration, calc(var(--_active-distance) / var(--_speed) / 1px * 1000));
3917
+ --_repeat-delay: var(--shimmer-repeat-delay, calc(20000 / var(--_speed)));
3918
+ --_repeat-delay-px: calc(var(--_repeat-delay) * var(--_active-distance) / var(--_duration));
3919
+ --_xy-offset-px: calc((var(--shimmer-x, 0) + var(--shimmer-y, 0) * tan(var(--shimmer-angle))) * 1px);
3920
+ --_bg-width: calc( 100% + var(--shimmer-track-width, 100%) + var(--_gradient-width) + var(--_repeat-delay-px) );
3921
+ --_position: calc( var(--shimmer-track-width, (100% - var(--_gradient-width) - var(--_repeat-delay-px)) / 2) + var(--_gradient-width) / 2 + var(--_repeat-delay-px) - var(--_xy-offset-px) );
3922
+ }
3923
+ .aui-reasoning-trigger-shimmer:not(.shimmer-bg) {
3924
+ --_speed: var(--shimmer-speed, 200);
3925
+ --_spread: var(--shimmer-spread, calc(4ch + 80px));
3926
+ --_bg: currentColor;
3927
+ --_fg: var(--shimmer-color, oklch(from currentColor l c h / calc(alpha * 0.2)));
3928
+ -webkit-background-clip: text;
3929
+ background-clip: text;
3930
+ -webkit-text-fill-color: transparent;
3931
+ }
3932
+ .aui-reasoning-trigger-shimmer.shimmer-bg {
3933
+ --_speed: var(--shimmer-speed, 1000);
3934
+ --_spread: var(--shimmer-spread, 480px);
3935
+ --_bg: transparent;
3936
+ --_fg: var(--shimmer-color, oklch(from currentColor 0 c h / 0.06));
3937
+ }
3938
+ .aui-reasoning-trigger-shimmer:where(.dark, .dark *):not(.shimmer-bg) {
3939
+ --_fg: var(--shimmer-color, oklch(from currentColor max(0.8, calc(l + 0.4)) c h / calc(alpha + 0.4)));
3940
+ }
3941
+ .aui-reasoning-trigger-shimmer:where(.dark, .dark *).shimmer-bg {
3942
+ --_fg: var(--shimmer-color, oklch(from currentColor 0 c h / 0.30));
3943
+ }
3944
+ .aui-reasoning-trigger-shimmer {
3945
+ @-moz-document url-prefix() {
3946
+ --_duration: var(--shimmer-duration, calc(375000 / var(--_speed)));
3947
+ }
3948
+ --_mix-96: var(--_fg);
3949
+ }
3950
+ @supports (color: color-mix(in lab, red, red)) {
3951
+ .aui-reasoning-trigger-shimmer {
3952
+ --_mix-96: var(--_fg);
3953
+ @supports (color: color-mix(in lab, red, red)) {
3954
+ --_mix-96: color-mix(in oklch, var(--_fg), var(--_bg) 96%);
3955
+ }
3956
+ }
3957
+ }
3958
+ .aui-reasoning-trigger-shimmer {
3959
+ --_mix-83: var(--_fg);
3960
+ }
3961
+ @supports (color: color-mix(in lab, red, red)) {
3962
+ .aui-reasoning-trigger-shimmer {
3963
+ --_mix-83: var(--_fg);
3964
+ @supports (color: color-mix(in lab, red, red)) {
3965
+ --_mix-83: color-mix(in oklch, var(--_fg), var(--_bg) 83%);
3966
+ }
3967
+ }
3968
+ }
3969
+ .aui-reasoning-trigger-shimmer {
3970
+ --_mix-67: var(--_fg);
3971
+ }
3972
+ @supports (color: color-mix(in lab, red, red)) {
3973
+ .aui-reasoning-trigger-shimmer {
3974
+ --_mix-67: var(--_fg);
3975
+ @supports (color: color-mix(in lab, red, red)) {
3976
+ --_mix-67: color-mix(in oklch, var(--_fg), var(--_bg) 67%);
3977
+ }
3978
+ }
3979
+ }
3980
+ .aui-reasoning-trigger-shimmer {
3981
+ --_mix-50: var(--_fg);
3982
+ }
3983
+ @supports (color: color-mix(in lab, red, red)) {
3984
+ .aui-reasoning-trigger-shimmer {
3985
+ --_mix-50: var(--_fg);
3986
+ @supports (color: color-mix(in lab, red, red)) {
3987
+ --_mix-50: color-mix(in oklch, var(--_fg), var(--_bg) 50%);
3988
+ }
3989
+ }
3990
+ }
3991
+ .aui-reasoning-trigger-shimmer {
3992
+ --_mix-33: var(--_fg);
3993
+ }
3994
+ @supports (color: color-mix(in lab, red, red)) {
3995
+ .aui-reasoning-trigger-shimmer {
3996
+ --_mix-33: var(--_fg);
3997
+ @supports (color: color-mix(in lab, red, red)) {
3998
+ --_mix-33: color-mix(in oklch, var(--_fg), var(--_bg) 33%);
3999
+ }
4000
+ }
4001
+ }
4002
+ .aui-reasoning-trigger-shimmer {
4003
+ --_mix-17: var(--_fg);
4004
+ }
4005
+ @supports (color: color-mix(in lab, red, red)) {
4006
+ .aui-reasoning-trigger-shimmer {
4007
+ --_mix-17: var(--_fg);
4008
+ @supports (color: color-mix(in lab, red, red)) {
4009
+ --_mix-17: color-mix(in oklch, var(--_fg), var(--_bg) 17%);
4010
+ }
4011
+ }
4012
+ }
4013
+ .aui-reasoning-trigger-shimmer {
4014
+ --_mix-4: var(--_fg);
4015
+ }
4016
+ @supports (color: color-mix(in lab, red, red)) {
4017
+ .aui-reasoning-trigger-shimmer {
4018
+ --_mix-4: var(--_fg);
4019
+ @supports (color: color-mix(in lab, red, red)) {
4020
+ --_mix-4: color-mix(in oklch, var(--_fg), var(--_bg) 4%);
4021
+ }
4022
+ }
4023
+ }
4024
+ .aui-reasoning-trigger-shimmer {
4025
+ background:
4026
+ linear-gradient(
4027
+ calc(90deg + var(--shimmer-angle)),
4028
+ var(--_bg) calc(var(--_position) - var(--_spread) * 0.5),
4029
+ var(--_mix-96) calc(var(--_position) - var(--_spread) * 0.44),
4030
+ var(--_mix-83) calc(var(--_position) - var(--_spread) * 0.37),
4031
+ var(--_mix-67) calc(var(--_position) - var(--_spread) * 0.31),
4032
+ var(--_mix-50) calc(var(--_position) - var(--_spread) * 0.25),
4033
+ var(--_mix-33) calc(var(--_position) - var(--_spread) * 0.19),
4034
+ var(--_mix-17) calc(var(--_position) - var(--_spread) * 0.12),
4035
+ var(--_mix-4) calc(var(--_position) - var(--_spread) * 0.06),
4036
+ var(--_fg) var(--_position),
4037
+ var(--_mix-4) calc(var(--_position) + var(--_spread) * 0.06),
4038
+ var(--_mix-17) calc(var(--_position) + var(--_spread) * 0.12),
4039
+ var(--_mix-33) calc(var(--_position) + var(--_spread) * 0.19),
4040
+ var(--_mix-50) calc(var(--_position) + var(--_spread) * 0.25),
4041
+ var(--_mix-67) calc(var(--_position) + var(--_spread) * 0.31),
4042
+ var(--_mix-83) calc(var(--_position) + var(--_spread) * 0.37),
4043
+ var(--_mix-96) calc(var(--_position) + var(--_spread) * 0.44),
4044
+ var(--_bg) calc(var(--_position) + var(--_spread) * 0.5)) 0 0 / var(--_bg-width) 100% no-repeat;
4045
+ animation: tw-shimmer 1s linear 0s infinite backwards;
4046
+ animation-duration: calc((var(--_duration) + var(--_repeat-delay)) * 1ms);
4047
+ }
4048
+ @media (prefers-reduced-motion: reduce) {
4049
+ .aui-reasoning-trigger-shimmer {
4050
+ animation: none;
4051
+ }
4052
+ }
4053
+ .aui-root {
4054
+ position: fixed;
4055
+ right: calc(var(--spacing) * 4);
4056
+ bottom: calc(var(--spacing) * 4);
4057
+ width: calc(var(--spacing) * 11);
4058
+ height: calc(var(--spacing) * 11);
4059
+ z-index: 50;
4060
+ height: 500px;
4061
+ width: 400px;
4062
+ overflow: clip;
4063
+ overscroll-behavior: contain;
4064
+ border-radius: var(--radius-xl);
4065
+ border-style: var(--tw-border-style);
4066
+ border-width: 1px;
4067
+ background-color: var(--color-popover);
4068
+ padding: calc(var(--spacing) * 0);
4069
+ color: var(--color-popover-foreground);
4070
+ --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));
4071
+ box-shadow:
4072
+ var(--tw-inset-shadow),
4073
+ var(--tw-inset-ring-shadow),
4074
+ var(--tw-ring-offset-shadow),
4075
+ var(--tw-ring-shadow),
4076
+ var(--tw-shadow);
4077
+ --tw-outline-style: none;
4078
+ outline-style: none;
4079
+ }
4080
+ .aui-root[data-state=closed] {
4081
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
4082
+ }
4083
+ .aui-root[data-state=closed] {
4084
+ --tw-exit-opacity: calc(0/100);
4085
+ --tw-exit-opacity: 0;
4086
+ }
4087
+ .aui-root[data-state=closed] {
4088
+ --tw-exit-translate-y: calc(1/2*100%);
4089
+ }
4090
+ .aui-root[data-state=closed] {
4091
+ --tw-exit-translate-x: calc(1/2*100%);
4092
+ }
4093
+ .aui-root[data-state=closed] {
4094
+ --tw-exit-scale: 0;
4095
+ }
4096
+ .aui-root[data-state=open] {
4097
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
4098
+ }
4099
+ .aui-root[data-state=open] {
4100
+ --tw-enter-opacity: calc(0/100);
4101
+ --tw-enter-opacity: 0;
4102
+ }
4103
+ .aui-root[data-state=open] {
4104
+ --tw-enter-translate-y: calc(1/2*100%);
4105
+ }
4106
+ .aui-root[data-state=open] {
4107
+ --tw-enter-translate-x: calc(1/2*100%);
4108
+ }
4109
+ .aui-root[data-state=open] {
4110
+ --tw-enter-scale: 0;
4111
+ }
4112
+ .aui-root > .aui-thread-root {
4113
+ background-color: inherit;
4114
+ }
4115
+ .aui-root {
4116
+ gap: calc(var(--spacing) * 1);
4117
+ container-type: inline-size;
4118
+ display: flex;
4119
+ height: 100%;
4120
+ flex-direction: column;
4121
+ background-color: var(--color-background);
4122
+ }
4123
+ .aui-shiki-base pre {
4124
+ overflow-x: auto;
4125
+ }
4126
+ .aui-shiki-base pre {
4127
+ border-bottom-right-radius: var(--radius-lg);
4128
+ border-bottom-left-radius: var(--radius-lg);
4129
+ }
4130
+ .aui-shiki-base pre {
4131
+ background-color: hsl(var(--muted)) !important;
4132
+ @supports (color: color-mix(in lab, red, red)) {
4133
+ background-color: color-mix(in srgb, hsl(var(--muted)) 75%, transparent) !important;
4134
+ }
4135
+ }
4136
+ @supports (color: color-mix(in lab, red, red)) {
4137
+ .aui-shiki-base pre {
4138
+ background-color: color-mix(in srgb, hsl(var(--muted)) 75%, transparent) !important;
4139
+ @supports (color: color-mix(in lab, red, red)) {
4140
+ background-color: color-mix(in oklab, var(--color-muted) 75%, transparent) !important;
4141
+ }
4142
+ }
4143
+ }
4144
+ .aui-shiki-base pre {
4145
+ padding: calc(var(--spacing) * 4);
4146
+ }
4147
+ .aui-sidebar-content {
4148
+ padding-inline: calc(var(--spacing) * 2);
4149
+ }
4150
+ .aui-sidebar-footer {
4151
+ border-top-style: var(--tw-border-style);
4152
+ border-top-width: 1px;
4153
+ }
4154
+ .aui-sidebar-footer-heading {
4155
+ display: flex;
4156
+ flex-direction: column;
4157
+ gap: calc(var(--spacing) * 0.5);
4158
+ --tw-leading: 1;
4159
+ line-height: 1;
4160
+ }
4161
+ .aui-sidebar-footer-icon {
4162
+ width: calc(var(--spacing) * 4);
4163
+ height: calc(var(--spacing) * 4);
4164
+ }
4165
+ .aui-sidebar-footer-icon-wrapper {
4166
+ display: flex;
4167
+ aspect-ratio: 1 / 1;
4168
+ width: calc(var(--spacing) * 8);
4169
+ height: calc(var(--spacing) * 8);
4170
+ align-items: center;
4171
+ justify-content: center;
4172
+ border-radius: var(--radius-lg);
4173
+ background-color: var(--color-sidebar-primary);
4174
+ color: var(--color-sidebar-primary-foreground);
4175
+ }
4176
+ .aui-sidebar-footer-title {
4177
+ --tw-font-weight: var(--font-weight-semibold);
4178
+ font-weight: var(--font-weight-semibold);
4179
+ }
4180
+ .aui-sidebar-header {
4181
+ margin-bottom: calc(var(--spacing) * 2);
4182
+ border-bottom-style: var(--tw-border-style);
4183
+ border-bottom-width: 1px;
4184
+ }
4185
+ .aui-sidebar-header-content {
4186
+ display: flex;
4187
+ align-items: center;
4188
+ justify-content: space-between;
4189
+ }
4190
+ .aui-sidebar-header-heading {
4191
+ margin-right: calc(var(--spacing) * 6);
4192
+ display: flex;
4193
+ flex-direction: column;
4194
+ gap: calc(var(--spacing) * 0.5);
4195
+ --tw-leading: 1;
4196
+ line-height: 1;
4197
+ }
4198
+ .aui-sidebar-header-icon {
4199
+ width: calc(var(--spacing) * 4);
4200
+ height: calc(var(--spacing) * 4);
4201
+ }
4202
+ .aui-sidebar-header-icon-wrapper {
4203
+ display: flex;
4204
+ aspect-ratio: 1 / 1;
4205
+ width: calc(var(--spacing) * 8);
4206
+ height: calc(var(--spacing) * 8);
4207
+ align-items: center;
4208
+ justify-content: center;
4209
+ border-radius: var(--radius-lg);
4210
+ background-color: var(--color-sidebar-primary);
4211
+ color: var(--color-sidebar-primary-foreground);
4212
+ }
4213
+ .aui-sidebar-header-title {
4214
+ --tw-font-weight: var(--font-weight-semibold);
4215
+ font-weight: var(--font-weight-semibold);
4216
+ }
4217
+ .aui-thread-followup-suggestion {
4218
+ border-radius: calc(infinity * 1px);
4219
+ border-style: var(--tw-border-style);
4220
+ border-width: 1px;
4221
+ background-color: var(--color-background);
4222
+ padding-inline: calc(var(--spacing) * 3);
4223
+ padding-block: calc(var(--spacing) * 1);
4224
+ font-size: var(--text-sm);
4225
+ line-height: var(--tw-leading, var(--text-sm--line-height));
4226
+ transition-property:
4227
+ color,
4228
+ background-color,
4229
+ border-color,
4230
+ outline-color,
4231
+ text-decoration-color,
4232
+ fill,
4233
+ stroke,
4234
+ --tw-gradient-from,
4235
+ --tw-gradient-via,
4236
+ --tw-gradient-to;
4237
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
4238
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
4239
+ --tw-ease: var(--ease-in);
4240
+ transition-timing-function: var(--ease-in);
4241
+ }
4242
+ @media (hover: hover) {
4243
+ .aui-thread-followup-suggestion:hover {
4244
+ background-color: hsl(var(--muted));
4245
+ @supports (color: color-mix(in lab, red, red)) {
4246
+ background-color: color-mix(in srgb, hsl(var(--muted)) 80%, transparent);
4247
+ }
4248
+ }
4249
+ @supports (color: color-mix(in lab, red, red)) {
4250
+ .aui-thread-followup-suggestion:hover {
4251
+ background-color: color-mix(in srgb, hsl(var(--muted)) 80%, transparent);
4252
+ @supports (color: color-mix(in lab, red, red)) {
4253
+ background-color: color-mix(in oklab, var(--color-muted) 80%, transparent);
4254
+ }
4255
+ }
4256
+ }
4257
+ }
4258
+ .aui-thread-followup-suggestions {
4259
+ display: flex;
4260
+ min-height: calc(var(--spacing) * 8);
4261
+ align-items: center;
4262
+ justify-content: center;
4263
+ gap: calc(var(--spacing) * 2);
4264
+ }
4265
+ .aui-thread-list-item {
4266
+ display: flex;
4267
+ height: calc(var(--spacing) * 9);
4268
+ align-items: center;
4269
+ border-radius: var(--radius-lg);
4270
+ transition-property:
4271
+ color,
4272
+ background-color,
4273
+ border-color,
4274
+ outline-color,
4275
+ text-decoration-color,
4276
+ fill,
4277
+ stroke,
4278
+ --tw-gradient-from,
4279
+ --tw-gradient-via,
4280
+ --tw-gradient-to;
4281
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
4282
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
4283
+ }
4284
+ @media (hover: hover) {
4285
+ .aui-thread-list-item:hover {
4286
+ background-color: var(--color-muted);
4287
+ }
4288
+ }
4289
+ .aui-thread-list-item:focus-visible {
4290
+ background-color: var(--color-muted);
4291
+ }
4292
+ .aui-thread-list-item:focus-visible {
4293
+ --tw-outline-style: none;
4294
+ outline-style: none;
4295
+ }
4296
+ .aui-thread-list-item[data-active] {
4297
+ background-color: var(--color-muted);
4298
+ }
4299
+ .aui-thread-list-item-archive {
4300
+ margin-right: calc(var(--spacing) * 2);
4301
+ width: calc(var(--spacing) * 7);
4302
+ height: calc(var(--spacing) * 7);
4303
+ padding: calc(var(--spacing) * 0);
4304
+ opacity: 0%;
4305
+ transition-property: opacity;
4306
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
4307
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
4308
+ }
4309
+ @media (hover: hover) {
4310
+ .aui-thread-list-item-archive:is(:where(.group):hover *) {
4311
+ opacity: 100%;
4312
+ }
4313
+ }
4314
+ .aui-thread-list-item-archive {
4315
+ width: calc(var(--spacing) * 4);
4316
+ height: calc(var(--spacing) * 4);
4317
+ }
4318
+ .aui-thread-list-item-trigger {
4319
+ display: flex;
4320
+ height: 100%;
4321
+ flex: 1;
4322
+ align-items: center;
4323
+ overflow: hidden;
4324
+ text-overflow: ellipsis;
4325
+ white-space: nowrap;
4326
+ padding-inline: calc(var(--spacing) * 3);
4327
+ text-align: start;
4328
+ font-size: var(--text-sm);
4329
+ line-height: var(--tw-leading, var(--text-sm--line-height));
4330
+ }
4331
+ .aui-thread-list-new {
4332
+ height: calc(var(--spacing) * 9);
4333
+ justify-content: flex-start;
4334
+ gap: calc(var(--spacing) * 2);
4335
+ border-radius: var(--radius-lg);
4336
+ padding-inline: calc(var(--spacing) * 3);
4337
+ font-size: var(--text-sm);
4338
+ line-height: var(--tw-leading, var(--text-sm--line-height));
4339
+ }
4340
+ @media (hover: hover) {
4341
+ .aui-thread-list-new:hover {
4342
+ background-color: var(--color-muted);
4343
+ }
4344
+ }
4345
+ .aui-thread-list-new[data-active] {
4346
+ background-color: var(--color-muted);
4347
+ }
4348
+ .aui-thread-list-new {
4349
+ width: calc(var(--spacing) * 4);
4350
+ height: calc(var(--spacing) * 4);
4351
+ display: flex;
4352
+ flex-direction: column;
4353
+ gap: calc(var(--spacing) * 1);
4354
+ }
4355
+ .aui-thread-list-skeleton {
4356
+ height: calc(var(--spacing) * 4);
4357
+ width: 100%;
4358
+ }
4359
+ .aui-thread-list-skeleton-wrapper {
4360
+ display: flex;
4361
+ height: calc(var(--spacing) * 9);
4362
+ align-items: center;
4363
+ padding-inline: calc(var(--spacing) * 3);
4364
+ }
4365
+ .aui-thread-scroll-to-bottom {
4366
+ position: absolute;
4367
+ top: calc(var(--spacing) * -12);
4368
+ z-index: 10;
4369
+ align-self: center;
4370
+ border-radius: calc(infinity * 1px);
4371
+ padding: calc(var(--spacing) * 4);
4372
+ }
4373
+ .aui-thread-scroll-to-bottom:disabled {
4374
+ visibility: hidden;
4375
+ }
4376
+ .aui-thread-scroll-to-bottom:where(.dark, .dark *) {
4377
+ background-color: var(--color-background);
4378
+ }
4379
+ @media (hover: hover) {
4380
+ .aui-thread-scroll-to-bottom:where(.dark, .dark *):hover {
4381
+ background-color: var(--color-accent);
4382
+ }
4383
+ }
4384
+ .aui-thread-viewport {
4385
+ position: relative;
4386
+ display: flex;
4387
+ flex: 1;
4388
+ flex-direction: column;
4389
+ overflow-x: auto;
4390
+ overflow-y: scroll;
4391
+ scroll-behavior: smooth;
4392
+ padding-inline: calc(var(--spacing) * 4);
4393
+ padding-top: calc(var(--spacing) * 4);
4394
+ }
4395
+ .aui-thread-viewport-footer {
4396
+ position: sticky;
4397
+ bottom: calc(var(--spacing) * 0);
4398
+ margin-inline: auto;
4399
+ margin-top: auto;
4400
+ display: flex;
4401
+ width: 100%;
4402
+ max-width: var(--thread-max-width);
4403
+ flex-direction: column;
4404
+ gap: calc(var(--spacing) * 4);
4405
+ overflow: visible;
4406
+ border-top-left-radius: var(--radius-3xl);
4407
+ border-top-right-radius: var(--radius-3xl);
4408
+ background-color: var(--color-background);
4409
+ padding-bottom: calc(var(--spacing) * 4);
4410
+ }
4411
+ @media (width >= 48rem) {
4412
+ .aui-thread-viewport-footer {
4413
+ padding-bottom: calc(var(--spacing) * 6);
4414
+ }
4415
+ }
4416
+ .aui-thread-welcome-center {
4417
+ display: flex;
4418
+ width: 100%;
4419
+ flex-grow: 1;
4420
+ flex-direction: column;
4421
+ align-items: center;
4422
+ justify-content: center;
4423
+ }
4424
+ .aui-thread-welcome-message {
4425
+ display: flex;
4426
+ width: 100%;
4427
+ height: 100%;
4428
+ flex-direction: column;
4429
+ justify-content: center;
4430
+ padding-inline: calc(var(--spacing) * 4);
4431
+ }
4432
+ .aui-thread-welcome-message-inner {
4433
+ font-size: var(--text-2xl);
4434
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
4435
+ --tw-font-weight: var(--font-weight-semibold);
4436
+ font-weight: var(--font-weight-semibold);
4437
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
4438
+ font-size: var(--text-xl);
4439
+ line-height: var(--tw-leading, var(--text-xl--line-height));
4440
+ color: var(--color-muted-foreground);
4441
+ transition-delay: 75ms;
4442
+ --tw-duration: 200ms;
4443
+ transition-duration: 200ms;
4444
+ animation-delay: calc(75*1ms);
4445
+ animation-delay: 75ms;
4446
+ --tw-animation-delay: calc(75*1ms);
4447
+ --tw-animation-delay: 75ms;
4448
+ --tw-enter-opacity: 0;
4449
+ --tw-enter-translate-y: calc(1*var(--spacing));
4450
+ }
4451
+ .aui-thread-welcome-root {
4452
+ margin-inline: auto;
4453
+ margin-block: auto;
4454
+ display: flex;
4455
+ width: 100%;
4456
+ max-width: var(--thread-max-width);
4457
+ flex-grow: 1;
4458
+ flex-direction: column;
4459
+ }
4460
+ .aui-thread-welcome-suggestion {
4461
+ height: auto;
4462
+ width: 100%;
4463
+ flex-wrap: wrap;
4464
+ align-items: flex-start;
4465
+ justify-content: flex-start;
4466
+ gap: calc(var(--spacing) * 1);
4467
+ border-radius: var(--radius-2xl);
4468
+ border-style: var(--tw-border-style);
4469
+ border-width: 1px;
4470
+ padding-inline: calc(var(--spacing) * 4);
4471
+ padding-block: calc(var(--spacing) * 3);
4472
+ text-align: left;
4473
+ font-size: var(--text-sm);
4474
+ line-height: var(--tw-leading, var(--text-sm--line-height));
4475
+ transition-property:
4476
+ color,
4477
+ background-color,
4478
+ border-color,
4479
+ outline-color,
4480
+ text-decoration-color,
4481
+ fill,
4482
+ stroke,
4483
+ --tw-gradient-from,
4484
+ --tw-gradient-via,
4485
+ --tw-gradient-to;
4486
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
4487
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
4488
+ }
4489
+ @media (hover: hover) {
4490
+ .aui-thread-welcome-suggestion:hover {
4491
+ background-color: var(--color-muted);
4492
+ }
4493
+ }
4494
+ @container (width >= 28rem) {
4495
+ .aui-thread-welcome-suggestion {
4496
+ flex-direction: column;
4497
+ }
4498
+ }
4499
+ .aui-thread-welcome-suggestion-display {
4500
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
4501
+ --tw-duration: 200ms;
4502
+ transition-duration: 200ms;
4503
+ animation-fill-mode: both;
4504
+ --tw-animation-fill-mode: both;
4505
+ --tw-enter-opacity: 0;
4506
+ --tw-enter-translate-y: calc(2*var(--spacing));
4507
+ }
4508
+ .aui-thread-welcome-suggestion-display:nth-child(n+3) {
4509
+ display: none;
4510
+ }
4511
+ @container (width >= 28rem) {
4512
+ .aui-thread-welcome-suggestion-display:nth-child(n+3) {
4513
+ display: block;
4514
+ }
4515
+ }
4516
+ .aui-thread-welcome-suggestion-text-1 {
4517
+ --tw-font-weight: var(--font-weight-medium);
4518
+ font-weight: var(--font-weight-medium);
4519
+ }
4520
+ .aui-thread-welcome-suggestion-text-2 {
4521
+ color: var(--color-muted-foreground);
4522
+ }
4523
+ .aui-thread-welcome-suggestions {
4524
+ display: grid;
4525
+ width: 100%;
4526
+ gap: calc(var(--spacing) * 2);
4527
+ padding-bottom: calc(var(--spacing) * 4);
4528
+ }
4529
+ @container (width >= 28rem) {
4530
+ .aui-thread-welcome-suggestions {
4531
+ grid-template-columns: repeat(2, minmax(0, 1fr));
4532
+ }
4533
+ }
4534
+ .aui-tool-fallback-args-root {
4535
+ padding-inline: calc(var(--spacing) * 4);
4536
+ opacity: 60%;
4537
+ }
4538
+ .aui-tool-fallback-args-value {
4539
+ white-space: pre-wrap;
4540
+ }
4541
+ .aui-tool-fallback-cancelled-header {
4542
+ --tw-font-weight: var(--font-weight-semibold);
4543
+ font-weight: var(--font-weight-semibold);
4544
+ color: var(--color-muted-foreground);
4545
+ }
4546
+ .aui-tool-fallback-cancelled-reason {
4547
+ color: var(--color-muted-foreground);
4548
+ }
4549
+ .aui-tool-fallback-cancelled-root {
4550
+ padding-inline: calc(var(--spacing) * 4);
4551
+ }
4552
+ .aui-tool-fallback-content {
4553
+ display: flex;
4554
+ flex-direction: column;
4555
+ gap: calc(var(--spacing) * 2);
4556
+ border-top-style: var(--tw-border-style);
4557
+ border-top-width: 1px;
4558
+ padding-top: calc(var(--spacing) * 2);
4559
+ }
4560
+ .aui-tool-fallback-header {
4561
+ display: flex;
4562
+ align-items: center;
4563
+ gap: calc(var(--spacing) * 2);
4564
+ padding-inline: calc(var(--spacing) * 4);
4565
+ }
4566
+ .aui-tool-fallback-icon {
4567
+ color: var(--color-muted-foreground);
4568
+ width: calc(var(--spacing) * 4);
4569
+ height: calc(var(--spacing) * 4);
4570
+ }
4571
+ .aui-tool-fallback-result-content {
4572
+ white-space: pre-wrap;
4573
+ }
4574
+ .aui-tool-fallback-result-header {
4575
+ --tw-font-weight: var(--font-weight-semibold);
4576
+ font-weight: var(--font-weight-semibold);
4577
+ }
4578
+ .aui-tool-fallback-result-root {
4579
+ border-top-style: var(--tw-border-style);
4580
+ border-top-width: 1px;
4581
+ --tw-border-style: dashed;
4582
+ border-style: dashed;
4583
+ padding-inline: calc(var(--spacing) * 4);
4584
+ padding-top: calc(var(--spacing) * 2);
4585
+ }
4586
+ .aui-tool-fallback-root {
4587
+ margin-bottom: calc(var(--spacing) * 4);
4588
+ display: flex;
4589
+ width: 100%;
4590
+ flex-direction: column;
4591
+ gap: calc(var(--spacing) * 3);
4592
+ border-radius: var(--radius-lg);
4593
+ border-style: var(--tw-border-style);
4594
+ border-width: 1px;
4595
+ padding-block: calc(var(--spacing) * 3);
4596
+ border-color: hsl(var(--muted-foreground));
4597
+ @supports (color: color-mix(in lab, red, red)) {
4598
+ border-color: color-mix(in srgb, hsl(var(--muted-foreground)) 30%, transparent);
4599
+ }
4600
+ }
4601
+ @supports (color: color-mix(in lab, red, red)) {
4602
+ .aui-tool-fallback-root {
4603
+ border-color: color-mix(in srgb, hsl(var(--muted-foreground)) 30%, transparent);
4604
+ @supports (color: color-mix(in lab, red, red)) {
4605
+ border-color: color-mix(in oklab, var(--color-muted-foreground) 30%, transparent);
4606
+ }
4607
+ }
4608
+ }
4609
+ .aui-tool-fallback-root {
4610
+ background-color: hsl(var(--muted));
4611
+ @supports (color: color-mix(in lab, red, red)) {
4612
+ background-color: color-mix(in srgb, hsl(var(--muted)) 30%, transparent);
4613
+ }
4614
+ }
4615
+ @supports (color: color-mix(in lab, red, red)) {
4616
+ .aui-tool-fallback-root {
4617
+ background-color: color-mix(in srgb, hsl(var(--muted)) 30%, transparent);
4618
+ @supports (color: color-mix(in lab, red, red)) {
4619
+ background-color: color-mix(in oklab, var(--color-muted) 30%, transparent);
4620
+ }
4621
+ }
4622
+ }
4623
+ .aui-tool-fallback-title {
4624
+ flex-grow: 1;
4625
+ color: var(--color-muted-foreground);
4626
+ text-decoration-line: line-through;
4627
+ }
4628
+ .aui-user-action-bar-root {
4629
+ display: flex;
4630
+ flex-direction: column;
4631
+ align-items: flex-end;
4632
+ }
4633
+ .aui-user-action-bar-wrapper {
4634
+ position: absolute;
4635
+ top: calc(1/2 * 100%);
4636
+ left: calc(var(--spacing) * 0);
4637
+ --tw-translate-x: -100%;
4638
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
4639
+ translate: var(--tw-translate-x) var(--tw-translate-y);
4640
+ padding-right: calc(var(--spacing) * 2);
4641
+ }
4642
+ .aui-user-action-edit {
4643
+ padding: calc(var(--spacing) * 4);
4644
+ }
4645
+ .aui-user-branch-picker {
4646
+ grid-column: 1 / -1;
4647
+ grid-column-start: 1;
4648
+ grid-row-start: 3;
4649
+ margin-right: calc(var(--spacing) * -1);
4650
+ justify-content: flex-end;
4651
+ }
4652
+ .aui-user-message-attachments-end {
4653
+ grid-column: 1 / -1;
4654
+ grid-column-start: 1;
4655
+ grid-row-start: 1;
4656
+ display: flex;
4657
+ width: 100%;
4658
+ flex-direction: row;
4659
+ justify-content: flex-end;
4660
+ gap: calc(var(--spacing) * 2);
4661
+ }
4662
+ .aui-user-message-content {
4663
+ border-radius: var(--radius-2xl);
4664
+ background-color: var(--color-muted);
4665
+ padding-inline: calc(var(--spacing) * 4);
4666
+ padding-block: calc(var(--spacing) * 2.5);
4667
+ overflow-wrap: break-word;
4668
+ color: var(--color-foreground);
4669
+ }
4670
+ .aui-user-message-content-wrapper {
4671
+ position: relative;
4672
+ grid-column-start: 2;
4673
+ min-width: calc(var(--spacing) * 0);
4674
+ }
4675
+ .aui-user-message-root {
4676
+ margin-inline: auto;
4677
+ display: grid;
4678
+ width: 100%;
4679
+ max-width: var(--thread-max-width);
4680
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
4681
+ grid-auto-rows: auto;
4682
+ grid-template-columns: minmax(72px, 1fr) auto;
4683
+ align-content: flex-start;
4684
+ row-gap: calc(var(--spacing) * 2);
4685
+ padding-inline: calc(var(--spacing) * 2);
4686
+ padding-block: calc(var(--spacing) * 3);
4687
+ --tw-duration: 150ms;
4688
+ transition-duration: 150ms;
4689
+ --tw-enter-opacity: 0;
4690
+ --tw-enter-translate-y: calc(1*var(--spacing));
4691
+ }
4692
+ .aui-user-message-root:where(> *) {
4693
+ grid-column-start: 2;
4694
+ }
4695
+ @property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
4696
+ @property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
4697
+ @property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
4698
+ @property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
4699
+ @keyframes enter {
4700
+ from {
4701
+ opacity: var(--tw-enter-opacity,1);
4702
+ transform: translate3d(var(--tw-enter-translate-x,0), var(--tw-enter-translate-y,0), 0)scale3d(var(--tw-enter-scale,1), var(--tw-enter-scale,1), var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));
4703
+ filter: blur(var(--tw-enter-blur,0));
4704
+ }
4705
+ }
4706
+ @keyframes exit {
4707
+ to {
4708
+ opacity: var(--tw-exit-opacity,1);
4709
+ transform: translate3d(var(--tw-exit-translate-x,0), var(--tw-exit-translate-y,0), 0)scale3d(var(--tw-exit-scale,1), var(--tw-exit-scale,1), var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));
4710
+ filter: blur(var(--tw-exit-blur,0));
4711
+ }
4712
+ }
4713
+ @keyframes collapsible-down {
4714
+ from {
4715
+ height: 0;
4716
+ }
4717
+ to {
4718
+ height: var(--radix-collapsible-content-height,var(--bits-collapsible-content-height,var(--reka-collapsible-content-height,var(--kb-collapsible-content-height,auto))));
4719
+ }
4720
+ }
4721
+ @keyframes collapsible-up {
4722
+ from {
4723
+ height: var(--radix-collapsible-content-height,var(--bits-collapsible-content-height,var(--reka-collapsible-content-height,var(--kb-collapsible-content-height,auto))));
4724
+ }
4725
+ to {
4726
+ height: 0;
4727
+ }
4728
+ }
4729
+ @keyframes tw-shimmer {
4730
+ from {
4731
+ background-position: 100% 0;
4732
+ }
4733
+ }
4734
+ @layer properties {
4735
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
4736
+ :root,
4737
+ :host {
4738
+ --shimmer-track-height: 200px;
4739
+ --shimmer-angle: 15deg;
4740
+ }
4741
+ *,
4742
+ ::before,
4743
+ ::after,
4744
+ ::backdrop {
4745
+ --tw-animation-delay: 0s;
4746
+ --tw-animation-direction: normal;
4747
+ --tw-animation-duration: initial;
4748
+ --tw-animation-fill-mode: none;
4749
+ --tw-animation-iteration-count: 1;
4750
+ --tw-enter-blur: 0;
4751
+ --tw-enter-opacity: 1;
4752
+ --tw-enter-rotate: 0;
4753
+ --tw-enter-scale: 1;
4754
+ --tw-enter-translate-x: 0;
4755
+ --tw-enter-translate-y: 0;
4756
+ --tw-exit-blur: 0;
4757
+ --tw-exit-opacity: 1;
4758
+ --tw-exit-rotate: 0;
4759
+ --tw-exit-scale: 1;
4760
+ --tw-exit-translate-x: 0;
4761
+ --tw-exit-translate-y: 0;
4762
+ --tw-border-style: solid;
4763
+ --tw-shadow: 0 0 #0000;
4764
+ --tw-shadow-color: initial;
4765
+ --tw-shadow-alpha: 100%;
4766
+ --tw-inset-shadow: 0 0 #0000;
4767
+ --tw-inset-shadow-color: initial;
4768
+ --tw-inset-shadow-alpha: 100%;
4769
+ --tw-ring-color: initial;
4770
+ --tw-ring-shadow: 0 0 #0000;
4771
+ --tw-inset-ring-color: initial;
4772
+ --tw-inset-ring-shadow: 0 0 #0000;
4773
+ --tw-ring-inset: initial;
4774
+ --tw-ring-offset-width: 0px;
4775
+ --tw-ring-offset-color: #fff;
4776
+ --tw-ring-offset-shadow: 0 0 #0000;
4777
+ --tw-leading: initial;
4778
+ --tw-duration: initial;
4779
+ --tw-font-weight: initial;
4780
+ --tw-tracking: initial;
4781
+ --tw-border-spacing-x: 0;
4782
+ --tw-border-spacing-y: 0;
4783
+ --tw-scale-x: 1;
4784
+ --tw-scale-y: 1;
4785
+ --tw-scale-z: 1;
4786
+ --tw-ease: initial;
4787
+ --tw-space-y-reverse: 0;
4788
+ --tw-translate-x: 0;
4789
+ --tw-translate-y: 0;
4790
+ --tw-translate-z: 0;
4791
+ }
4792
+ }
4793
+ }
4794
+ @keyframes aui-pulse {
4795
+ 50% {
4796
+ opacity: 0.5;
4797
+ }
4798
+ }
4799
+ :where(.aui-md[data-status=running]):empty::after,
4800
+ :where(.aui-md[data-status=running]) > :where(:not(ol):not(ul):not(pre)):last-child::after,
4801
+ :where(.aui-md[data-status=running]) > pre:last-child code::after,
4802
+ :where(.aui-md[data-status=running]) > :where(:is(ol, ul):last-child) > :where(li:last-child:not(:has(* > li)))::after,
4803
+ :where(.aui-md[data-status=running]) > :where(:is(ol, ul):last-child) > :where(li:last-child) > :where(:is(ol, ul):last-child) > :where(li:last-child:not(:has(* > li)))::after,
4804
+ :where(.aui-md[data-status=running]) > :where(:is(ol, ul):last-child) > :where(li:last-child) > :where(:is(ol, ul):last-child) > :where(li:last-child) > :where(:is(ol, ul):last-child) > :where(li:last-child)::after {
4805
+ animation: aui-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
4806
+ font-family:
4807
+ ui-sans-serif,
4808
+ system-ui,
4809
+ sans-serif,
4810
+ "Apple Color Emoji",
4811
+ "Segoe UI Emoji",
4812
+ "Segoe UI Symbol",
4813
+ "Noto Color Emoji";
4814
+ --aui-content: "\25cf";
4815
+ content: var(--aui-content);
4816
+ margin-left: 0.25rem;
4817
+ margin-right: 0.25rem;
4818
+ }
4819
+ :root {
4820
+ --radius: 0.625rem;
4821
+ --background: 240 10% 10%;
4822
+ --foreground: 0 0% 98%;
4823
+ --card: 240 10% 12%;
4824
+ --card-foreground: 0 0% 98%;
4825
+ --popover: 240 10% 12%;
4826
+ --popover-foreground: 0 0% 98%;
4827
+ --primary: 43 75% 50%;
4828
+ --primary-foreground: 240 10% 10%;
4829
+ --secondary: 240 10% 17%;
4830
+ --secondary-foreground: 0 0% 98%;
4831
+ --muted: 240 10% 17%;
4832
+ --muted-foreground: 240 5% 65%;
4833
+ --accent: 43 75% 50%;
4834
+ --accent-foreground: 240 10% 10%;
4835
+ --destructive: 0 84% 60%;
4836
+ --destructive-foreground: 0 0% 98%;
4837
+ --border: 240 10% 20%;
4838
+ --input: 240 10% 20%;
4839
+ --ring: 43 75% 50%;
4840
+ }
4841
+ .light {
4842
+ --background: 0 0% 100%;
4843
+ --foreground: 240 10% 10%;
4844
+ --card: 0 0% 100%;
4845
+ --card-foreground: 240 10% 10%;
4846
+ --popover: 0 0% 100%;
4847
+ --popover-foreground: 240 10% 10%;
4848
+ --primary: 43 75% 45%;
4849
+ --primary-foreground: 0 0% 98%;
4850
+ --secondary: 240 5% 96%;
4851
+ --secondary-foreground: 240 10% 10%;
4852
+ --muted: 240 5% 96%;
4853
+ --muted-foreground: 240 5% 45%;
4854
+ --accent: 43 75% 45%;
4855
+ --accent-foreground: 0 0% 98%;
4856
+ --destructive: 0 84% 60%;
4857
+ --destructive-foreground: 0 0% 98%;
4858
+ --border: 240 5% 90%;
4859
+ --input: 240 5% 90%;
4860
+ --ring: 43 75% 45%;
4861
+ }
4862
+ @property --tw-border-spacing-x { syntax: "<length>"; inherits: false; initial-value: 0; }
4863
+ @property --tw-border-spacing-y { syntax: "<length>"; inherits: false; initial-value: 0; }
4864
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
4865
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
4866
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
4867
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
4868
+ @property --tw-leading { syntax: "*"; inherits: false; }
4869
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
4870
+ @property --tw-tracking { syntax: "*"; inherits: false; }
4871
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
4872
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
4873
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
4874
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
4875
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
4876
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
4877
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
4878
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
4879
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
4880
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
4881
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
4882
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
4883
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
4884
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
4885
+ @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
4886
+ @property --tw-duration { syntax: "*"; inherits: false; }
4887
+ @property --tw-ease { syntax: "*"; inherits: false; }
4888
+ @property --tw-content { syntax: "*"; initial-value: ""; inherits: false; }
4889
+ @keyframes spin {
4890
+ to {
4891
+ transform: rotate(360deg);
4892
+ }
4893
+ }
4894
+ @layer properties {
4895
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
4896
+ :root,
4897
+ :host {
4898
+ --shimmer-track-height: 200px;
4899
+ --shimmer-angle: 15deg;
4900
+ }
4901
+ *,
4902
+ ::before,
4903
+ ::after,
4904
+ ::backdrop {
4905
+ --tw-border-spacing-x: 0;
4906
+ --tw-border-spacing-y: 0;
4907
+ --tw-translate-x: 0;
4908
+ --tw-translate-y: 0;
4909
+ --tw-translate-z: 0;
4910
+ --tw-border-style: solid;
4911
+ --tw-leading: initial;
4912
+ --tw-font-weight: initial;
4913
+ --tw-tracking: initial;
4914
+ --tw-shadow: 0 0 #0000;
4915
+ --tw-shadow-color: initial;
4916
+ --tw-shadow-alpha: 100%;
4917
+ --tw-inset-shadow: 0 0 #0000;
4918
+ --tw-inset-shadow-color: initial;
4919
+ --tw-inset-shadow-alpha: 100%;
4920
+ --tw-ring-color: initial;
4921
+ --tw-ring-shadow: 0 0 #0000;
4922
+ --tw-inset-ring-color: initial;
4923
+ --tw-inset-ring-shadow: 0 0 #0000;
4924
+ --tw-ring-inset: initial;
4925
+ --tw-ring-offset-width: 0px;
4926
+ --tw-ring-offset-color: #fff;
4927
+ --tw-ring-offset-shadow: 0 0 #0000;
4928
+ --tw-outline-style: solid;
4929
+ --tw-duration: initial;
4930
+ --tw-ease: initial;
4931
+ --tw-content: "";
4932
+ --tw-animation-delay: 0s;
4933
+ --tw-animation-direction: normal;
4934
+ --tw-animation-duration: initial;
4935
+ --tw-animation-fill-mode: none;
4936
+ --tw-animation-iteration-count: 1;
4937
+ --tw-enter-blur: 0;
4938
+ --tw-enter-opacity: 1;
4939
+ --tw-enter-rotate: 0;
4940
+ --tw-enter-scale: 1;
4941
+ --tw-enter-translate-x: 0;
4942
+ --tw-enter-translate-y: 0;
4943
+ --tw-exit-blur: 0;
4944
+ --tw-exit-opacity: 1;
4945
+ --tw-exit-rotate: 0;
4946
+ --tw-exit-scale: 1;
4947
+ --tw-exit-translate-x: 0;
4948
+ --tw-exit-translate-y: 0;
4949
+ --tw-scale-x: 1;
4950
+ --tw-scale-y: 1;
4951
+ --tw-scale-z: 1;
4952
+ --tw-space-y-reverse: 0;
4953
+ }
4954
+ }
4955
+ }
4956
+ /*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */