@yushaw/sanqian-chat 0.1.1 → 0.2.1

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,3674 @@
1
+ /* Auto-generated from coreCss.ts + preflightCss.ts - DO NOT EDIT */
2
+ /* Run: npm run build:css */
3
+
4
+ /**
5
+ * @yushaw/sanqian-chat CSS Variables
6
+ *
7
+ * Design tokens for chat UI theming.
8
+ * Based on Sanqian Notes design system for consistency.
9
+ *
10
+ * Usage in Tailwind:
11
+ * - bg-chat-bg, text-chat-text, border-chat-border, etc.
12
+ */
13
+
14
+ /* ========================================
15
+ Base Font (Sanqian style)
16
+ ======================================== */
17
+ .chat-window-container,
18
+ .chat-input-form,
19
+ [class*="chat-"] {
20
+ font-family: system-ui, -apple-system, 'PingFang SC', 'Microsoft YaHei UI', 'Microsoft YaHei', sans-serif;
21
+ }
22
+
23
+ /* ========================================
24
+ Prevent text selection on UI elements
25
+ ======================================== */
26
+ .chat-window-container,
27
+ .chat-header-icon-btn,
28
+ .chat-header-logo,
29
+ .chat-logo-wrapper,
30
+ .chat-tooltip,
31
+ .chat-divider-border {
32
+ -webkit-user-select: none;
33
+ user-select: none;
34
+ }
35
+
36
+ /* Allow text selection in message content and input */
37
+ .chat-input-textarea,
38
+ .prose,
39
+ .message-bubble-wrapper {
40
+ -webkit-user-select: text;
41
+ user-select: text;
42
+ }
43
+
44
+ /* ========================================
45
+ Font Size Scaling
46
+ Applies zoom to scale entire chat UI including rem units.
47
+ small: 13px (0.929x), normal: 14px (1x), large: 16px (1.143x), extra-large: 18px (1.286x)
48
+ ======================================== */
49
+ [data-chat-font-size="small"] {
50
+ zoom: 0.929;
51
+ }
52
+ [data-chat-font-size="large"] {
53
+ zoom: 1.143;
54
+ }
55
+ [data-chat-font-size="extra-large"] {
56
+ zoom: 1.286;
57
+ }
58
+
59
+ /* ========================================
60
+ Code Font
61
+ ======================================== */
62
+ code {
63
+ font-family: 'Iosevka Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
64
+ }
65
+
66
+ :root {
67
+ /* ========================================
68
+ Background Colors
69
+ ======================================== */
70
+ --chat-bg: #f5f5f7;
71
+ --chat-surface: #fbfbfd;
72
+ --chat-card: #ffffff;
73
+ /* ========================================
74
+ Border Colors
75
+ ======================================== */
76
+ --chat-border: #e5e5ea;
77
+ --chat-divider: #e5e5ea;
78
+ --chat-border-focus: rgba(0, 0, 0, 0.12);
79
+ --chat-hover: rgba(0, 0, 0, 0.05);
80
+ /* ========================================
81
+ Text Colors
82
+ ======================================== */
83
+ --chat-text: #1d1d1f;
84
+ --chat-muted: #6e6e73;
85
+ /* ========================================
86
+ Accent Colors
87
+ ======================================== */
88
+ --chat-accent: #e85d75;
89
+ --chat-accent-soft: #fad0da;
90
+ --chat-selection: #fbe7ec;
91
+ /* ========================================
92
+ Status Colors
93
+ ======================================== */
94
+ --chat-success: #34c759;
95
+ --chat-error: #ff3b30;
96
+ --chat-warning: #ff9500;
97
+ --chat-info: #007aff;
98
+ /* ========================================
99
+ Shadows
100
+ ======================================== */
101
+ --chat-shadow-soft: 0 4px 16px rgba(15, 23, 42, 0.05), 0 1px 4px rgba(15, 23, 42, 0.03);
102
+ --chat-shadow-elevated: 0 10px 26px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.06);
103
+ /* ========================================
104
+ Scrollbar
105
+ ======================================== */
106
+ --chat-scrollbar: rgba(0, 0, 0, 0.18);
107
+ /* ========================================
108
+ Message Bubbles
109
+ ======================================== */
110
+ --chat-bubble-user: #3b82f6;
111
+ --chat-bubble-user-text: #ffffff;
112
+ --chat-bubble-assistant: var(--chat-surface);
113
+ --chat-bubble-assistant-text: var(--chat-text);
114
+ /* ========================================
115
+ Code Blocks
116
+ ======================================== */
117
+ --chat-code-bg: rgba(0, 0, 0, 0.03);
118
+ --chat-code-border: var(--chat-border);
119
+ --color-bg: var(--chat-bg);
120
+ --color-card: var(--chat-card);
121
+ --color-card-solid: var(--chat-card);
122
+ --color-surface: var(--chat-surface);
123
+ --color-border: var(--chat-border);
124
+ --color-divider: var(--chat-divider);
125
+ --color-selection: var(--chat-selection);
126
+ --color-accent: var(--chat-accent);
127
+ --color-accent-soft: var(--chat-accent-soft);
128
+ --color-text: var(--chat-text);
129
+ --color-muted: var(--chat-muted);
130
+ --shadow-soft: var(--chat-shadow-soft);
131
+ --shadow-elevated: var(--chat-shadow-elevated);
132
+ }
133
+
134
+ /* ========================================
135
+ Dark Mode
136
+ ======================================== */
137
+
138
+ .dark,
139
+ :root.dark {
140
+ --chat-bg: #1a1a1a;
141
+ --chat-surface: #2d2d2d;
142
+ --chat-card: #242424;
143
+ --chat-border: #333333;
144
+ --chat-divider: #333333;
145
+ --chat-border-focus: rgba(255, 255, 255, 0.12);
146
+ --chat-hover: rgba(255, 255, 255, 0.08);
147
+ --chat-text: #ffffff;
148
+ --chat-muted: #aeaeb2;
149
+ --chat-accent: #e85d75;
150
+ --chat-accent-soft: #4a2a32;
151
+ --chat-selection: #3a2028;
152
+ --chat-shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.2), 0 1px 4px rgba(0, 0, 0, 0.1);
153
+ --chat-shadow-elevated: 0 10px 26px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
154
+ --chat-scrollbar: rgba(255, 255, 255, 0.18);
155
+ --chat-bubble-user: #3b82f6;
156
+ --chat-bubble-user-text: #ffffff;
157
+ --chat-bubble-assistant: var(--chat-surface);
158
+ --chat-bubble-assistant-text: var(--chat-text);
159
+ --chat-code-bg: rgba(255, 255, 255, 0.05);
160
+ --chat-code-border: var(--chat-border);
161
+
162
+ /* Re-map --color-* for dark mode (needed when .dark is on container, not :root) */
163
+ --color-bg: var(--chat-bg);
164
+ --color-card: var(--chat-card);
165
+ --color-card-solid: var(--chat-card);
166
+ --color-surface: var(--chat-surface);
167
+ --color-border: var(--chat-border);
168
+ --color-divider: var(--chat-divider);
169
+ --color-selection: var(--chat-selection);
170
+ --color-accent: var(--chat-accent);
171
+ --color-accent-soft: var(--chat-accent-soft);
172
+ --color-text: var(--chat-text);
173
+ --color-muted: var(--chat-muted);
174
+ }
175
+
176
+ /* ========================================
177
+ Scrollbar Styling
178
+ ======================================== */
179
+
180
+ .chat-scrollbar {
181
+ scrollbar-width: thin;
182
+ scrollbar-color: transparent transparent;
183
+ }
184
+
185
+ .chat-scrollbar:hover {
186
+ scrollbar-color: var(--chat-scrollbar) transparent;
187
+ }
188
+
189
+ .chat-scrollbar::-webkit-scrollbar {
190
+ width: 6px;
191
+ height: 6px;
192
+ }
193
+
194
+ .chat-scrollbar::-webkit-scrollbar-track {
195
+ background: transparent;
196
+ }
197
+
198
+ .chat-scrollbar::-webkit-scrollbar-thumb {
199
+ background: transparent;
200
+ border-radius: 3px;
201
+ }
202
+
203
+ .chat-scrollbar:hover::-webkit-scrollbar-thumb {
204
+ background: var(--chat-scrollbar);
205
+ }
206
+
207
+ /* ========================================
208
+ Animations
209
+ ======================================== */
210
+
211
+ @keyframes chat-cursor-blink {
212
+ 0%, 49% {
213
+ opacity: 1;
214
+ }
215
+
216
+ 50%, 100% {
217
+ opacity: 0;
218
+ }
219
+ }
220
+
221
+ @keyframes chat-cursor-breathing {
222
+ 0%, 100% {
223
+ opacity: 1;
224
+ }
225
+
226
+ 50% {
227
+ opacity: 0.4;
228
+ }
229
+ }
230
+
231
+ .chat-cursor-blink {
232
+ animation: chat-cursor-blink 1s step-end infinite;
233
+ }
234
+
235
+ .chat-cursor-breathing {
236
+ animation: chat-cursor-breathing 1s ease-in-out infinite;
237
+ }
238
+
239
+ @keyframes chat-fade-in {
240
+ from {
241
+ opacity: 0;
242
+ transform: translateY(4px);
243
+ }
244
+
245
+ to {
246
+ opacity: 1;
247
+ transform: translateY(0);
248
+ }
249
+ }
250
+
251
+ .chat-fade-in {
252
+ animation: chat-fade-in 0.2s ease-out;
253
+ }
254
+
255
+ /* ========================================
256
+ Prose Overrides
257
+ ======================================== */
258
+
259
+ .prose {
260
+ --tw-prose-body: currentColor !important;
261
+ --tw-prose-headings: currentColor !important;
262
+ --tw-prose-lead: currentColor !important;
263
+ --tw-prose-links: var(--chat-accent) !important;
264
+ --tw-prose-bold: currentColor !important;
265
+ --tw-prose-counters: var(--chat-muted) !important;
266
+ --tw-prose-bullets: var(--chat-muted) !important;
267
+ --tw-prose-hr: var(--chat-divider) !important;
268
+ --tw-prose-quotes: var(--chat-muted) !important;
269
+ --tw-prose-quote-borders: var(--chat-accent) !important;
270
+ --tw-prose-captions: var(--chat-muted) !important;
271
+ --tw-prose-code: currentColor !important;
272
+ --tw-prose-pre-code: currentColor !important;
273
+ --tw-prose-pre-bg: var(--chat-code-bg) !important;
274
+ --tw-prose-th-borders: var(--chat-divider) !important;
275
+ --tw-prose-td-borders: var(--chat-divider) !important;
276
+ }
277
+
278
+ /* Override streamdown's default space-y-4 for compact layout */
279
+
280
+ .prose .space-y-4 > * + * {
281
+ margin-top: 0.25rem !important;
282
+ }
283
+
284
+ .prose .space-y-4 {
285
+ --tw-space-y-reverse: 0 !important;
286
+ }
287
+
288
+ /* Force list bullets to display */
289
+
290
+ .prose ul {
291
+ list-style-type: disc !important;
292
+ padding-left: 1.25rem !important;
293
+ }
294
+
295
+ .prose ol {
296
+ list-style-type: decimal !important;
297
+ padding-left: 1.25rem !important;
298
+ }
299
+
300
+ .prose li {
301
+ display: list-item !important;
302
+ margin-top: 0 !important;
303
+ margin-bottom: 0 !important;
304
+ padding-top: 0 !important;
305
+ padding-bottom: 0 !important;
306
+ }
307
+
308
+ .prose :is(p, li, h1, h2, h3, h4, h5, h6):last-child {
309
+ color: inherit;
310
+ }
311
+
312
+ .prose p:has(img:nth-child(2)) {
313
+ display: flex;
314
+ flex-wrap: wrap;
315
+ gap: 0.5rem;
316
+ }
317
+
318
+ .prose p:has(img:nth-child(2)) img {
319
+ max-width: calc(50% - 0.25rem);
320
+ height: auto;
321
+ object-fit: cover;
322
+ cursor: pointer;
323
+ }
324
+
325
+ .prose p:has(img:nth-child(3)) img {
326
+ max-width: calc(33.333% - 0.333rem);
327
+ }
328
+
329
+ [data-streamdown="code-block"] {
330
+ position: relative;
331
+ border: none !important;
332
+ border-radius: 6px !important;
333
+ overflow: visible !important;
334
+ background: transparent !important;
335
+ margin: 6px 0 !important;
336
+ }
337
+
338
+ [data-streamdown="code-block-header"] {
339
+ position: absolute !important;
340
+ top: 14px !important;
341
+ right: 8px !important;
342
+ z-index: 10;
343
+ padding: 0 !important;
344
+ background: transparent !important;
345
+ border: none !important;
346
+ opacity: 0;
347
+ transition: opacity 150ms ease;
348
+ }
349
+
350
+ [data-streamdown="code-block"]:hover [data-streamdown="code-block-header"] {
351
+ opacity: 1;
352
+ }
353
+
354
+ [data-streamdown="code-block-header"] > span:first-child {
355
+ font-size: 11px;
356
+ color: var(--color-muted);
357
+ text-transform: lowercase;
358
+ margin-right: 8px;
359
+ }
360
+
361
+ [data-streamdown="code-block-header"] > div {
362
+ display: flex;
363
+ gap: 4px;
364
+ }
365
+
366
+ [data-streamdown="code-block-header"] button {
367
+ padding: 4px !important;
368
+ border: none !important;
369
+ border-radius: 4px !important;
370
+ background: var(--color-surface) !important;
371
+ opacity: 0.7;
372
+ cursor: pointer;
373
+ }
374
+
375
+ [data-streamdown="code-block-header"] button:hover {
376
+ opacity: 1;
377
+ background: var(--color-border) !important;
378
+ }
379
+
380
+ [data-streamdown="code-block-header"] svg {
381
+ color: var(--color-muted) !important;
382
+ width: 12px !important;
383
+ height: 12px !important;
384
+ }
385
+
386
+ [data-streamdown="code-block-header"] button:hover svg {
387
+ color: var(--color-text) !important;
388
+ }
389
+
390
+ [data-streamdown="code-block-body"] {
391
+ padding: 8px 12px !important;
392
+ background: rgba(0, 0, 0, 0.02) !important;
393
+ border-radius: 6px !important;
394
+ font-size: 13px !important;
395
+ line-height: 1.5 !important;
396
+ white-space: pre !important;
397
+ overflow-x: auto !important;
398
+ }
399
+
400
+ [data-streamdown="code-block-body"] code {
401
+ white-space: pre !important;
402
+ display: block !important;
403
+ }
404
+
405
+ .dark [data-streamdown="code-block-body"],
406
+ :root.dark [data-streamdown="code-block-body"] {
407
+ background: rgba(255, 255, 255, 0.03) !important;
408
+ }
409
+
410
+ [data-streamdown="code-block-body"] code span::before {
411
+ display: none !important;
412
+ }
413
+
414
+ [data-streamdown="code-block-body"],
415
+ [data-streamdown="code-block-body"] code {
416
+ color: var(--color-text) !important;
417
+ opacity: 0.85;
418
+ }
419
+
420
+ [data-streamdown="code-block-body"] code span[style] {
421
+ background-color: transparent !important;
422
+ }
423
+
424
+ .dark [data-streamdown="code-block-body"] code span[style],
425
+ :root.dark [data-streamdown="code-block-body"] code span[style] {
426
+ color: var(--shiki-dark) !important;
427
+ }
428
+
429
+ [data-streamdown="table-wrapper"].my-4 {
430
+ position: relative !important;
431
+ margin: 0 !important;
432
+ gap: 0 !important;
433
+ }
434
+
435
+ [data-streamdown="table-wrapper"].my-4 > .flex.items-center.justify-end.gap-1 {
436
+ position: absolute !important;
437
+ top: -8px !important;
438
+ right: 4px !important;
439
+ z-index: 10;
440
+ opacity: 0 !important;
441
+ transition: opacity 150ms ease;
442
+ margin: 0 !important;
443
+ }
444
+
445
+ [data-streamdown="table-wrapper"].my-4:hover > .flex.items-center.justify-end.gap-1 {
446
+ opacity: 1 !important;
447
+ }
448
+
449
+ /* 表格工具栏按钮 */
450
+ [data-streamdown="table-wrapper"] .flex.items-center.justify-end.gap-1 button {
451
+ padding: 4px !important;
452
+ border: none !important;
453
+ border-radius: 4px !important;
454
+ background: var(--color-surface) !important;
455
+ opacity: 0.7;
456
+ cursor: pointer;
457
+ }
458
+
459
+ [data-streamdown="table-wrapper"] .flex.items-center.justify-end.gap-1 button:hover {
460
+ opacity: 1;
461
+ background: var(--color-border) !important;
462
+ }
463
+
464
+ [data-streamdown="table-wrapper"] .flex.items-center.justify-end.gap-1 svg {
465
+ color: var(--color-muted) !important;
466
+ width: 12px !important;
467
+ height: 12px !important;
468
+ }
469
+
470
+ [data-streamdown="table-wrapper"] .flex.items-center.justify-end.gap-1 button:hover svg {
471
+ color: var(--color-text) !important;
472
+ }
473
+
474
+ /* 表格下拉菜单 */
475
+ [data-streamdown="table-wrapper"] .absolute.top-full {
476
+ border: 1px solid var(--color-divider) !important;
477
+ background: var(--color-card) !important;
478
+ backdrop-filter: blur(8px);
479
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
480
+ }
481
+
482
+ [data-streamdown="table-wrapper"] .absolute.top-full button {
483
+ color: var(--color-text) !important;
484
+ opacity: 0.8;
485
+ }
486
+
487
+ [data-streamdown="table-wrapper"] .absolute.top-full button:hover {
488
+ background: var(--color-surface) !important;
489
+ opacity: 1;
490
+ }
491
+
492
+ /* ========================================
493
+ Chat Input Styling (Sanqian style)
494
+ Layout: [Input box (flex-1)] [Send button]
495
+ ======================================== */
496
+
497
+ /* Form container - flex row */
498
+
499
+ .chat-input-form {
500
+ display: flex;
501
+ align-items: center;
502
+ gap: 2.5em;
503
+ /* Prevent input from overlapping send button */
504
+ min-width: 0;
505
+ }
506
+
507
+ /* Input box container - takes remaining space */
508
+
509
+ .chat-input-box {
510
+ flex: 1;
511
+ min-width: 0;
512
+ position: relative;
513
+ display: grid;
514
+ grid-template-columns: 1fr;
515
+ }
516
+
517
+ /* Hidden replica for auto-height */
518
+
519
+ .chat-input-replica {
520
+ grid-area: 1 / 1 / 2 / 2;
521
+ visibility: hidden;
522
+ white-space: pre-wrap;
523
+ word-break: break-word;
524
+ font-size: 0.75rem;
525
+ line-height: 1.75rem;
526
+ padding-top: 0.25rem;
527
+ padding-bottom: 0.25rem;
528
+ min-height: 1.75rem;
529
+ max-height: 200px;
530
+ pointer-events: none;
531
+ user-select: none;
532
+ border: 1px solid transparent;
533
+ border-radius: 0.625rem;
534
+ }
535
+
536
+ /* Actual textarea - matches Sanqian's .smart-textarea-editor .ProseMirror */
537
+
538
+ .chat-input-textarea {
539
+ grid-area: 1 / 1 / 2 / 2;
540
+ width: 100%;
541
+ min-height: 1.75rem;
542
+ max-height: 200px;
543
+ padding-top: 0.25rem;
544
+ padding-bottom: 0.25rem;
545
+ border-radius: 0.625rem;
546
+ border: 1px solid var(--chat-border);
547
+ background: var(--chat-card);
548
+ font-size: 0.75rem;
549
+ line-height: 1.75rem;
550
+ box-shadow: none;
551
+ color: var(--chat-text);
552
+ overflow-y: auto;
553
+ outline: none;
554
+ resize: none;
555
+ transition: border-color 0.15s ease, box-shadow 0.15s ease;
556
+ }
557
+
558
+ .chat-input-textarea::-moz-placeholder {
559
+ color: var(--chat-muted);
560
+ user-select: none;
561
+ }
562
+
563
+ .chat-input-textarea::placeholder {
564
+ color: var(--chat-muted);
565
+ user-select: none;
566
+ }
567
+
568
+ .chat-input-textarea:focus {
569
+ border-color: var(--chat-border-focus);
570
+ }
571
+
572
+ .chat-input-textarea:disabled {
573
+ opacity: 0.5;
574
+ cursor: not-allowed;
575
+ }
576
+
577
+ /* Left slot - inside input box (matches Sanqian's left-1 bottom-[0.25em]) */
578
+
579
+ .chat-input-left-slot {
580
+ position: absolute;
581
+ left: 0.25rem;
582
+ bottom: 0.25em;
583
+ z-index: 10;
584
+ }
585
+
586
+ /* Right slot - inside input box (matches Sanqian's right-1 bottom-[0.25em]) */
587
+
588
+ .chat-input-right-slot {
589
+ position: absolute;
590
+ right: 0.25rem;
591
+ bottom: 0.25em;
592
+ z-index: 10;
593
+ }
594
+
595
+ /* Send button - OUTSIDE input box */
596
+
597
+ .chat-input-send-btn {
598
+ flex-shrink: 0;
599
+ width: 1.75rem;
600
+ height: 1.75rem;
601
+ border-radius: 50%;
602
+ border: none;
603
+ background: var(--chat-accent);
604
+ color: white;
605
+ display: flex;
606
+ align-items: center;
607
+ justify-content: center;
608
+ cursor: pointer;
609
+ transition: all 0.15s ease;
610
+ box-shadow: var(--chat-shadow-soft);
611
+ }
612
+
613
+ .chat-input-send-btn:hover:not(:disabled) {
614
+ transform: scale(1.05);
615
+ box-shadow: var(--chat-shadow-elevated);
616
+ }
617
+
618
+ .chat-input-send-btn:active:not(:disabled) {
619
+ transform: scale(0.95);
620
+ }
621
+
622
+ .chat-input-send-btn:disabled {
623
+ opacity: 0.4;
624
+ cursor: not-allowed;
625
+ transform: none;
626
+ }
627
+
628
+ .chat-input-send-btn svg {
629
+ width: 0.75rem;
630
+ height: 0.75rem;
631
+ }
632
+
633
+ /* Header visuals */
634
+
635
+ .chat-header-icon-btn {
636
+ display: inline-flex;
637
+ align-items: center;
638
+ justify-content: center;
639
+ width: 1.75rem;
640
+ height: 1.75rem;
641
+ padding: 0;
642
+ border: none;
643
+ border-radius: 0.5rem;
644
+ color: var(--chat-muted);
645
+ background: transparent;
646
+ cursor: pointer;
647
+ transition: color 0.15s ease, background-color 0.15s ease;
648
+ }
649
+
650
+ .chat-header-icon-btn:hover {
651
+ color: var(--chat-text);
652
+ background: var(--chat-hover);
653
+ }
654
+
655
+ .chat-header-icon {
656
+ width: 1rem;
657
+ height: 1rem;
658
+ }
659
+
660
+ .chat-header-logo {
661
+ width: 1rem;
662
+ height: 1rem;
663
+ border-radius: 0.25rem;
664
+ object-fit: contain;
665
+ display: block;
666
+ }
667
+
668
+ .dark .chat-header-logo,
669
+ :root.dark .chat-header-logo {
670
+ filter: invert(1);
671
+ }
672
+
673
+ .chat-logo-wrapper {
674
+ display: inline-flex;
675
+ align-items: center;
676
+ justify-content: center;
677
+ }
678
+
679
+ .chat-logo-wrapper > * {
680
+ width: 100%;
681
+ height: 100%;
682
+ display: block;
683
+ }
684
+
685
+ .chat-logo-default {
686
+ opacity: 0.9;
687
+ }
688
+
689
+ .dark .chat-logo-default,
690
+ :root.dark .chat-logo-default {
691
+ filter: invert(1);
692
+ }
693
+
694
+ .chat-empty-logo {
695
+ width: 5rem;
696
+ height: 5rem;
697
+ object-fit: contain;
698
+ display: block;
699
+ }
700
+
701
+ .chat-divider-border {
702
+ border-color: var(--chat-divider);
703
+ }
704
+
705
+ /* Send wrapper + stop tooltip (aligned with Sanqian stop affordance) */
706
+
707
+ .chat-input-send-wrapper {
708
+ position: relative;
709
+ display: flex;
710
+ align-items: center;
711
+ }
712
+
713
+ .chat-input-stop-tooltip {
714
+ position: absolute;
715
+ bottom: 100%;
716
+ left: 50%;
717
+ transform: translateX(-50%);
718
+ margin-bottom: 0.5rem;
719
+ padding: 0.25rem 0.5rem;
720
+ border-radius: 0.5rem;
721
+ border: 1px solid var(--chat-divider);
722
+ background: var(--chat-card);
723
+ color: var(--chat-text);
724
+ font-size: 0.75rem;
725
+ line-height: 1.2;
726
+ text-align: center;
727
+ white-space: nowrap;
728
+ opacity: 0;
729
+ visibility: hidden;
730
+ pointer-events: none;
731
+ box-shadow: var(--chat-shadow-soft);
732
+ transition: opacity 0.15s ease, visibility 0.15s ease;
733
+ }
734
+
735
+ .chat-input-stop-hotkey {
736
+ color: var(--chat-muted);
737
+ font-size: 0.7rem;
738
+ line-height: 1.1;
739
+ }
740
+
741
+ .chat-input-send-wrapper:hover .chat-input-stop-tooltip {
742
+ opacity: 1;
743
+ visibility: visible;
744
+ }
745
+
746
+ /* Tooltip (for header buttons) */
747
+
748
+ .chat-tooltip-wrapper {
749
+ position: relative;
750
+ }
751
+
752
+ .chat-tooltip {
753
+ position: absolute;
754
+ left: 50%;
755
+ transform: translateX(-50%);
756
+ top: 100%;
757
+ margin-top: 0.375rem;
758
+ padding: 0.25rem 0.5rem;
759
+ border-radius: 0.375rem;
760
+ background: var(--chat-card);
761
+ color: var(--chat-text);
762
+ font-size: 0.75rem;
763
+ line-height: 1.3;
764
+ white-space: nowrap;
765
+ text-align: center;
766
+ opacity: 0;
767
+ visibility: hidden;
768
+ pointer-events: none;
769
+ box-shadow: var(--chat-shadow-soft);
770
+ border: 1px solid var(--chat-border);
771
+ z-index: 50;
772
+ transition: opacity 100ms ease, visibility 100ms ease;
773
+ }
774
+
775
+ .chat-tooltip-wrapper:hover .chat-tooltip {
776
+ opacity: 1;
777
+ visibility: visible;
778
+ }
779
+
780
+ .chat-tooltip-shortcut {
781
+ color: var(--chat-muted);
782
+ font-size: 0.7rem;
783
+ }
784
+
785
+ /* Floating Window Container
786
+ For transparent Electron windows */
787
+
788
+ .chat-window-container {
789
+ height: 100%;
790
+ display: flex;
791
+ flex-direction: column;
792
+ background: var(--chat-window-bg, var(--chat-bg));
793
+ border-radius: 12px;
794
+ overflow: hidden;
795
+ border: 1px solid var(--chat-window-border, rgba(0, 0, 0, 0.1));
796
+ box-shadow:
797
+ 0 0 0 1px rgba(0, 0, 0, 0.05),
798
+ 0 8px 40px rgba(0, 0, 0, 0.12);
799
+ }
800
+
801
+ .dark .chat-window-container,
802
+ :root.dark .chat-window-container {
803
+ border-color: rgba(255, 255, 255, 0.1);
804
+ box-shadow:
805
+ 0 0 0 1px rgba(255, 255, 255, 0.05),
806
+ 0 8px 40px rgba(0, 0, 0, 0.5);
807
+ }
808
+
809
+ *, ::before, ::after {
810
+ --tw-border-spacing-x: 0;
811
+ --tw-border-spacing-y: 0;
812
+ --tw-translate-x: 0;
813
+ --tw-translate-y: 0;
814
+ --tw-rotate: 0;
815
+ --tw-skew-x: 0;
816
+ --tw-skew-y: 0;
817
+ --tw-scale-x: 1;
818
+ --tw-scale-y: 1;
819
+ --tw-pan-x: ;
820
+ --tw-pan-y: ;
821
+ --tw-pinch-zoom: ;
822
+ --tw-scroll-snap-strictness: proximity;
823
+ --tw-gradient-from-position: ;
824
+ --tw-gradient-via-position: ;
825
+ --tw-gradient-to-position: ;
826
+ --tw-ordinal: ;
827
+ --tw-slashed-zero: ;
828
+ --tw-numeric-figure: ;
829
+ --tw-numeric-spacing: ;
830
+ --tw-numeric-fraction: ;
831
+ --tw-ring-inset: ;
832
+ --tw-ring-offset-width: 0px;
833
+ --tw-ring-offset-color: #fff;
834
+ --tw-ring-color: rgb(59 130 246 / 0.5);
835
+ --tw-ring-offset-shadow: 0 0 #0000;
836
+ --tw-ring-shadow: 0 0 #0000;
837
+ --tw-shadow: 0 0 #0000;
838
+ --tw-shadow-colored: 0 0 #0000;
839
+ --tw-blur: ;
840
+ --tw-brightness: ;
841
+ --tw-contrast: ;
842
+ --tw-grayscale: ;
843
+ --tw-hue-rotate: ;
844
+ --tw-invert: ;
845
+ --tw-saturate: ;
846
+ --tw-sepia: ;
847
+ --tw-drop-shadow: ;
848
+ --tw-backdrop-blur: ;
849
+ --tw-backdrop-brightness: ;
850
+ --tw-backdrop-contrast: ;
851
+ --tw-backdrop-grayscale: ;
852
+ --tw-backdrop-hue-rotate: ;
853
+ --tw-backdrop-invert: ;
854
+ --tw-backdrop-opacity: ;
855
+ --tw-backdrop-saturate: ;
856
+ --tw-backdrop-sepia: ;
857
+ --tw-contain-size: ;
858
+ --tw-contain-layout: ;
859
+ --tw-contain-paint: ;
860
+ --tw-contain-style: ;
861
+ }
862
+ /*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com
863
+ */
864
+
865
+ /*
866
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
867
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
868
+ */
869
+
870
+ *,
871
+ ::before,
872
+ ::after {
873
+ box-sizing: border-box;
874
+ /* 1 */
875
+ border-width: 0;
876
+ /* 2 */
877
+ border-style: solid;
878
+ /* 2 */
879
+ border-color: #e5e7eb;
880
+ /* 2 */
881
+ }
882
+
883
+ ::before,
884
+ ::after {
885
+ --tw-content: '';
886
+ }
887
+
888
+ /*
889
+ 1. Use a consistent sensible line-height in all browsers.
890
+ 2. Prevent adjustments of font size after orientation changes in iOS.
891
+ 3. Use a more readable tab size.
892
+ 4. Use the user's configured \`sans\` font-family by default.
893
+ 5. Use the user's configured \`sans\` font-feature-settings by default.
894
+ 6. Use the user's configured \`sans\` font-variation-settings by default.
895
+ 7. Disable tap highlights on iOS
896
+ */
897
+
898
+ html,
899
+ :host {
900
+ line-height: 1.5;
901
+ /* 1 */
902
+ -webkit-text-size-adjust: 100%;
903
+ /* 2 */
904
+ -moz-tab-size: 4;
905
+ /* 3 */
906
+ -o-tab-size: 4;
907
+ tab-size: 4;
908
+ /* 3 */
909
+ font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", ui-sans-serif, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
910
+ /* 4 */
911
+ font-feature-settings: normal;
912
+ /* 5 */
913
+ font-variation-settings: normal;
914
+ /* 6 */
915
+ -webkit-tap-highlight-color: transparent;
916
+ /* 7 */
917
+ }
918
+
919
+ /*
920
+ 1. Remove the margin in all browsers.
921
+ 2. Inherit line-height from \`html\` so users can set them as a class directly on the \`html\` element.
922
+ */
923
+
924
+ body {
925
+ margin: 0;
926
+ /* 1 */
927
+ line-height: inherit;
928
+ /* 2 */
929
+ }
930
+
931
+ /*
932
+ 1. Add the correct height in Firefox.
933
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
934
+ 3. Ensure horizontal rules are visible by default.
935
+ */
936
+
937
+ hr {
938
+ height: 0;
939
+ /* 1 */
940
+ color: inherit;
941
+ /* 2 */
942
+ border-top-width: 1px;
943
+ /* 3 */
944
+ }
945
+
946
+ /*
947
+ Add the correct text decoration in Chrome, Edge, and Safari.
948
+ */
949
+
950
+ abbr:where([title]) {
951
+ -webkit-text-decoration: underline dotted;
952
+ text-decoration: underline dotted;
953
+ }
954
+
955
+ /*
956
+ Remove the default font size and weight for headings.
957
+ */
958
+
959
+ h1,
960
+ h2,
961
+ h3,
962
+ h4,
963
+ h5,
964
+ h6 {
965
+ font-size: inherit;
966
+ font-weight: inherit;
967
+ }
968
+
969
+ /*
970
+ Reset links to optimize for opt-in styling instead of opt-out.
971
+ */
972
+
973
+ a {
974
+ color: inherit;
975
+ text-decoration: inherit;
976
+ }
977
+
978
+ /*
979
+ Add the correct font weight in Edge and Safari.
980
+ */
981
+
982
+ b,
983
+ strong {
984
+ font-weight: bolder;
985
+ }
986
+
987
+ /*
988
+ 1. Use the user's configured \`mono\` font-family by default.
989
+ 2. Use the user's configured \`mono\` font-feature-settings by default.
990
+ 3. Use the user's configured \`mono\` font-variation-settings by default.
991
+ 4. Correct the odd \`em\` font sizing in all browsers.
992
+ */
993
+
994
+ code,
995
+ kbd,
996
+ samp,
997
+ pre {
998
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
999
+ /* 1 */
1000
+ font-feature-settings: normal;
1001
+ /* 2 */
1002
+ font-variation-settings: normal;
1003
+ /* 3 */
1004
+ font-size: 1em;
1005
+ /* 4 */
1006
+ }
1007
+
1008
+ /*
1009
+ Add the correct font size in all browsers.
1010
+ */
1011
+
1012
+ small {
1013
+ font-size: 80%;
1014
+ }
1015
+
1016
+ /*
1017
+ Prevent \`sub\` and \`sup\` elements from affecting the line height in all browsers.
1018
+ */
1019
+
1020
+ sub,
1021
+ sup {
1022
+ font-size: 75%;
1023
+ line-height: 0;
1024
+ position: relative;
1025
+ vertical-align: baseline;
1026
+ }
1027
+
1028
+ sub {
1029
+ bottom: -0.25em;
1030
+ }
1031
+
1032
+ sup {
1033
+ top: -0.5em;
1034
+ }
1035
+
1036
+ /*
1037
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
1038
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
1039
+ 3. Remove gaps between table borders by default.
1040
+ */
1041
+
1042
+ table {
1043
+ text-indent: 0;
1044
+ /* 1 */
1045
+ border-color: inherit;
1046
+ /* 2 */
1047
+ border-collapse: collapse;
1048
+ /* 3 */
1049
+ }
1050
+
1051
+ /*
1052
+ 1. Change the font styles in all browsers.
1053
+ 2. Remove the margin in Firefox and Safari.
1054
+ 3. Remove default padding in all browsers.
1055
+ */
1056
+
1057
+ button,
1058
+ input,
1059
+ optgroup,
1060
+ select,
1061
+ textarea {
1062
+ font-family: inherit;
1063
+ /* 1 */
1064
+ font-feature-settings: inherit;
1065
+ /* 1 */
1066
+ font-variation-settings: inherit;
1067
+ /* 1 */
1068
+ font-size: 100%;
1069
+ /* 1 */
1070
+ font-weight: inherit;
1071
+ /* 1 */
1072
+ line-height: inherit;
1073
+ /* 1 */
1074
+ letter-spacing: inherit;
1075
+ /* 1 */
1076
+ color: inherit;
1077
+ /* 1 */
1078
+ margin: 0;
1079
+ /* 2 */
1080
+ padding: 0;
1081
+ /* 3 */
1082
+ }
1083
+
1084
+ /*
1085
+ Remove the inheritance of text transform in Edge and Firefox.
1086
+ */
1087
+
1088
+ button,
1089
+ select {
1090
+ text-transform: none;
1091
+ }
1092
+
1093
+ /*
1094
+ 1. Correct the inability to style clickable types in iOS and Safari.
1095
+ 2. Remove default button styles.
1096
+ */
1097
+
1098
+ button,
1099
+ input:where([type='button']),
1100
+ input:where([type='reset']),
1101
+ input:where([type='submit']) {
1102
+ -webkit-appearance: button;
1103
+ /* 1 */
1104
+ background-color: transparent;
1105
+ /* 2 */
1106
+ background-image: none;
1107
+ /* 2 */
1108
+ }
1109
+
1110
+ /*
1111
+ Use the modern Firefox focus style for all focusable elements.
1112
+ */
1113
+
1114
+ :-moz-focusring {
1115
+ outline: auto;
1116
+ }
1117
+
1118
+ /*
1119
+ Remove the additional \`:invalid\` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
1120
+ */
1121
+
1122
+ :-moz-ui-invalid {
1123
+ box-shadow: none;
1124
+ }
1125
+
1126
+ /*
1127
+ Add the correct vertical alignment in Chrome and Firefox.
1128
+ */
1129
+
1130
+ progress {
1131
+ vertical-align: baseline;
1132
+ }
1133
+
1134
+ /*
1135
+ Correct the cursor style of increment and decrement buttons in Safari.
1136
+ */
1137
+
1138
+ ::-webkit-inner-spin-button,
1139
+ ::-webkit-outer-spin-button {
1140
+ height: auto;
1141
+ }
1142
+
1143
+ /*
1144
+ 1. Correct the odd appearance in Chrome and Safari.
1145
+ 2. Correct the outline style in Safari.
1146
+ */
1147
+
1148
+ [type='search'] {
1149
+ -webkit-appearance: textfield;
1150
+ /* 1 */
1151
+ outline-offset: -2px;
1152
+ /* 2 */
1153
+ }
1154
+
1155
+ /*
1156
+ Remove the inner padding in Chrome and Safari on macOS.
1157
+ */
1158
+
1159
+ ::-webkit-search-decoration {
1160
+ -webkit-appearance: none;
1161
+ }
1162
+
1163
+ /*
1164
+ 1. Correct the inability to style clickable types in iOS and Safari.
1165
+ 2. Change font properties to \`inherit\` in Safari.
1166
+ */
1167
+
1168
+ ::-webkit-file-upload-button {
1169
+ -webkit-appearance: button;
1170
+ /* 1 */
1171
+ font: inherit;
1172
+ /* 2 */
1173
+ }
1174
+
1175
+ /*
1176
+ Add the correct display in Chrome and Safari.
1177
+ */
1178
+
1179
+ summary {
1180
+ display: list-item;
1181
+ }
1182
+
1183
+ /*
1184
+ Removes the default spacing and border for appropriate elements.
1185
+ */
1186
+
1187
+ blockquote,
1188
+ dl,
1189
+ dd,
1190
+ h1,
1191
+ h2,
1192
+ h3,
1193
+ h4,
1194
+ h5,
1195
+ h6,
1196
+ hr,
1197
+ figure,
1198
+ p,
1199
+ pre {
1200
+ margin: 0;
1201
+ }
1202
+
1203
+ fieldset {
1204
+ margin: 0;
1205
+ padding: 0;
1206
+ }
1207
+
1208
+ legend {
1209
+ padding: 0;
1210
+ }
1211
+
1212
+ ol,
1213
+ ul,
1214
+ menu {
1215
+ list-style: none;
1216
+ margin: 0;
1217
+ padding: 0;
1218
+ }
1219
+
1220
+ /*
1221
+ Reset default styling for dialogs.
1222
+ */
1223
+
1224
+ dialog {
1225
+ padding: 0;
1226
+ }
1227
+
1228
+ /*
1229
+ Prevent resizing textareas horizontally by default.
1230
+ */
1231
+
1232
+ textarea {
1233
+ resize: vertical;
1234
+ }
1235
+
1236
+ /*
1237
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
1238
+ 2. Set the default placeholder color to the user's configured gray 400 color.
1239
+ */
1240
+
1241
+ input::-moz-placeholder, textarea::-moz-placeholder {
1242
+ opacity: 1;
1243
+ /* 1 */
1244
+ color: #9ca3af;
1245
+ /* 2 */
1246
+ }
1247
+
1248
+ input::placeholder,
1249
+ textarea::placeholder {
1250
+ opacity: 1;
1251
+ /* 1 */
1252
+ color: #9ca3af;
1253
+ /* 2 */
1254
+ }
1255
+
1256
+ /*
1257
+ Set the default cursor for buttons.
1258
+ */
1259
+
1260
+ button,
1261
+ [role="button"] {
1262
+ cursor: pointer;
1263
+ }
1264
+
1265
+ /*
1266
+ Make sure disabled buttons don't get the pointer cursor.
1267
+ */
1268
+
1269
+ :disabled {
1270
+ cursor: default;
1271
+ }
1272
+
1273
+ /*
1274
+ 1. Make replaced elements \`display: block\` by default. (https://github.com/mozdevs/cssremedy/issues/14)
1275
+ 2. Add \`vertical-align: middle\` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
1276
+ This can trigger a poorly considered lint error in some tools but is included by design.
1277
+ */
1278
+
1279
+ img,
1280
+ svg,
1281
+ video,
1282
+ canvas,
1283
+ audio,
1284
+ iframe,
1285
+ embed,
1286
+ object {
1287
+ display: block;
1288
+ /* 1 */
1289
+ vertical-align: middle;
1290
+ /* 2 */
1291
+ }
1292
+
1293
+ /*
1294
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
1295
+ */
1296
+
1297
+ img,
1298
+ video {
1299
+ max-width: 100%;
1300
+ height: auto;
1301
+ }
1302
+
1303
+ /* Make elements with the HTML hidden attribute stay hidden by default */
1304
+
1305
+ [hidden]:where(:not([hidden="until-found"])) {
1306
+ display: none;
1307
+ }
1308
+
1309
+
1310
+ ::backdrop {
1311
+ --tw-border-spacing-x: 0;
1312
+ --tw-border-spacing-y: 0;
1313
+ --tw-translate-x: 0;
1314
+ --tw-translate-y: 0;
1315
+ --tw-rotate: 0;
1316
+ --tw-skew-x: 0;
1317
+ --tw-skew-y: 0;
1318
+ --tw-scale-x: 1;
1319
+ --tw-scale-y: 1;
1320
+ --tw-pan-x: ;
1321
+ --tw-pan-y: ;
1322
+ --tw-pinch-zoom: ;
1323
+ --tw-scroll-snap-strictness: proximity;
1324
+ --tw-gradient-from-position: ;
1325
+ --tw-gradient-via-position: ;
1326
+ --tw-gradient-to-position: ;
1327
+ --tw-ordinal: ;
1328
+ --tw-slashed-zero: ;
1329
+ --tw-numeric-figure: ;
1330
+ --tw-numeric-spacing: ;
1331
+ --tw-numeric-fraction: ;
1332
+ --tw-ring-inset: ;
1333
+ --tw-ring-offset-width: 0px;
1334
+ --tw-ring-offset-color: #fff;
1335
+ --tw-ring-color: rgb(59 130 246 / 0.5);
1336
+ --tw-ring-offset-shadow: 0 0 #0000;
1337
+ --tw-ring-shadow: 0 0 #0000;
1338
+ --tw-shadow: 0 0 #0000;
1339
+ --tw-shadow-colored: 0 0 #0000;
1340
+ --tw-blur: ;
1341
+ --tw-brightness: ;
1342
+ --tw-contrast: ;
1343
+ --tw-grayscale: ;
1344
+ --tw-hue-rotate: ;
1345
+ --tw-invert: ;
1346
+ --tw-saturate: ;
1347
+ --tw-sepia: ;
1348
+ --tw-drop-shadow: ;
1349
+ --tw-backdrop-blur: ;
1350
+ --tw-backdrop-brightness: ;
1351
+ --tw-backdrop-contrast: ;
1352
+ --tw-backdrop-grayscale: ;
1353
+ --tw-backdrop-hue-rotate: ;
1354
+ --tw-backdrop-invert: ;
1355
+ --tw-backdrop-opacity: ;
1356
+ --tw-backdrop-saturate: ;
1357
+ --tw-backdrop-sepia: ;
1358
+ --tw-contain-size: ;
1359
+ --tw-contain-layout: ;
1360
+ --tw-contain-paint: ;
1361
+ --tw-contain-style: ;
1362
+ }
1363
+
1364
+
1365
+ .\\!container {
1366
+ width: 100% !important;
1367
+ }
1368
+
1369
+ .container {
1370
+ width: 100%;
1371
+ }
1372
+
1373
+ @media (min-width: 640px) {
1374
+ .\\!container {
1375
+ max-width: 640px !important;
1376
+ }
1377
+
1378
+ .container {
1379
+ max-width: 640px;
1380
+ }
1381
+ }
1382
+
1383
+ @media (min-width: 768px) {
1384
+ .\\!container {
1385
+ max-width: 768px !important;
1386
+ }
1387
+
1388
+ .container {
1389
+ max-width: 768px;
1390
+ }
1391
+ }
1392
+
1393
+ @media (min-width: 1024px) {
1394
+ .\\!container {
1395
+ max-width: 1024px !important;
1396
+ }
1397
+
1398
+ .container {
1399
+ max-width: 1024px;
1400
+ }
1401
+ }
1402
+
1403
+ @media (min-width: 1280px) {
1404
+ .\\!container {
1405
+ max-width: 1280px !important;
1406
+ }
1407
+
1408
+ .container {
1409
+ max-width: 1280px;
1410
+ }
1411
+ }
1412
+
1413
+ @media (min-width: 1536px) {
1414
+ .\\!container {
1415
+ max-width: 1536px !important;
1416
+ }
1417
+
1418
+ .container {
1419
+ max-width: 1536px;
1420
+ }
1421
+ }
1422
+
1423
+ .prose {
1424
+ color: var(--tw-prose-body);
1425
+ max-width: 65ch;
1426
+ }
1427
+
1428
+ .prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1429
+ margin-top: 1.25em;
1430
+ margin-bottom: 1.25em;
1431
+ }
1432
+
1433
+ .prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1434
+ color: var(--tw-prose-lead);
1435
+ font-size: 1.25em;
1436
+ line-height: 1.6;
1437
+ margin-top: 1.2em;
1438
+ margin-bottom: 1.2em;
1439
+ }
1440
+
1441
+ .prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1442
+ color: var(--tw-prose-links);
1443
+ text-decoration: none;
1444
+ font-weight: 500;
1445
+ }
1446
+
1447
+ .prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1448
+ color: var(--tw-prose-bold);
1449
+ font-weight: 600;
1450
+ }
1451
+
1452
+ .prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1453
+ color: inherit;
1454
+ }
1455
+
1456
+ .prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1457
+ color: inherit;
1458
+ }
1459
+
1460
+ .prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1461
+ color: inherit;
1462
+ }
1463
+
1464
+ .prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1465
+ list-style-type: decimal;
1466
+ margin-top: 1.25em;
1467
+ margin-bottom: 1.25em;
1468
+ padding-inline-start: 1.625em;
1469
+ }
1470
+
1471
+ .prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1472
+ list-style-type: upper-alpha;
1473
+ }
1474
+
1475
+ .prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1476
+ list-style-type: lower-alpha;
1477
+ }
1478
+
1479
+ .prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1480
+ list-style-type: upper-alpha;
1481
+ }
1482
+
1483
+ .prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1484
+ list-style-type: lower-alpha;
1485
+ }
1486
+
1487
+ .prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1488
+ list-style-type: upper-roman;
1489
+ }
1490
+
1491
+ .prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1492
+ list-style-type: lower-roman;
1493
+ }
1494
+
1495
+ .prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1496
+ list-style-type: upper-roman;
1497
+ }
1498
+
1499
+ .prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1500
+ list-style-type: lower-roman;
1501
+ }
1502
+
1503
+ .prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1504
+ list-style-type: decimal;
1505
+ }
1506
+
1507
+ .prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1508
+ list-style-type: disc;
1509
+ margin-top: 1.25em;
1510
+ margin-bottom: 1.25em;
1511
+ padding-inline-start: 1.625em;
1512
+ }
1513
+
1514
+ .prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
1515
+ font-weight: 400;
1516
+ color: var(--tw-prose-counters);
1517
+ }
1518
+
1519
+ .prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
1520
+ color: var(--tw-prose-bullets);
1521
+ }
1522
+
1523
+ .prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1524
+ color: var(--tw-prose-headings);
1525
+ font-weight: 600;
1526
+ margin-top: 1.25em;
1527
+ }
1528
+
1529
+ .prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1530
+ border-color: var(--tw-prose-hr);
1531
+ border-top-width: 1px;
1532
+ margin-top: 3em;
1533
+ margin-bottom: 3em;
1534
+ }
1535
+
1536
+ .prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1537
+ font-weight: 500;
1538
+ font-style: italic;
1539
+ color: var(--tw-prose-quotes);
1540
+ border-inline-start-width: 0.25rem;
1541
+ border-inline-start-color: var(--tw-prose-quote-borders);
1542
+ quotes: "\\201C""\\201D""\\2018""\\2019";
1543
+ margin-top: 1.6em;
1544
+ margin-bottom: 1.6em;
1545
+ padding-inline-start: 1em;
1546
+ }
1547
+
1548
+ .prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
1549
+ content: open-quote;
1550
+ }
1551
+
1552
+ .prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
1553
+ content: close-quote;
1554
+ }
1555
+
1556
+ .prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1557
+ color: var(--tw-prose-headings);
1558
+ font-weight: 800;
1559
+ font-size: 2.25em;
1560
+ margin-top: 0;
1561
+ margin-bottom: 0.8888889em;
1562
+ line-height: 1.1111111;
1563
+ }
1564
+
1565
+ .prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1566
+ font-weight: 900;
1567
+ color: inherit;
1568
+ }
1569
+
1570
+ .prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1571
+ color: var(--tw-prose-headings);
1572
+ font-weight: 700;
1573
+ font-size: 1.5em;
1574
+ margin-top: 2em;
1575
+ margin-bottom: 1em;
1576
+ line-height: 1.3333333;
1577
+ }
1578
+
1579
+ .prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1580
+ font-weight: 800;
1581
+ color: inherit;
1582
+ }
1583
+
1584
+ .prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1585
+ color: var(--tw-prose-headings);
1586
+ font-weight: 600;
1587
+ font-size: 1.25em;
1588
+ margin-top: 1.6em;
1589
+ margin-bottom: 0.6em;
1590
+ line-height: 1.6;
1591
+ }
1592
+
1593
+ .prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1594
+ font-weight: 700;
1595
+ color: inherit;
1596
+ }
1597
+
1598
+ .prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1599
+ color: var(--tw-prose-headings);
1600
+ font-weight: 600;
1601
+ margin-top: 1.5em;
1602
+ margin-bottom: 0.5em;
1603
+ line-height: 1.5;
1604
+ }
1605
+
1606
+ .prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1607
+ font-weight: 700;
1608
+ color: inherit;
1609
+ }
1610
+
1611
+ .prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1612
+ margin-top: 2em;
1613
+ margin-bottom: 2em;
1614
+ }
1615
+
1616
+ .prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1617
+ display: block;
1618
+ margin-top: 2em;
1619
+ margin-bottom: 2em;
1620
+ }
1621
+
1622
+ .prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1623
+ margin-top: 2em;
1624
+ margin-bottom: 2em;
1625
+ }
1626
+
1627
+ .prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1628
+ font-weight: 500;
1629
+ font-family: inherit;
1630
+ color: var(--tw-prose-kbd);
1631
+ box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
1632
+ font-size: 0.875em;
1633
+ border-radius: 0.3125rem;
1634
+ padding-top: 0.1875em;
1635
+ padding-inline-end: 0.375em;
1636
+ padding-bottom: 0.1875em;
1637
+ padding-inline-start: 0.375em;
1638
+ }
1639
+
1640
+ .prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1641
+ color: var(--tw-prose-code);
1642
+ font-weight: 600;
1643
+ font-size: 0.875em;
1644
+ }
1645
+
1646
+ .prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
1647
+ content: "\`";
1648
+ }
1649
+
1650
+ .prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
1651
+ content: "\`";
1652
+ }
1653
+
1654
+ .prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1655
+ color: inherit;
1656
+ }
1657
+
1658
+ .prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1659
+ color: inherit;
1660
+ }
1661
+
1662
+ .prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1663
+ color: inherit;
1664
+ font-size: 0.875em;
1665
+ }
1666
+
1667
+ .prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1668
+ color: inherit;
1669
+ font-size: 0.9em;
1670
+ }
1671
+
1672
+ .prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1673
+ color: inherit;
1674
+ }
1675
+
1676
+ .prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1677
+ color: inherit;
1678
+ }
1679
+
1680
+ .prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1681
+ color: inherit;
1682
+ }
1683
+
1684
+ .prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1685
+ color: var(--tw-prose-pre-code);
1686
+ background-color: var(--tw-prose-pre-bg);
1687
+ overflow-x: auto;
1688
+ font-weight: 400;
1689
+ font-size: 0.875em;
1690
+ line-height: 1.7142857;
1691
+ margin-top: 1.7142857em;
1692
+ margin-bottom: 1.7142857em;
1693
+ border-radius: 0.375rem;
1694
+ padding-top: 0.8571429em;
1695
+ padding-inline-end: 1.1428571em;
1696
+ padding-bottom: 0.8571429em;
1697
+ padding-inline-start: 1.1428571em;
1698
+ }
1699
+
1700
+ .prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1701
+ background-color: transparent;
1702
+ border-width: 0;
1703
+ border-radius: 0;
1704
+ padding: 0;
1705
+ font-weight: inherit;
1706
+ color: inherit;
1707
+ font-size: inherit;
1708
+ font-family: inherit;
1709
+ line-height: inherit;
1710
+ }
1711
+
1712
+ .prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
1713
+ content: none;
1714
+ }
1715
+
1716
+ .prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
1717
+ content: none;
1718
+ }
1719
+
1720
+ .prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1721
+ width: 100%;
1722
+ table-layout: auto;
1723
+ margin-top: 2em;
1724
+ margin-bottom: 2em;
1725
+ font-size: 0.875em;
1726
+ line-height: 1.7142857;
1727
+ }
1728
+
1729
+ .prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1730
+ border-bottom-width: 1px;
1731
+ border-bottom-color: var(--tw-prose-th-borders);
1732
+ }
1733
+
1734
+ .prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1735
+ color: var(--tw-prose-headings);
1736
+ font-weight: 600;
1737
+ vertical-align: bottom;
1738
+ padding-inline-end: 0.5714286em;
1739
+ padding-bottom: 0.5714286em;
1740
+ padding-inline-start: 0.5714286em;
1741
+ }
1742
+
1743
+ .prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1744
+ border-bottom-width: 1px;
1745
+ border-bottom-color: var(--tw-prose-td-borders);
1746
+ }
1747
+
1748
+ .prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1749
+ border-bottom-width: 0;
1750
+ }
1751
+
1752
+ .prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1753
+ vertical-align: baseline;
1754
+ }
1755
+
1756
+ .prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1757
+ border-top-width: 1px;
1758
+ border-top-color: var(--tw-prose-th-borders);
1759
+ }
1760
+
1761
+ .prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1762
+ vertical-align: top;
1763
+ }
1764
+
1765
+ .prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1766
+ text-align: start;
1767
+ }
1768
+
1769
+ .prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1770
+ margin-top: 0;
1771
+ margin-bottom: 0;
1772
+ }
1773
+
1774
+ .prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1775
+ color: var(--tw-prose-captions);
1776
+ font-size: 0.875em;
1777
+ line-height: 1.4285714;
1778
+ margin-top: 0.8571429em;
1779
+ }
1780
+
1781
+ .prose {
1782
+ --tw-prose-body: var(--color-text);
1783
+ --tw-prose-headings: var(--color-text);
1784
+ --tw-prose-lead: #4b5563;
1785
+ --tw-prose-links: var(--color-accent);
1786
+ --tw-prose-bold: var(--color-text);
1787
+ --tw-prose-counters: #6b7280;
1788
+ --tw-prose-bullets: var(--color-muted);
1789
+ --tw-prose-hr: var(--color-divider);
1790
+ --tw-prose-quotes: var(--color-muted);
1791
+ --tw-prose-quote-borders: #e5e7eb;
1792
+ --tw-prose-captions: #6b7280;
1793
+ --tw-prose-kbd: #111827;
1794
+ --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);
1795
+ --tw-prose-code: var(--color-accent);
1796
+ --tw-prose-pre-code: #e5e7eb;
1797
+ --tw-prose-pre-bg: #1f2937;
1798
+ --tw-prose-th-borders: var(--color-divider);
1799
+ --tw-prose-td-borders: var(--color-divider);
1800
+ --tw-prose-invert-body: #d1d5db;
1801
+ --tw-prose-invert-headings: #fff;
1802
+ --tw-prose-invert-lead: #9ca3af;
1803
+ --tw-prose-invert-links: #fff;
1804
+ --tw-prose-invert-bold: #fff;
1805
+ --tw-prose-invert-counters: #9ca3af;
1806
+ --tw-prose-invert-bullets: #4b5563;
1807
+ --tw-prose-invert-hr: #374151;
1808
+ --tw-prose-invert-quotes: #f3f4f6;
1809
+ --tw-prose-invert-quote-borders: #374151;
1810
+ --tw-prose-invert-captions: #9ca3af;
1811
+ --tw-prose-invert-kbd: #fff;
1812
+ --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
1813
+ --tw-prose-invert-code: #fff;
1814
+ --tw-prose-invert-pre-code: #d1d5db;
1815
+ --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
1816
+ --tw-prose-invert-th-borders: #4b5563;
1817
+ --tw-prose-invert-td-borders: #374151;
1818
+ font-size: inherit;
1819
+ line-height: 1.75;
1820
+ }
1821
+
1822
+ .prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1823
+ margin-top: 0;
1824
+ margin-bottom: 0;
1825
+ }
1826
+
1827
+ .prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1828
+ margin-top: 0.5em;
1829
+ margin-bottom: 0.5em;
1830
+ }
1831
+
1832
+ .prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1833
+ padding-inline-start: 0.375em;
1834
+ }
1835
+
1836
+ .prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1837
+ padding-inline-start: 0.375em;
1838
+ }
1839
+
1840
+ .prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1841
+ margin-top: 0.75em;
1842
+ margin-bottom: 0.75em;
1843
+ }
1844
+
1845
+ .prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1846
+ margin-top: 1.25em;
1847
+ }
1848
+
1849
+ .prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1850
+ margin-bottom: 1.25em;
1851
+ }
1852
+
1853
+ .prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1854
+ margin-top: 1.25em;
1855
+ }
1856
+
1857
+ .prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1858
+ margin-bottom: 1.25em;
1859
+ }
1860
+
1861
+ .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1862
+ margin-top: 0.75em;
1863
+ margin-bottom: 0.75em;
1864
+ }
1865
+
1866
+ .prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1867
+ margin-top: 1.25em;
1868
+ margin-bottom: 1.25em;
1869
+ }
1870
+
1871
+ .prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1872
+ margin-top: 0.5em;
1873
+ padding-inline-start: 1.625em;
1874
+ }
1875
+
1876
+ .prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1877
+ margin-top: 0;
1878
+ }
1879
+
1880
+ .prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1881
+ margin-top: 0;
1882
+ }
1883
+
1884
+ .prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1885
+ margin-top: 0;
1886
+ }
1887
+
1888
+ .prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1889
+ margin-top: 0;
1890
+ }
1891
+
1892
+ .prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1893
+ padding-inline-start: 0;
1894
+ }
1895
+
1896
+ .prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1897
+ padding-inline-end: 0;
1898
+ }
1899
+
1900
+ .prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1901
+ padding-top: 0.5714286em;
1902
+ padding-inline-end: 0.5714286em;
1903
+ padding-bottom: 0.5714286em;
1904
+ padding-inline-start: 0.5714286em;
1905
+ }
1906
+
1907
+ .prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1908
+ padding-inline-start: 0;
1909
+ }
1910
+
1911
+ .prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1912
+ padding-inline-end: 0;
1913
+ }
1914
+
1915
+ .prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1916
+ margin-top: 2em;
1917
+ margin-bottom: 2em;
1918
+ }
1919
+
1920
+ .prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1921
+ margin-top: 0;
1922
+ }
1923
+
1924
+ .prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1925
+ margin-bottom: 0;
1926
+ }
1927
+
1928
+ .prose-sm {
1929
+ font-size: 0.875rem;
1930
+ line-height: 1.7142857;
1931
+ }
1932
+
1933
+ .prose-sm :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1934
+ margin-top: 1.1428571em;
1935
+ margin-bottom: 1.1428571em;
1936
+ }
1937
+
1938
+ .prose-sm :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1939
+ font-size: 1.2857143em;
1940
+ line-height: 1.5555556;
1941
+ margin-top: 0.8888889em;
1942
+ margin-bottom: 0.8888889em;
1943
+ }
1944
+
1945
+ .prose-sm :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1946
+ margin-top: 1.3333333em;
1947
+ margin-bottom: 1.3333333em;
1948
+ padding-inline-start: 1.1111111em;
1949
+ }
1950
+
1951
+ .prose-sm :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1952
+ font-size: 2.1428571em;
1953
+ margin-top: 0;
1954
+ margin-bottom: 0.8em;
1955
+ line-height: 1.2;
1956
+ }
1957
+
1958
+ .prose-sm :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1959
+ font-size: 1.4285714em;
1960
+ margin-top: 1.6em;
1961
+ margin-bottom: 0.8em;
1962
+ line-height: 1.4;
1963
+ }
1964
+
1965
+ .prose-sm :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1966
+ font-size: 1.2857143em;
1967
+ margin-top: 1.5555556em;
1968
+ margin-bottom: 0.4444444em;
1969
+ line-height: 1.5555556;
1970
+ }
1971
+
1972
+ .prose-sm :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1973
+ margin-top: 1.4285714em;
1974
+ margin-bottom: 0.5714286em;
1975
+ line-height: 1.4285714;
1976
+ }
1977
+
1978
+ .prose-sm :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1979
+ margin-top: 1.7142857em;
1980
+ margin-bottom: 1.7142857em;
1981
+ }
1982
+
1983
+ .prose-sm :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1984
+ margin-top: 1.7142857em;
1985
+ margin-bottom: 1.7142857em;
1986
+ }
1987
+
1988
+ .prose-sm :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1989
+ margin-top: 0;
1990
+ margin-bottom: 0;
1991
+ }
1992
+
1993
+ .prose-sm :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1994
+ margin-top: 1.7142857em;
1995
+ margin-bottom: 1.7142857em;
1996
+ }
1997
+
1998
+ .prose-sm :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1999
+ font-size: 0.8571429em;
2000
+ border-radius: 0.3125rem;
2001
+ padding-top: 0.1428571em;
2002
+ padding-inline-end: 0.3571429em;
2003
+ padding-bottom: 0.1428571em;
2004
+ padding-inline-start: 0.3571429em;
2005
+ }
2006
+
2007
+ .prose-sm :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2008
+ font-size: 0.8571429em;
2009
+ }
2010
+
2011
+ .prose-sm :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2012
+ font-size: 0.9em;
2013
+ }
2014
+
2015
+ .prose-sm :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2016
+ font-size: 0.8888889em;
2017
+ }
2018
+
2019
+ .prose-sm :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2020
+ font-size: 0.8571429em;
2021
+ line-height: 1.6666667;
2022
+ margin-top: 1.6666667em;
2023
+ margin-bottom: 1.6666667em;
2024
+ border-radius: 0.25rem;
2025
+ padding-top: 0.6666667em;
2026
+ padding-inline-end: 1em;
2027
+ padding-bottom: 0.6666667em;
2028
+ padding-inline-start: 1em;
2029
+ }
2030
+
2031
+ .prose-sm :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2032
+ margin-top: 1.1428571em;
2033
+ margin-bottom: 1.1428571em;
2034
+ padding-inline-start: 1.5714286em;
2035
+ }
2036
+
2037
+ .prose-sm :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2038
+ margin-top: 1.1428571em;
2039
+ margin-bottom: 1.1428571em;
2040
+ padding-inline-start: 1.5714286em;
2041
+ }
2042
+
2043
+ .prose-sm :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2044
+ margin-top: 0.2857143em;
2045
+ margin-bottom: 0.2857143em;
2046
+ }
2047
+
2048
+ .prose-sm :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2049
+ padding-inline-start: 0.4285714em;
2050
+ }
2051
+
2052
+ .prose-sm :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2053
+ padding-inline-start: 0.4285714em;
2054
+ }
2055
+
2056
+ .prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2057
+ margin-top: 0.5714286em;
2058
+ margin-bottom: 0.5714286em;
2059
+ }
2060
+
2061
+ .prose-sm :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2062
+ margin-top: 1.1428571em;
2063
+ }
2064
+
2065
+ .prose-sm :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2066
+ margin-bottom: 1.1428571em;
2067
+ }
2068
+
2069
+ .prose-sm :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2070
+ margin-top: 1.1428571em;
2071
+ }
2072
+
2073
+ .prose-sm :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2074
+ margin-bottom: 1.1428571em;
2075
+ }
2076
+
2077
+ .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2078
+ margin-top: 0.5714286em;
2079
+ margin-bottom: 0.5714286em;
2080
+ }
2081
+
2082
+ .prose-sm :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2083
+ margin-top: 1.1428571em;
2084
+ margin-bottom: 1.1428571em;
2085
+ }
2086
+
2087
+ .prose-sm :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2088
+ margin-top: 1.1428571em;
2089
+ }
2090
+
2091
+ .prose-sm :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2092
+ margin-top: 0.2857143em;
2093
+ padding-inline-start: 1.5714286em;
2094
+ }
2095
+
2096
+ .prose-sm :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2097
+ margin-top: 2.8571429em;
2098
+ margin-bottom: 2.8571429em;
2099
+ }
2100
+
2101
+ .prose-sm :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2102
+ margin-top: 0;
2103
+ }
2104
+
2105
+ .prose-sm :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2106
+ margin-top: 0;
2107
+ }
2108
+
2109
+ .prose-sm :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2110
+ margin-top: 0;
2111
+ }
2112
+
2113
+ .prose-sm :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2114
+ margin-top: 0;
2115
+ }
2116
+
2117
+ .prose-sm :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2118
+ font-size: 0.8571429em;
2119
+ line-height: 1.5;
2120
+ }
2121
+
2122
+ .prose-sm :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2123
+ padding-inline-end: 1em;
2124
+ padding-bottom: 0.6666667em;
2125
+ padding-inline-start: 1em;
2126
+ }
2127
+
2128
+ .prose-sm :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2129
+ padding-inline-start: 0;
2130
+ }
2131
+
2132
+ .prose-sm :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2133
+ padding-inline-end: 0;
2134
+ }
2135
+
2136
+ .prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2137
+ padding-top: 0.6666667em;
2138
+ padding-inline-end: 1em;
2139
+ padding-bottom: 0.6666667em;
2140
+ padding-inline-start: 1em;
2141
+ }
2142
+
2143
+ .prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2144
+ padding-inline-start: 0;
2145
+ }
2146
+
2147
+ .prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2148
+ padding-inline-end: 0;
2149
+ }
2150
+
2151
+ .prose-sm :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2152
+ margin-top: 1.7142857em;
2153
+ margin-bottom: 1.7142857em;
2154
+ }
2155
+
2156
+ .prose-sm :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2157
+ margin-top: 0;
2158
+ margin-bottom: 0;
2159
+ }
2160
+
2161
+ .prose-sm :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2162
+ font-size: 0.8571429em;
2163
+ line-height: 1.3333333;
2164
+ margin-top: 0.6666667em;
2165
+ }
2166
+
2167
+ .prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2168
+ margin-top: 0;
2169
+ }
2170
+
2171
+ .prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2172
+ margin-bottom: 0;
2173
+ }
2174
+
2175
+ .prose-chat :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2176
+ margin-top: 0 !important;
2177
+ margin-bottom: 0.5rem !important;
2178
+ line-height: 1.5;
2179
+ overflow-wrap: break-word;
2180
+ }
2181
+
2182
+ .prose-chat :where(ul, ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2183
+ margin-top: 0 !important;
2184
+ margin-bottom: 0.75rem !important;
2185
+ padding-left: 1.5rem;
2186
+ }
2187
+
2188
+ .prose-chat :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2189
+ margin-top: 0.125rem !important;
2190
+ margin-bottom: 0 !important;
2191
+ line-height: 1.5;
2192
+ }
2193
+
2194
+ .prose-chat :where(li > p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2195
+ margin-bottom: 0.125rem !important;
2196
+ }
2197
+
2198
+ .prose-chat :where(ul ul, ol ol, ul ol, ol ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2199
+ margin-top: 0 !important;
2200
+ margin-bottom: 0 !important;
2201
+ }
2202
+
2203
+ .prose-chat :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2204
+ font-weight: 600;
2205
+ color: var(--chat-text);
2206
+ }
2207
+
2208
+ .prose-chat :where(em):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2209
+ font-style: italic;
2210
+ color: var(--chat-text);
2211
+ }
2212
+
2213
+ .prose-chat :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2214
+ padding: 0.125rem 0.25rem;
2215
+ background-color: var(--chat-surface);
2216
+ border-radius: 0.25rem;
2217
+ font-size: 0.85rem;
2218
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
2219
+ color: var(--chat-text);
2220
+ }
2221
+
2222
+ .prose-chat :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
2223
+ content: none;
2224
+ }
2225
+
2226
+ .prose-chat :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
2227
+ content: none;
2228
+ }
2229
+
2230
+ .prose-chat :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2231
+ margin-top: 0.75rem !important;
2232
+ margin-bottom: 0.75rem !important;
2233
+ background-color: var(--chat-surface);
2234
+ border: 1px solid var(--chat-border);
2235
+ border-radius: 0.375rem;
2236
+ padding: 0.75rem;
2237
+ font-size: 0.85rem;
2238
+ line-height: 1.45;
2239
+ white-space: pre;
2240
+ overflow-x: auto;
2241
+ }
2242
+
2243
+ .prose-chat :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2244
+ padding: 0;
2245
+ background-color: transparent;
2246
+ border-radius: 0;
2247
+ font-size: inherit;
2248
+ white-space: pre;
2249
+ display: block;
2250
+ }
2251
+
2252
+ .prose-chat :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2253
+ margin-top: 0.75rem !important;
2254
+ margin-bottom: 0.75rem !important;
2255
+ border-left-width: 0.25rem;
2256
+ border-left-color: var(--chat-divider);
2257
+ padding: 0 0.75rem;
2258
+ font-style: italic;
2259
+ color: var(--chat-muted);
2260
+ }
2261
+
2262
+ .prose-chat :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2263
+ color: var(--chat-accent);
2264
+ text-decoration: none !important;
2265
+ }
2266
+
2267
+ .prose-chat :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)):hover {
2268
+ color: color-mix(in srgb, var(--chat-accent) 80%, transparent);
2269
+ }
2270
+
2271
+ /* 覆盖 Streamdown 添加的 underline class */
2272
+ .prose-chat a.underline {
2273
+ text-decoration: none !important;
2274
+ }
2275
+
2276
+ .prose-chat :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2277
+ margin-top: 1rem !important;
2278
+ margin-bottom: 1rem !important;
2279
+ border-color: var(--chat-divider);
2280
+ height: 0.125rem;
2281
+ }
2282
+
2283
+ .prose-chat :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2284
+ margin-top: 0 !important;
2285
+ margin-bottom: 0.75rem !important;
2286
+ border-collapse: collapse;
2287
+ }
2288
+
2289
+ .prose-chat :where(th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2290
+ border: 1px solid var(--chat-divider);
2291
+ background-color: var(--chat-card);
2292
+ padding: 0.25rem 0.5rem;
2293
+ font-weight: 600;
2294
+ }
2295
+
2296
+ .prose-chat :where(td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2297
+ border: 1px solid var(--chat-divider);
2298
+ padding: 0.25rem 0.5rem;
2299
+ }
2300
+
2301
+ .prose-chat :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2302
+ border-radius: 0.5rem;
2303
+ box-shadow: var(--chat-shadow-soft);
2304
+ max-width: 100%;
2305
+ }
2306
+
2307
+ .prose-chat :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2308
+ font-size: 1.3rem;
2309
+ font-weight: 600;
2310
+ line-height: 1.3;
2311
+ margin-top: 1rem !important;
2312
+ margin-bottom: 0.75rem !important;
2313
+ }
2314
+
2315
+ .prose-chat :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2316
+ font-size: 1.2rem;
2317
+ font-weight: 600;
2318
+ line-height: 1.3;
2319
+ margin-top: 1rem !important;
2320
+ margin-bottom: 0.75rem !important;
2321
+ }
2322
+
2323
+ .prose-chat :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2324
+ font-size: 1.1rem;
2325
+ font-weight: 600;
2326
+ line-height: 1.3;
2327
+ margin-top: 1rem !important;
2328
+ margin-bottom: 0.5rem !important;
2329
+ }
2330
+
2331
+ .prose-chat :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2332
+ font-size: 1rem;
2333
+ font-weight: 600;
2334
+ line-height: 1.3;
2335
+ margin-top: 0.75rem !important;
2336
+ margin-bottom: 0.5rem !important;
2337
+ }
2338
+
2339
+ .prose-chat :where(h5):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2340
+ font-size: 0.9rem;
2341
+ font-weight: 600;
2342
+ line-height: 1.3;
2343
+ margin-top: 0.75rem !important;
2344
+ margin-bottom: 0.5rem !important;
2345
+ }
2346
+
2347
+ .prose-chat :where(h6):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
2348
+ font-size: 0.85rem;
2349
+ font-weight: 600;
2350
+ line-height: 1.3;
2351
+ margin-top: 0.75rem !important;
2352
+ margin-bottom: 0.5rem !important;
2353
+ color: var(--chat-muted);
2354
+ }
2355
+
2356
+ .collapse {
2357
+ visibility: collapse;
2358
+ }
2359
+
2360
+ .absolute {
2361
+ position: absolute;
2362
+ }
2363
+
2364
+ .relative {
2365
+ position: relative;
2366
+ }
2367
+
2368
+ .right-2 {
2369
+ right: 0.5rem;
2370
+ }
2371
+
2372
+ .m-0 {
2373
+ margin: 0px;
2374
+ }
2375
+
2376
+ .m-2 {
2377
+ margin: 0.5rem;
2378
+ }
2379
+
2380
+ .mx-auto {
2381
+ margin-left: auto;
2382
+ margin-right: auto;
2383
+ }
2384
+
2385
+ .mb-2 {
2386
+ margin-bottom: 0.5rem;
2387
+ }
2388
+
2389
+ .mb-3 {
2390
+ margin-bottom: 0.75rem;
2391
+ }
2392
+
2393
+ .mb-4 {
2394
+ margin-bottom: 1rem;
2395
+ }
2396
+
2397
+ .ml-0\\.5 {
2398
+ margin-left: 0.125rem;
2399
+ }
2400
+
2401
+ .ml-1 {
2402
+ margin-left: 0.25rem;
2403
+ }
2404
+
2405
+ .ml-2 {
2406
+ margin-left: 0.5rem;
2407
+ }
2408
+
2409
+ .mt-1 {
2410
+ margin-top: 0.25rem;
2411
+ }
2412
+
2413
+ .mt-2 {
2414
+ margin-top: 0.5rem;
2415
+ }
2416
+
2417
+ .mt-3 {
2418
+ margin-top: 0.75rem;
2419
+ }
2420
+
2421
+ .block {
2422
+ display: block;
2423
+ }
2424
+
2425
+ .inline-block {
2426
+ display: inline-block;
2427
+ }
2428
+
2429
+ .inline {
2430
+ display: inline;
2431
+ }
2432
+
2433
+ .flex {
2434
+ display: flex;
2435
+ }
2436
+
2437
+ .inline-flex {
2438
+ display: inline-flex;
2439
+ }
2440
+
2441
+ .hidden {
2442
+ display: none;
2443
+ }
2444
+
2445
+ .size-1\\.5 {
2446
+ width: 0.375rem;
2447
+ height: 0.375rem;
2448
+ }
2449
+
2450
+ .size-3\\.5 {
2451
+ width: 0.875rem;
2452
+ height: 0.875rem;
2453
+ }
2454
+
2455
+ .size-4 {
2456
+ width: 1rem;
2457
+ height: 1rem;
2458
+ }
2459
+
2460
+ .h-1\\.5 {
2461
+ height: 0.375rem;
2462
+ }
2463
+
2464
+ .h-10 {
2465
+ height: 2.5rem;
2466
+ }
2467
+
2468
+ .h-2 {
2469
+ height: 0.5rem;
2470
+ }
2471
+
2472
+ .h-2\\.5 {
2473
+ height: 0.625rem;
2474
+ }
2475
+
2476
+ .h-28 {
2477
+ height: 7rem;
2478
+ }
2479
+
2480
+ .h-3 {
2481
+ height: 0.75rem;
2482
+ }
2483
+
2484
+ .h-\\[7px\\] {
2485
+ height: 7px;
2486
+ }
2487
+
2488
+ .h-full {
2489
+ height: 100%;
2490
+ }
2491
+
2492
+ .max-h-24 {
2493
+ max-height: 6rem;
2494
+ }
2495
+
2496
+ .max-h-60 {
2497
+ max-height: 15rem;
2498
+ }
2499
+
2500
+ .max-h-80 {
2501
+ max-height: 20rem;
2502
+ }
2503
+
2504
+ .min-h-0 {
2505
+ min-height: 0px;
2506
+ }
2507
+
2508
+ .min-h-\\[1\\.5rem\\] {
2509
+ min-height: 1.5rem;
2510
+ }
2511
+
2512
+ .w-1\\.5 {
2513
+ width: 0.375rem;
2514
+ }
2515
+
2516
+ .w-2 {
2517
+ width: 0.5rem;
2518
+ }
2519
+
2520
+ .w-2\\.5 {
2521
+ width: 0.625rem;
2522
+ }
2523
+
2524
+ .w-3 {
2525
+ width: 0.75rem;
2526
+ }
2527
+
2528
+ .w-\\[7px\\] {
2529
+ width: 7px;
2530
+ }
2531
+
2532
+ .w-full {
2533
+ width: 100%;
2534
+ }
2535
+
2536
+ .min-w-0 {
2537
+ min-width: 0px;
2538
+ }
2539
+
2540
+ .max-w-3xl {
2541
+ max-width: 48rem;
2542
+ }
2543
+
2544
+ .max-w-\\[80\\%\\] {
2545
+ max-width: 80%;
2546
+ }
2547
+
2548
+ .max-w-full {
2549
+ max-width: 100%;
2550
+ }
2551
+
2552
+ .max-w-none {
2553
+ max-width: none;
2554
+ }
2555
+
2556
+ .flex-1 {
2557
+ flex: 1 1 0%;
2558
+ }
2559
+
2560
+ .flex-shrink-0 {
2561
+ flex-shrink: 0;
2562
+ }
2563
+
2564
+ .shrink-0 {
2565
+ flex-shrink: 0;
2566
+ }
2567
+
2568
+ .rotate-90 {
2569
+ --tw-rotate: 90deg;
2570
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2571
+ }
2572
+
2573
+ .transform {
2574
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2575
+ }
2576
+
2577
+ @keyframes bounce {
2578
+ 0%, 100% {
2579
+ transform: translateY(-25%);
2580
+ animation-timing-function: cubic-bezier(0.8,0,1,1);
2581
+ }
2582
+
2583
+ 50% {
2584
+ transform: none;
2585
+ animation-timing-function: cubic-bezier(0,0,0.2,1);
2586
+ }
2587
+ }
2588
+
2589
+ .animate-bounce {
2590
+ animation: bounce 1s infinite;
2591
+ }
2592
+
2593
+ @keyframes pulse {
2594
+ 50% {
2595
+ opacity: .5;
2596
+ }
2597
+ }
2598
+
2599
+ .animate-pulse {
2600
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
2601
+ }
2602
+
2603
+ @keyframes spin {
2604
+ to {
2605
+ transform: rotate(360deg);
2606
+ }
2607
+ }
2608
+
2609
+ .animate-spin {
2610
+ animation: spin 1s linear infinite;
2611
+ }
2612
+
2613
+ .cursor-default {
2614
+ cursor: default;
2615
+ }
2616
+
2617
+ .cursor-pointer {
2618
+ cursor: pointer;
2619
+ }
2620
+
2621
+ .resize {
2622
+ resize: both;
2623
+ }
2624
+
2625
+ .flex-col {
2626
+ flex-direction: column;
2627
+ }
2628
+
2629
+ .flex-col-reverse {
2630
+ flex-direction: column-reverse;
2631
+ }
2632
+
2633
+ .items-start {
2634
+ align-items: flex-start;
2635
+ }
2636
+
2637
+ .items-center {
2638
+ align-items: center;
2639
+ }
2640
+
2641
+ .items-baseline {
2642
+ align-items: baseline;
2643
+ }
2644
+
2645
+ .justify-start {
2646
+ justify-content: flex-start;
2647
+ }
2648
+
2649
+ .justify-end {
2650
+ justify-content: flex-end;
2651
+ }
2652
+
2653
+ .justify-center {
2654
+ justify-content: center;
2655
+ }
2656
+
2657
+ .justify-between {
2658
+ justify-content: space-between;
2659
+ }
2660
+
2661
+ .gap-0\\.5 {
2662
+ gap: 0.125rem;
2663
+ }
2664
+
2665
+ .gap-1 {
2666
+ gap: 0.25rem;
2667
+ }
2668
+
2669
+ .gap-1\\.5 {
2670
+ gap: 0.375rem;
2671
+ }
2672
+
2673
+ .gap-2 {
2674
+ gap: 0.5rem;
2675
+ }
2676
+
2677
+ .space-y-1 > :not([hidden]) ~ :not([hidden]) {
2678
+ --tw-space-y-reverse: 0;
2679
+ margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
2680
+ margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
2681
+ }
2682
+
2683
+ .space-y-1\\.5 > :not([hidden]) ~ :not([hidden]) {
2684
+ --tw-space-y-reverse: 0;
2685
+ margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
2686
+ margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
2687
+ }
2688
+
2689
+ .space-y-2 > :not([hidden]) ~ :not([hidden]) {
2690
+ --tw-space-y-reverse: 0;
2691
+ margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
2692
+ margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
2693
+ }
2694
+
2695
+ .self-start {
2696
+ align-self: flex-start;
2697
+ }
2698
+
2699
+ .overflow-y-auto {
2700
+ overflow-y: auto;
2701
+ }
2702
+
2703
+ .truncate {
2704
+ overflow: hidden;
2705
+ text-overflow: ellipsis;
2706
+ white-space: nowrap;
2707
+ }
2708
+
2709
+ .whitespace-nowrap {
2710
+ white-space: nowrap;
2711
+ }
2712
+
2713
+ .whitespace-pre-wrap {
2714
+ white-space: pre-wrap;
2715
+ }
2716
+
2717
+ .break-words {
2718
+ overflow-wrap: break-word;
2719
+ }
2720
+
2721
+ .break-all {
2722
+ word-break: break-all;
2723
+ }
2724
+
2725
+ .rounded {
2726
+ border-radius: 0.25rem;
2727
+ }
2728
+
2729
+ .rounded-2xl {
2730
+ border-radius: 1rem;
2731
+ }
2732
+
2733
+ .rounded-full {
2734
+ border-radius: 9999px;
2735
+ }
2736
+
2737
+ .rounded-lg {
2738
+ border-radius: 0.5rem;
2739
+ }
2740
+
2741
+ .rounded-xl {
2742
+ border-radius: 0.75rem;
2743
+ }
2744
+
2745
+ .border {
2746
+ border-width: 1px;
2747
+ }
2748
+
2749
+ .border-l {
2750
+ border-left-width: 1px;
2751
+ }
2752
+
2753
+ .border-t {
2754
+ border-top-width: 1px;
2755
+ }
2756
+
2757
+ .border-\\[var\\(--chat-border\\)\\] {
2758
+ border-color: var(--chat-border);
2759
+ }
2760
+
2761
+ .border-amber-500\\/30 {
2762
+ border-color: rgb(245 158 11 / 0.3);
2763
+ }
2764
+
2765
+ .border-blue-200 {
2766
+ --tw-border-opacity: 1;
2767
+ border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
2768
+ }
2769
+
2770
+ .border-blue-500\\/30 {
2771
+ border-color: rgb(59 130 246 / 0.3);
2772
+ }
2773
+
2774
+ .border-blue-500\\/50 {
2775
+ border-color: rgb(59 130 246 / 0.5);
2776
+ }
2777
+
2778
+ .border-red-500\\/30 {
2779
+ border-color: rgb(239 68 68 / 0.3);
2780
+ }
2781
+
2782
+ .border-transparent {
2783
+ border-color: transparent;
2784
+ }
2785
+
2786
+ .border-yellow-200 {
2787
+ --tw-border-opacity: 1;
2788
+ border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
2789
+ }
2790
+
2791
+ .border-zinc-200 {
2792
+ --tw-border-opacity: 1;
2793
+ border-color: rgb(228 228 231 / var(--tw-border-opacity, 1));
2794
+ }
2795
+
2796
+ .border-zinc-300 {
2797
+ --tw-border-opacity: 1;
2798
+ border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
2799
+ }
2800
+
2801
+ .border-zinc-600 {
2802
+ --tw-border-opacity: 1;
2803
+ border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
2804
+ }
2805
+
2806
+ .border-zinc-700 {
2807
+ --tw-border-opacity: 1;
2808
+ border-color: rgb(63 63 70 / var(--tw-border-opacity, 1));
2809
+ }
2810
+
2811
+ .bg-\\[var\\(--chat-accent\\)\\] {
2812
+ background-color: var(--chat-accent);
2813
+ }
2814
+
2815
+ .bg-\\[var\\(--chat-bg\\)\\] {
2816
+ background-color: var(--chat-bg);
2817
+ }
2818
+
2819
+ .bg-amber-100 {
2820
+ --tw-bg-opacity: 1;
2821
+ background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
2822
+ }
2823
+
2824
+ .bg-amber-500\\/10 {
2825
+ background-color: rgb(245 158 11 / 0.1);
2826
+ }
2827
+
2828
+ .bg-amber-900\\/60 {
2829
+ background-color: rgb(120 53 15 / 0.6);
2830
+ }
2831
+
2832
+ .bg-blue-50 {
2833
+ --tw-bg-opacity: 1;
2834
+ background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
2835
+ }
2836
+
2837
+ .bg-blue-500 {
2838
+ --tw-bg-opacity: 1;
2839
+ background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
2840
+ }
2841
+
2842
+ .bg-blue-500\\/10 {
2843
+ background-color: rgb(59 130 246 / 0.1);
2844
+ }
2845
+
2846
+ .bg-blue-500\\/20 {
2847
+ background-color: rgb(59 130 246 / 0.2);
2848
+ }
2849
+
2850
+ .bg-green-500 {
2851
+ --tw-bg-opacity: 1;
2852
+ background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
2853
+ }
2854
+
2855
+ .bg-red-100 {
2856
+ --tw-bg-opacity: 1;
2857
+ background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
2858
+ }
2859
+
2860
+ .bg-red-50 {
2861
+ --tw-bg-opacity: 1;
2862
+ background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
2863
+ }
2864
+
2865
+ .bg-red-500 {
2866
+ --tw-bg-opacity: 1;
2867
+ background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
2868
+ }
2869
+
2870
+ .bg-red-500\\/10 {
2871
+ background-color: rgb(239 68 68 / 0.1);
2872
+ }
2873
+
2874
+ .bg-red-900\\/60 {
2875
+ background-color: rgb(127 29 29 / 0.6);
2876
+ }
2877
+
2878
+ .bg-white {
2879
+ --tw-bg-opacity: 1;
2880
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
2881
+ }
2882
+
2883
+ .bg-yellow-50 {
2884
+ --tw-bg-opacity: 1;
2885
+ background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
2886
+ }
2887
+
2888
+ .bg-zinc-100 {
2889
+ --tw-bg-opacity: 1;
2890
+ background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
2891
+ }
2892
+
2893
+ .bg-zinc-300 {
2894
+ --tw-bg-opacity: 1;
2895
+ background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
2896
+ }
2897
+
2898
+ .bg-zinc-50 {
2899
+ --tw-bg-opacity: 1;
2900
+ background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
2901
+ }
2902
+
2903
+ .bg-zinc-600 {
2904
+ --tw-bg-opacity: 1;
2905
+ background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
2906
+ }
2907
+
2908
+ .bg-zinc-800 {
2909
+ --tw-bg-opacity: 1;
2910
+ background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
2911
+ }
2912
+
2913
+ .bg-zinc-900 {
2914
+ --tw-bg-opacity: 1;
2915
+ background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
2916
+ }
2917
+
2918
+ .p-0\\.5 {
2919
+ padding: 0.125rem;
2920
+ }
2921
+
2922
+ .p-1 {
2923
+ padding: 0.25rem;
2924
+ }
2925
+
2926
+ .p-1\\.5 {
2927
+ padding: 0.375rem;
2928
+ }
2929
+
2930
+ .p-2 {
2931
+ padding: 0.5rem;
2932
+ }
2933
+
2934
+ .p-3 {
2935
+ padding: 0.75rem;
2936
+ }
2937
+
2938
+ .p-4 {
2939
+ padding: 1rem;
2940
+ }
2941
+
2942
+ .px-2 {
2943
+ padding-left: 0.5rem;
2944
+ padding-right: 0.5rem;
2945
+ }
2946
+
2947
+ .px-3 {
2948
+ padding-left: 0.75rem;
2949
+ padding-right: 0.75rem;
2950
+ }
2951
+
2952
+ .px-4 {
2953
+ padding-left: 1rem;
2954
+ padding-right: 1rem;
2955
+ }
2956
+
2957
+ .py-0\\.5 {
2958
+ padding-top: 0.125rem;
2959
+ padding-bottom: 0.125rem;
2960
+ }
2961
+
2962
+ .py-1 {
2963
+ padding-top: 0.25rem;
2964
+ padding-bottom: 0.25rem;
2965
+ }
2966
+
2967
+ .py-1\\.5 {
2968
+ padding-top: 0.375rem;
2969
+ padding-bottom: 0.375rem;
2970
+ }
2971
+
2972
+ .py-2 {
2973
+ padding-top: 0.5rem;
2974
+ padding-bottom: 0.5rem;
2975
+ }
2976
+
2977
+ .py-3 {
2978
+ padding-top: 0.75rem;
2979
+ padding-bottom: 0.75rem;
2980
+ }
2981
+
2982
+ .py-6 {
2983
+ padding-top: 1.5rem;
2984
+ padding-bottom: 1.5rem;
2985
+ }
2986
+
2987
+ .pb-1\\.5 {
2988
+ padding-bottom: 0.375rem;
2989
+ }
2990
+
2991
+ .pb-3 {
2992
+ padding-bottom: 0.75rem;
2993
+ }
2994
+
2995
+ .pb-4 {
2996
+ padding-bottom: 1rem;
2997
+ }
2998
+
2999
+ .pb-6 {
3000
+ padding-bottom: 1.5rem;
3001
+ }
3002
+
3003
+ .pl-2 {
3004
+ padding-left: 0.5rem;
3005
+ }
3006
+
3007
+ .pl-5 {
3008
+ padding-left: 1.25rem;
3009
+ }
3010
+
3011
+ .pt-0\\.5 {
3012
+ padding-top: 0.125rem;
3013
+ }
3014
+
3015
+ .pt-1 {
3016
+ padding-top: 0.25rem;
3017
+ }
3018
+
3019
+ .pt-2 {
3020
+ padding-top: 0.5rem;
3021
+ }
3022
+
3023
+ .pt-3 {
3024
+ padding-top: 0.75rem;
3025
+ }
3026
+
3027
+ .pt-4 {
3028
+ padding-top: 1rem;
3029
+ }
3030
+
3031
+ .pt-8 {
3032
+ padding-top: 2rem;
3033
+ }
3034
+
3035
+ .text-left {
3036
+ text-align: left;
3037
+ }
3038
+
3039
+ .text-center {
3040
+ text-align: center;
3041
+ }
3042
+
3043
+ .font-mono {
3044
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
3045
+ }
3046
+
3047
+ .font-sans {
3048
+ font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", ui-sans-serif, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
3049
+ }
3050
+
3051
+ .text-\\[10px\\] {
3052
+ font-size: 10px;
3053
+ }
3054
+
3055
+ .text-lg {
3056
+ font-size: 1.125rem;
3057
+ line-height: 1.75rem;
3058
+ }
3059
+
3060
+ .text-sm {
3061
+ font-size: 0.875rem;
3062
+ line-height: 1.25rem;
3063
+ }
3064
+
3065
+ .text-xs {
3066
+ font-size: 0.75rem;
3067
+ line-height: 1rem;
3068
+ }
3069
+
3070
+ .font-medium {
3071
+ font-weight: 500;
3072
+ }
3073
+
3074
+ .capitalize {
3075
+ text-transform: capitalize;
3076
+ }
3077
+
3078
+ .italic {
3079
+ font-style: italic;
3080
+ }
3081
+
3082
+ .leading-normal {
3083
+ line-height: 1.5;
3084
+ }
3085
+
3086
+ .text-\\[var\\(--chat-accent\\)\\] {
3087
+ color: var(--chat-accent);
3088
+ }
3089
+
3090
+ .text-\\[var\\(--chat-muted\\)\\] {
3091
+ color: var(--chat-muted);
3092
+ }
3093
+
3094
+ .text-\\[var\\(--chat-text\\)\\] {
3095
+ color: var(--chat-text);
3096
+ }
3097
+
3098
+ .text-amber-200 {
3099
+ --tw-text-opacity: 1;
3100
+ color: rgb(253 230 138 / var(--tw-text-opacity, 1));
3101
+ }
3102
+
3103
+ .text-amber-500 {
3104
+ --tw-text-opacity: 1;
3105
+ color: rgb(245 158 11 / var(--tw-text-opacity, 1));
3106
+ }
3107
+
3108
+ .text-amber-500\\/70 {
3109
+ color: rgb(245 158 11 / 0.7);
3110
+ }
3111
+
3112
+ .text-amber-700 {
3113
+ --tw-text-opacity: 1;
3114
+ color: rgb(180 83 9 / var(--tw-text-opacity, 1));
3115
+ }
3116
+
3117
+ .text-amber-800 {
3118
+ --tw-text-opacity: 1;
3119
+ color: rgb(146 64 14 / var(--tw-text-opacity, 1));
3120
+ }
3121
+
3122
+ .text-blue-700 {
3123
+ --tw-text-opacity: 1;
3124
+ color: rgb(29 78 216 / var(--tw-text-opacity, 1));
3125
+ }
3126
+
3127
+ .text-green-600\\/60 {
3128
+ color: rgb(22 163 74 / 0.6);
3129
+ }
3130
+
3131
+ .text-red-200 {
3132
+ --tw-text-opacity: 1;
3133
+ color: rgb(254 202 202 / var(--tw-text-opacity, 1));
3134
+ }
3135
+
3136
+ .text-red-500 {
3137
+ --tw-text-opacity: 1;
3138
+ color: rgb(239 68 68 / var(--tw-text-opacity, 1));
3139
+ }
3140
+
3141
+ .text-red-700 {
3142
+ --tw-text-opacity: 1;
3143
+ color: rgb(185 28 28 / var(--tw-text-opacity, 1));
3144
+ }
3145
+
3146
+ .text-red-800 {
3147
+ --tw-text-opacity: 1;
3148
+ color: rgb(153 27 27 / var(--tw-text-opacity, 1));
3149
+ }
3150
+
3151
+ .text-white {
3152
+ --tw-text-opacity: 1;
3153
+ color: rgb(255 255 255 / var(--tw-text-opacity, 1));
3154
+ }
3155
+
3156
+ .text-zinc-100 {
3157
+ --tw-text-opacity: 1;
3158
+ color: rgb(244 244 245 / var(--tw-text-opacity, 1));
3159
+ }
3160
+
3161
+ .text-zinc-400 {
3162
+ --tw-text-opacity: 1;
3163
+ color: rgb(161 161 170 / var(--tw-text-opacity, 1));
3164
+ }
3165
+
3166
+ .text-zinc-500 {
3167
+ --tw-text-opacity: 1;
3168
+ color: rgb(113 113 122 / var(--tw-text-opacity, 1));
3169
+ }
3170
+
3171
+ .text-zinc-900 {
3172
+ --tw-text-opacity: 1;
3173
+ color: rgb(24 24 27 / var(--tw-text-opacity, 1));
3174
+ }
3175
+
3176
+ .underline {
3177
+ text-decoration-line: underline;
3178
+ }
3179
+
3180
+ .opacity-50 {
3181
+ opacity: 0.5;
3182
+ }
3183
+
3184
+ .opacity-60 {
3185
+ opacity: 0.6;
3186
+ }
3187
+
3188
+ .opacity-90 {
3189
+ opacity: 0.9;
3190
+ }
3191
+
3192
+ .shadow-sm {
3193
+ --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
3194
+ --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
3195
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
3196
+ }
3197
+
3198
+ .outline {
3199
+ outline-style: solid;
3200
+ }
3201
+
3202
+ .filter {
3203
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
3204
+ }
3205
+
3206
+ .transition {
3207
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
3208
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3209
+ transition-duration: 150ms;
3210
+ }
3211
+
3212
+ .transition-all {
3213
+ transition-property: all;
3214
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3215
+ transition-duration: 150ms;
3216
+ }
3217
+
3218
+ .transition-colors {
3219
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
3220
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3221
+ transition-duration: 150ms;
3222
+ }
3223
+
3224
+ .transition-opacity {
3225
+ transition-property: opacity;
3226
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3227
+ transition-duration: 150ms;
3228
+ }
3229
+
3230
+ .transition-transform {
3231
+ transition-property: transform;
3232
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3233
+ transition-duration: 150ms;
3234
+ }
3235
+
3236
+ .ease-in-out {
3237
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3238
+ }
3239
+
3240
+ .dark\\:prose-invert:is(.dark *) {
3241
+ --tw-prose-body: var(--color-text);
3242
+ --tw-prose-headings: var(--color-text);
3243
+ --tw-prose-lead: var(--tw-prose-invert-lead);
3244
+ --tw-prose-links: var(--color-accent);
3245
+ --tw-prose-bold: var(--color-text);
3246
+ --tw-prose-counters: var(--tw-prose-invert-counters);
3247
+ --tw-prose-bullets: var(--color-muted);
3248
+ --tw-prose-hr: var(--color-divider);
3249
+ --tw-prose-quotes: var(--color-muted);
3250
+ --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
3251
+ --tw-prose-captions: var(--tw-prose-invert-captions);
3252
+ --tw-prose-kbd: var(--tw-prose-invert-kbd);
3253
+ --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);
3254
+ --tw-prose-code: var(--color-accent);
3255
+ --tw-prose-pre-code: var(--tw-prose-invert-pre-code);
3256
+ --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
3257
+ --tw-prose-th-borders: var(--color-divider);
3258
+ --tw-prose-td-borders: var(--color-divider);
3259
+ }
3260
+
3261
+ .hover\\:border-zinc-300:hover {
3262
+ --tw-border-opacity: 1;
3263
+ border-color: rgb(212 212 216 / var(--tw-border-opacity, 1));
3264
+ }
3265
+
3266
+ .hover\\:bg-\\[var\\(--chat-surface\\)\\]:hover {
3267
+ background-color: var(--chat-surface);
3268
+ }
3269
+
3270
+ .hover\\:bg-blue-600:hover {
3271
+ --tw-bg-opacity: 1;
3272
+ background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
3273
+ }
3274
+
3275
+ .hover\\:bg-green-600:hover {
3276
+ --tw-bg-opacity: 1;
3277
+ background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
3278
+ }
3279
+
3280
+ .hover\\:bg-red-500\\/10:hover {
3281
+ background-color: rgb(239 68 68 / 0.1);
3282
+ }
3283
+
3284
+ .hover\\:bg-red-600:hover {
3285
+ --tw-bg-opacity: 1;
3286
+ background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
3287
+ }
3288
+
3289
+ .hover\\:bg-zinc-100:hover {
3290
+ --tw-bg-opacity: 1;
3291
+ background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
3292
+ }
3293
+
3294
+ .hover\\:bg-zinc-700:hover {
3295
+ --tw-bg-opacity: 1;
3296
+ background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
3297
+ }
3298
+
3299
+ .hover\\:bg-zinc-800:hover {
3300
+ --tw-bg-opacity: 1;
3301
+ background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
3302
+ }
3303
+
3304
+ .hover\\:text-\\[var\\(--chat-accent\\)\\]:hover {
3305
+ color: var(--chat-accent);
3306
+ }
3307
+
3308
+ .hover\\:text-\\[var\\(--chat-text\\)\\]:hover {
3309
+ color: var(--chat-text);
3310
+ }
3311
+
3312
+ .hover\\:text-red-500:hover {
3313
+ --tw-text-opacity: 1;
3314
+ color: rgb(239 68 68 / var(--tw-text-opacity, 1));
3315
+ }
3316
+
3317
+ .hover\\:opacity-100:hover {
3318
+ opacity: 1;
3319
+ }
3320
+
3321
+ .hover\\:opacity-80:hover {
3322
+ opacity: 0.8;
3323
+ }
3324
+
3325
+ .focus\\:border-blue-500:focus {
3326
+ --tw-border-opacity: 1;
3327
+ border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
3328
+ }
3329
+
3330
+ .focus\\:outline-none:focus {
3331
+ outline: 2px solid transparent;
3332
+ outline-offset: 2px;
3333
+ }
3334
+
3335
+ .focus\\:ring-2:focus {
3336
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
3337
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
3338
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
3339
+ }
3340
+
3341
+ .focus\\:ring-blue-500\\/40:focus {
3342
+ --tw-ring-color: rgb(59 130 246 / 0.4);
3343
+ }
3344
+
3345
+ .disabled\\:cursor-not-allowed:disabled {
3346
+ cursor: not-allowed;
3347
+ }
3348
+
3349
+ .disabled\\:opacity-40:disabled {
3350
+ opacity: 0.4;
3351
+ }
3352
+
3353
+ .prose-h1\\:mb-0\\.5 :is(:where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3354
+ margin-bottom: 0.125rem;
3355
+ }
3356
+
3357
+ .prose-h1\\:mt-1 :is(:where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3358
+ margin-top: 0.25rem;
3359
+ }
3360
+
3361
+ .prose-h1\\:border-b :is(:where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3362
+ border-bottom-width: 1px;
3363
+ }
3364
+
3365
+ .prose-h1\\:pb-0\\.5 :is(:where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3366
+ padding-bottom: 0.125rem;
3367
+ }
3368
+
3369
+ .prose-h1\\:text-sm :is(:where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3370
+ font-size: 0.875rem;
3371
+ line-height: 1.25rem;
3372
+ }
3373
+
3374
+ .prose-h1\\:font-bold :is(:where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3375
+ font-weight: 700;
3376
+ }
3377
+
3378
+ .prose-h1\\:leading-tight :is(:where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3379
+ line-height: 1.25;
3380
+ }
3381
+
3382
+ .prose-h2\\:mb-0\\.5 :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3383
+ margin-bottom: 0.125rem;
3384
+ }
3385
+
3386
+ .prose-h2\\:mt-1 :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3387
+ margin-top: 0.25rem;
3388
+ }
3389
+
3390
+ .prose-h2\\:text-sm :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3391
+ font-size: 0.875rem;
3392
+ line-height: 1.25rem;
3393
+ }
3394
+
3395
+ .prose-h2\\:font-semibold :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3396
+ font-weight: 600;
3397
+ }
3398
+
3399
+ .prose-h2\\:leading-tight :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3400
+ line-height: 1.25;
3401
+ }
3402
+
3403
+ .prose-h3\\:mb-0 :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3404
+ margin-bottom: 0px;
3405
+ }
3406
+
3407
+ .prose-h3\\:mt-0\\.5 :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3408
+ margin-top: 0.125rem;
3409
+ }
3410
+
3411
+ .prose-h3\\:text-sm :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3412
+ font-size: 0.875rem;
3413
+ line-height: 1.25rem;
3414
+ }
3415
+
3416
+ .prose-h3\\:font-medium :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3417
+ font-weight: 500;
3418
+ }
3419
+
3420
+ .prose-h3\\:leading-tight :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3421
+ line-height: 1.25;
3422
+ }
3423
+
3424
+ .prose-h4\\:mb-0 :is(:where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3425
+ margin-bottom: 0px;
3426
+ }
3427
+
3428
+ .prose-h4\\:mt-0\\.5 :is(:where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3429
+ margin-top: 0.125rem;
3430
+ }
3431
+
3432
+ .prose-h4\\:text-xs :is(:where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3433
+ font-size: 0.75rem;
3434
+ line-height: 1rem;
3435
+ }
3436
+
3437
+ .prose-h4\\:font-medium :is(:where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3438
+ font-weight: 500;
3439
+ }
3440
+
3441
+ .prose-h5\\:mb-0 :is(:where(h5):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3442
+ margin-bottom: 0px;
3443
+ }
3444
+
3445
+ .prose-h5\\:mt-0\\.5 :is(:where(h5):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3446
+ margin-top: 0.125rem;
3447
+ }
3448
+
3449
+ .prose-h5\\:text-xs :is(:where(h5):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3450
+ font-size: 0.75rem;
3451
+ line-height: 1rem;
3452
+ }
3453
+
3454
+ .prose-h5\\:font-medium :is(:where(h5):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3455
+ font-weight: 500;
3456
+ }
3457
+
3458
+ .prose-h6\\:mb-0 :is(:where(h6):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3459
+ margin-bottom: 0px;
3460
+ }
3461
+
3462
+ .prose-h6\\:mt-0\\.5 :is(:where(h6):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3463
+ margin-top: 0.125rem;
3464
+ }
3465
+
3466
+ .prose-h6\\:text-xs :is(:where(h6):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3467
+ font-size: 0.75rem;
3468
+ line-height: 1rem;
3469
+ }
3470
+
3471
+ .prose-h6\\:font-medium :is(:where(h6):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3472
+ font-weight: 500;
3473
+ }
3474
+
3475
+ .prose-p\\:my-0 :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3476
+ margin-top: 0px;
3477
+ margin-bottom: 0px;
3478
+ }
3479
+
3480
+ .prose-p\\:leading-snug :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3481
+ line-height: 1.375;
3482
+ }
3483
+
3484
+ .prose-a\\:underline :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3485
+ text-decoration-line: underline;
3486
+ }
3487
+
3488
+ .prose-blockquote\\:my-0\\.5 :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3489
+ margin-top: 0.125rem;
3490
+ margin-bottom: 0.125rem;
3491
+ }
3492
+
3493
+ .prose-blockquote\\:border-l-4 :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3494
+ border-left-width: 4px;
3495
+ }
3496
+
3497
+ .prose-blockquote\\:pl-3 :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3498
+ padding-left: 0.75rem;
3499
+ }
3500
+
3501
+ .prose-blockquote\\:italic :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3502
+ font-style: italic;
3503
+ }
3504
+
3505
+ .prose-strong\\:font-semibold :is(:where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3506
+ font-weight: 600;
3507
+ }
3508
+
3509
+ .prose-code\\:rounded :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3510
+ border-radius: 0.25rem;
3511
+ }
3512
+
3513
+ .prose-code\\:px-1 :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3514
+ padding-left: 0.25rem;
3515
+ padding-right: 0.25rem;
3516
+ }
3517
+
3518
+ .prose-code\\:py-0\\.5 :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3519
+ padding-top: 0.125rem;
3520
+ padding-bottom: 0.125rem;
3521
+ }
3522
+
3523
+ .prose-code\\:font-mono :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3524
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
3525
+ }
3526
+
3527
+ .prose-code\\:text-xs :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3528
+ font-size: 0.75rem;
3529
+ line-height: 1rem;
3530
+ }
3531
+
3532
+ .prose-code\\:before\\:content-none :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)))::before {
3533
+ --tw-content: none;
3534
+ content: var(--tw-content);
3535
+ }
3536
+
3537
+ .prose-code\\:after\\:content-none :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)))::after {
3538
+ --tw-content: none;
3539
+ content: var(--tw-content);
3540
+ }
3541
+
3542
+ .prose-pre\\:my-0\\.5 :is(:where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3543
+ margin-top: 0.125rem;
3544
+ margin-bottom: 0.125rem;
3545
+ }
3546
+
3547
+ .prose-pre\\:rounded-lg :is(:where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3548
+ border-radius: 0.5rem;
3549
+ }
3550
+
3551
+ .prose-pre\\:border :is(:where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3552
+ border-width: 1px;
3553
+ }
3554
+
3555
+ .prose-pre\\:p-2 :is(:where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3556
+ padding: 0.5rem;
3557
+ }
3558
+
3559
+ .prose-ol\\:my-0\\.5 :is(:where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3560
+ margin-top: 0.125rem;
3561
+ margin-bottom: 0.125rem;
3562
+ }
3563
+
3564
+ .prose-ol\\:list-decimal :is(:where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3565
+ list-style-type: decimal;
3566
+ }
3567
+
3568
+ .prose-ol\\:pl-5 :is(:where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3569
+ padding-left: 1.25rem;
3570
+ }
3571
+
3572
+ .prose-ul\\:my-0\\.5 :is(:where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3573
+ margin-top: 0.125rem;
3574
+ margin-bottom: 0.125rem;
3575
+ }
3576
+
3577
+ .prose-ul\\:list-disc :is(:where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3578
+ list-style-type: disc;
3579
+ }
3580
+
3581
+ .prose-ul\\:pl-5 :is(:where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3582
+ padding-left: 1.25rem;
3583
+ }
3584
+
3585
+ .prose-li\\:my-0 :is(:where(li):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3586
+ margin-top: 0px;
3587
+ margin-bottom: 0px;
3588
+ }
3589
+
3590
+ .prose-li\\:leading-normal :is(:where(li):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3591
+ line-height: 1.5;
3592
+ }
3593
+
3594
+ .prose-table\\:my-0\\.5 :is(:where(table):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3595
+ margin-top: 0.125rem;
3596
+ margin-bottom: 0.125rem;
3597
+ }
3598
+
3599
+ .prose-table\\:border-collapse :is(:where(table):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3600
+ border-collapse: collapse;
3601
+ }
3602
+
3603
+ .prose-th\\:border :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3604
+ border-width: 1px;
3605
+ }
3606
+
3607
+ .prose-th\\:px-2 :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3608
+ padding-left: 0.5rem;
3609
+ padding-right: 0.5rem;
3610
+ }
3611
+
3612
+ .prose-th\\:py-0\\.5 :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3613
+ padding-top: 0.125rem;
3614
+ padding-bottom: 0.125rem;
3615
+ }
3616
+
3617
+ .prose-th\\:font-semibold :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3618
+ font-weight: 600;
3619
+ }
3620
+
3621
+ .prose-td\\:border :is(:where(td):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3622
+ border-width: 1px;
3623
+ }
3624
+
3625
+ .prose-td\\:px-2 :is(:where(td):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3626
+ padding-left: 0.5rem;
3627
+ padding-right: 0.5rem;
3628
+ }
3629
+
3630
+ .prose-td\\:py-0\\.5 :is(:where(td):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3631
+ padding-top: 0.125rem;
3632
+ padding-bottom: 0.125rem;
3633
+ }
3634
+
3635
+ .prose-img\\:rounded-lg :is(:where(img):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3636
+ border-radius: 0.5rem;
3637
+ }
3638
+
3639
+ .prose-hr\\:my-0\\.5 :is(:where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
3640
+ margin-top: 0.125rem;
3641
+ margin-bottom: 0.125rem;
3642
+ }
3643
+
3644
+ .dark\\:border-yellow-800:is(.dark *) {
3645
+ --tw-border-opacity: 1;
3646
+ border-color: rgb(133 77 14 / var(--tw-border-opacity, 1));
3647
+ }
3648
+
3649
+ .dark\\:bg-red-900\\/20:is(.dark *) {
3650
+ background-color: rgb(127 29 29 / 0.2);
3651
+ }
3652
+
3653
+ .dark\\:bg-yellow-900\\/20:is(.dark *) {
3654
+ background-color: rgb(113 63 18 / 0.2);
3655
+ }
3656
+
3657
+ .dark\\:text-amber-300:is(.dark *) {
3658
+ --tw-text-opacity: 1;
3659
+ color: rgb(252 211 77 / var(--tw-text-opacity, 1));
3660
+ }
3661
+
3662
+ .dark\\:text-blue-300:is(.dark *) {
3663
+ --tw-text-opacity: 1;
3664
+ color: rgb(147 197 253 / var(--tw-text-opacity, 1));
3665
+ }
3666
+
3667
+ .dark\\:text-green-400\\/60:is(.dark *) {
3668
+ color: rgb(74 222 128 / 0.6);
3669
+ }
3670
+
3671
+ .dark\\:text-red-300:is(.dark *) {
3672
+ --tw-text-opacity: 1;
3673
+ color: rgb(252 165 165 / var(--tw-text-opacity, 1));
3674
+ }