@copilotkitnext/angular 0.0.0-max-changeset-20260109174803

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.
Files changed (118) hide show
  1. package/LICENSE +10 -0
  2. package/README.md +530 -0
  3. package/dist/LICENSE +10 -0
  4. package/dist/README.md +530 -0
  5. package/dist/esm2022/copilotkitnext-angular.mjs +5 -0
  6. package/dist/esm2022/index.mjs +2 -0
  7. package/dist/esm2022/lib/agent-context.mjs +25 -0
  8. package/dist/esm2022/lib/agent.mjs +73 -0
  9. package/dist/esm2022/lib/chat-config.mjs +35 -0
  10. package/dist/esm2022/lib/chat-state.mjs +18 -0
  11. package/dist/esm2022/lib/components/chat/copilot-chat-assistant-message-buttons.mjs +344 -0
  12. package/dist/esm2022/lib/components/chat/copilot-chat-assistant-message-renderer.mjs +260 -0
  13. package/dist/esm2022/lib/components/chat/copilot-chat-assistant-message-toolbar.mjs +22 -0
  14. package/dist/esm2022/lib/components/chat/copilot-chat-assistant-message.mjs +415 -0
  15. package/dist/esm2022/lib/components/chat/copilot-chat-assistant-message.types.mjs +2 -0
  16. package/dist/esm2022/lib/components/chat/copilot-chat-audio-recorder.mjs +196 -0
  17. package/dist/esm2022/lib/components/chat/copilot-chat-buttons.mjs +299 -0
  18. package/dist/esm2022/lib/components/chat/copilot-chat-input-defaults.mjs +39 -0
  19. package/dist/esm2022/lib/components/chat/copilot-chat-input.mjs +634 -0
  20. package/dist/esm2022/lib/components/chat/copilot-chat-input.types.mjs +10 -0
  21. package/dist/esm2022/lib/components/chat/copilot-chat-message-view-cursor.mjs +27 -0
  22. package/dist/esm2022/lib/components/chat/copilot-chat-message-view.mjs +268 -0
  23. package/dist/esm2022/lib/components/chat/copilot-chat-message-view.types.mjs +2 -0
  24. package/dist/esm2022/lib/components/chat/copilot-chat-textarea.mjs +139 -0
  25. package/dist/esm2022/lib/components/chat/copilot-chat-tool-calls-view.mjs +36 -0
  26. package/dist/esm2022/lib/components/chat/copilot-chat-toolbar.mjs +20 -0
  27. package/dist/esm2022/lib/components/chat/copilot-chat-tools-menu.mjs +203 -0
  28. package/dist/esm2022/lib/components/chat/copilot-chat-user-message-branch-navigation.mjs +98 -0
  29. package/dist/esm2022/lib/components/chat/copilot-chat-user-message-buttons.mjs +182 -0
  30. package/dist/esm2022/lib/components/chat/copilot-chat-user-message-renderer.mjs +28 -0
  31. package/dist/esm2022/lib/components/chat/copilot-chat-user-message-toolbar.mjs +25 -0
  32. package/dist/esm2022/lib/components/chat/copilot-chat-user-message.mjs +308 -0
  33. package/dist/esm2022/lib/components/chat/copilot-chat-user-message.types.mjs +2 -0
  34. package/dist/esm2022/lib/components/chat/copilot-chat-view-disclaimer.mjs +48 -0
  35. package/dist/esm2022/lib/components/chat/copilot-chat-view-feather.mjs +41 -0
  36. package/dist/esm2022/lib/components/chat/copilot-chat-view-handlers.mjs +19 -0
  37. package/dist/esm2022/lib/components/chat/copilot-chat-view-input-container.mjs +96 -0
  38. package/dist/esm2022/lib/components/chat/copilot-chat-view-scroll-to-bottom-button.mjs +89 -0
  39. package/dist/esm2022/lib/components/chat/copilot-chat-view-scroll-view.mjs +456 -0
  40. package/dist/esm2022/lib/components/chat/copilot-chat-view.mjs +404 -0
  41. package/dist/esm2022/lib/components/chat/copilot-chat-view.types.mjs +2 -0
  42. package/dist/esm2022/lib/components/chat/copilot-chat.mjs +167 -0
  43. package/dist/esm2022/lib/config.mjs +9 -0
  44. package/dist/esm2022/lib/copilotkit.mjs +115 -0
  45. package/dist/esm2022/lib/directives/copilotkit-agent-context.mjs +130 -0
  46. package/dist/esm2022/lib/directives/stick-to-bottom.mjs +170 -0
  47. package/dist/esm2022/lib/directives/tooltip.mjs +217 -0
  48. package/dist/esm2022/lib/human-in-the-loop.mjs +19 -0
  49. package/dist/esm2022/lib/render-tool-calls.mjs +138 -0
  50. package/dist/esm2022/lib/resize-observer.mjs +152 -0
  51. package/dist/esm2022/lib/scroll-position.mjs +124 -0
  52. package/dist/esm2022/lib/slots/copilot-slot.mjs +156 -0
  53. package/dist/esm2022/lib/slots/index.mjs +4 -0
  54. package/dist/esm2022/lib/slots/slot.types.mjs +6 -0
  55. package/dist/esm2022/lib/slots/slot.utils.mjs +235 -0
  56. package/dist/esm2022/lib/tools.mjs +31 -0
  57. package/dist/esm2022/lib/utils.mjs +10 -0
  58. package/dist/esm2022/public-api.mjs +48 -0
  59. package/dist/fesm2022/copilotkitnext-angular.mjs +6310 -0
  60. package/dist/fesm2022/copilotkitnext-angular.mjs.map +1 -0
  61. package/dist/index.d.ts +1 -0
  62. package/dist/lib/agent-context.d.ts +12 -0
  63. package/dist/lib/agent.d.ts +68 -0
  64. package/dist/lib/chat-config.d.ts +23 -0
  65. package/dist/lib/chat-state.d.ts +10 -0
  66. package/dist/lib/components/chat/copilot-chat-assistant-message-buttons.d.ts +68 -0
  67. package/dist/lib/components/chat/copilot-chat-assistant-message-renderer.d.ts +26 -0
  68. package/dist/lib/components/chat/copilot-chat-assistant-message-toolbar.d.ts +7 -0
  69. package/dist/lib/components/chat/copilot-chat-assistant-message.d.ts +208 -0
  70. package/dist/lib/components/chat/copilot-chat-assistant-message.types.d.ts +31 -0
  71. package/dist/lib/components/chat/copilot-chat-audio-recorder.d.ts +40 -0
  72. package/dist/lib/components/chat/copilot-chat-buttons.d.ts +65 -0
  73. package/dist/lib/components/chat/copilot-chat-input-defaults.d.ts +38 -0
  74. package/dist/lib/components/chat/copilot-chat-input.d.ts +133 -0
  75. package/dist/lib/components/chat/copilot-chat-input.types.d.ts +129 -0
  76. package/dist/lib/components/chat/copilot-chat-message-view-cursor.d.ts +11 -0
  77. package/dist/lib/components/chat/copilot-chat-message-view.d.ts +430 -0
  78. package/dist/lib/components/chat/copilot-chat-message-view.types.d.ts +24 -0
  79. package/dist/lib/components/chat/copilot-chat-textarea.d.ts +41 -0
  80. package/dist/lib/components/chat/copilot-chat-tool-calls-view.d.ts +70 -0
  81. package/dist/lib/components/chat/copilot-chat-toolbar.d.ts +7 -0
  82. package/dist/lib/components/chat/copilot-chat-tools-menu.d.ts +20 -0
  83. package/dist/lib/components/chat/copilot-chat-user-message-branch-navigation.d.ts +35 -0
  84. package/dist/lib/components/chat/copilot-chat-user-message-buttons.d.ts +35 -0
  85. package/dist/lib/components/chat/copilot-chat-user-message-renderer.d.ts +8 -0
  86. package/dist/lib/components/chat/copilot-chat-user-message-toolbar.d.ts +7 -0
  87. package/dist/lib/components/chat/copilot-chat-user-message.d.ts +71 -0
  88. package/dist/lib/components/chat/copilot-chat-user-message.types.d.ts +27 -0
  89. package/dist/lib/components/chat/copilot-chat-view-disclaimer.d.ts +15 -0
  90. package/dist/lib/components/chat/copilot-chat-view-feather.d.ts +15 -0
  91. package/dist/lib/components/chat/copilot-chat-view-handlers.d.ts +11 -0
  92. package/dist/lib/components/chat/copilot-chat-view-input-container.d.ts +23 -0
  93. package/dist/lib/components/chat/copilot-chat-view-scroll-to-bottom-button.d.ts +16 -0
  94. package/dist/lib/components/chat/copilot-chat-view-scroll-view.d.ts +129 -0
  95. package/dist/lib/components/chat/copilot-chat-view.d.ts +284 -0
  96. package/dist/lib/components/chat/copilot-chat-view.types.d.ts +42 -0
  97. package/dist/lib/components/chat/copilot-chat.d.ts +82 -0
  98. package/dist/lib/config.d.ts +16 -0
  99. package/dist/lib/copilotkit.d.ts +29 -0
  100. package/dist/lib/directives/copilotkit-agent-context.d.ts +68 -0
  101. package/dist/lib/directives/stick-to-bottom.d.ts +62 -0
  102. package/dist/lib/directives/tooltip.d.ts +33 -0
  103. package/dist/lib/human-in-the-loop.d.ts +13 -0
  104. package/dist/lib/render-tool-calls.d.ts +90 -0
  105. package/dist/lib/resize-observer.d.ts +44 -0
  106. package/dist/lib/scroll-position.d.ts +50 -0
  107. package/dist/lib/slots/copilot-slot.d.ts +34 -0
  108. package/dist/lib/slots/index.d.ts +3 -0
  109. package/dist/lib/slots/slot.types.d.ts +55 -0
  110. package/dist/lib/slots/slot.utils.d.ts +110 -0
  111. package/dist/lib/tools.d.ts +65 -0
  112. package/dist/lib/utils.d.ts +6 -0
  113. package/dist/public-api.d.ts +47 -0
  114. package/dist/styles.css +1882 -0
  115. package/eslint.config.mjs +20 -0
  116. package/package.json +101 -0
  117. package/tsconfig.json +33 -0
  118. package/vitest.config.mts +45 -0
@@ -0,0 +1,1882 @@
1
+ /*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root, :host {
6
+ --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
7
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
+ "Courier New", monospace;
10
+ --color-gray-50: oklch(98.5% 0.002 247.839);
11
+ --color-gray-100: oklch(96.7% 0.003 264.542);
12
+ --color-gray-200: oklch(92.8% 0.006 264.531);
13
+ --color-gray-600: oklch(44.6% 0.03 256.802);
14
+ --color-gray-700: oklch(37.3% 0.034 259.733);
15
+ --color-gray-800: oklch(27.8% 0.033 256.848);
16
+ --color-gray-900: oklch(21% 0.034 264.665);
17
+ --color-black: #000;
18
+ --color-white: #fff;
19
+ --spacing: 0.25rem;
20
+ --container-3xl: 48rem;
21
+ --text-xs: 0.75rem;
22
+ --text-xs--line-height: calc(1 / 0.75);
23
+ --text-sm: 0.875rem;
24
+ --text-sm--line-height: calc(1.25 / 0.875);
25
+ --font-weight-normal: 400;
26
+ --font-weight-medium: 500;
27
+ --leading-relaxed: 1.625;
28
+ --default-transition-duration: 150ms;
29
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
30
+ --default-font-family: var(--font-sans);
31
+ --default-mono-font-family: var(--font-mono);
32
+ --animate-pulse-cursor: pulse-cursor 0.9s cubic-bezier(0.4, 0, 0.2, 1)
33
+ infinite;
34
+ }
35
+ }
36
+ @layer base {
37
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
38
+ box-sizing: border-box;
39
+ margin: 0;
40
+ padding: 0;
41
+ border: 0 solid;
42
+ }
43
+ html, :host {
44
+ line-height: 1.5;
45
+ -webkit-text-size-adjust: 100%;
46
+ tab-size: 4;
47
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
48
+ font-feature-settings: var(--default-font-feature-settings, normal);
49
+ font-variation-settings: var(--default-font-variation-settings, normal);
50
+ -webkit-tap-highlight-color: transparent;
51
+ }
52
+ hr {
53
+ height: 0;
54
+ color: inherit;
55
+ border-top-width: 1px;
56
+ }
57
+ abbr:where([title]) {
58
+ -webkit-text-decoration: underline dotted;
59
+ text-decoration: underline dotted;
60
+ }
61
+ h1, h2, h3, h4, h5, h6 {
62
+ font-size: inherit;
63
+ font-weight: inherit;
64
+ }
65
+ a {
66
+ color: inherit;
67
+ -webkit-text-decoration: inherit;
68
+ text-decoration: inherit;
69
+ }
70
+ b, strong {
71
+ font-weight: bolder;
72
+ }
73
+ code, kbd, samp, pre {
74
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
75
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
76
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
77
+ font-size: 1em;
78
+ }
79
+ small {
80
+ font-size: 80%;
81
+ }
82
+ sub, sup {
83
+ font-size: 75%;
84
+ line-height: 0;
85
+ position: relative;
86
+ vertical-align: baseline;
87
+ }
88
+ sub {
89
+ bottom: -0.25em;
90
+ }
91
+ sup {
92
+ top: -0.5em;
93
+ }
94
+ table {
95
+ text-indent: 0;
96
+ border-color: inherit;
97
+ border-collapse: collapse;
98
+ }
99
+ :-moz-focusring {
100
+ outline: auto;
101
+ }
102
+ progress {
103
+ vertical-align: baseline;
104
+ }
105
+ summary {
106
+ display: list-item;
107
+ }
108
+ ol, ul, menu {
109
+ list-style: none;
110
+ }
111
+ img, svg, video, canvas, audio, iframe, embed, object {
112
+ display: block;
113
+ vertical-align: middle;
114
+ }
115
+ img, video {
116
+ max-width: 100%;
117
+ height: auto;
118
+ }
119
+ button, input, select, optgroup, textarea, ::file-selector-button {
120
+ font: inherit;
121
+ font-feature-settings: inherit;
122
+ font-variation-settings: inherit;
123
+ letter-spacing: inherit;
124
+ color: inherit;
125
+ border-radius: 0;
126
+ background-color: transparent;
127
+ opacity: 1;
128
+ }
129
+ :where(select:is([multiple], [size])) optgroup {
130
+ font-weight: bolder;
131
+ }
132
+ :where(select:is([multiple], [size])) optgroup option {
133
+ padding-inline-start: 20px;
134
+ }
135
+ ::file-selector-button {
136
+ margin-inline-end: 4px;
137
+ }
138
+ ::placeholder {
139
+ opacity: 1;
140
+ }
141
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
142
+ ::placeholder {
143
+ color: currentcolor;
144
+ @supports (color: color-mix(in lab, red, red)) {
145
+ color: color-mix(in oklab, currentcolor 50%, transparent);
146
+ }
147
+ }
148
+ }
149
+ textarea {
150
+ resize: vertical;
151
+ }
152
+ ::-webkit-search-decoration {
153
+ -webkit-appearance: none;
154
+ }
155
+ ::-webkit-date-and-time-value {
156
+ min-height: 1lh;
157
+ text-align: inherit;
158
+ }
159
+ ::-webkit-datetime-edit {
160
+ display: inline-flex;
161
+ }
162
+ ::-webkit-datetime-edit-fields-wrapper {
163
+ padding: 0;
164
+ }
165
+ ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
166
+ padding-block: 0;
167
+ }
168
+ ::-webkit-calendar-picker-indicator {
169
+ line-height: 1;
170
+ }
171
+ :-moz-ui-invalid {
172
+ box-shadow: none;
173
+ }
174
+ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
175
+ appearance: button;
176
+ }
177
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
178
+ height: auto;
179
+ }
180
+ [hidden]:where(:not([hidden="until-found"])) {
181
+ display: none !important;
182
+ }
183
+ }
184
+ @layer utilities {
185
+ .pointer-events-none {
186
+ pointer-events: none;
187
+ }
188
+ .invisible {
189
+ visibility: hidden;
190
+ }
191
+ .absolute {
192
+ position: absolute;
193
+ }
194
+ .relative {
195
+ position: relative;
196
+ }
197
+ .static {
198
+ position: static;
199
+ }
200
+ .inset-x-0 {
201
+ inset-inline: calc(var(--spacing) * 0);
202
+ }
203
+ .right-0 {
204
+ right: calc(var(--spacing) * 0);
205
+ }
206
+ .right-4 {
207
+ right: calc(var(--spacing) * 4);
208
+ }
209
+ .bottom-0 {
210
+ bottom: calc(var(--spacing) * 0);
211
+ }
212
+ .left-0 {
213
+ left: calc(var(--spacing) * 0);
214
+ }
215
+ .z-10 {
216
+ z-index: 10;
217
+ }
218
+ .z-20 {
219
+ z-index: 20;
220
+ }
221
+ .z-30 {
222
+ z-index: 30;
223
+ }
224
+ .container {
225
+ width: 100%;
226
+ @media (width >= 40rem) {
227
+ max-width: 40rem;
228
+ }
229
+ @media (width >= 48rem) {
230
+ max-width: 48rem;
231
+ }
232
+ @media (width >= 64rem) {
233
+ max-width: 64rem;
234
+ }
235
+ @media (width >= 80rem) {
236
+ max-width: 80rem;
237
+ }
238
+ @media (width >= 96rem) {
239
+ max-width: 96rem;
240
+ }
241
+ }
242
+ .mx-auto {
243
+ margin-inline: auto;
244
+ }
245
+ .my-1 {
246
+ margin-block: calc(var(--spacing) * 1);
247
+ }
248
+ .prose {
249
+ color: var(--tw-prose-body);
250
+ max-width: 65ch;
251
+ :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
252
+ margin-top: 1.25em;
253
+ margin-bottom: 1.25em;
254
+ }
255
+ :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
256
+ color: var(--tw-prose-lead);
257
+ font-size: 1.25em;
258
+ line-height: 1.6;
259
+ margin-top: 1.2em;
260
+ margin-bottom: 1.2em;
261
+ }
262
+ :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
263
+ color: var(--tw-prose-links);
264
+ text-decoration: underline;
265
+ font-weight: 500;
266
+ }
267
+ :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
268
+ color: var(--tw-prose-bold);
269
+ font-weight: 600;
270
+ }
271
+ :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
272
+ color: inherit;
273
+ }
274
+ :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
275
+ color: inherit;
276
+ }
277
+ :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
278
+ color: inherit;
279
+ }
280
+ :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
281
+ list-style-type: decimal;
282
+ margin-top: 1.25em;
283
+ margin-bottom: 1.25em;
284
+ padding-inline-start: 1.625em;
285
+ }
286
+ :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
287
+ list-style-type: upper-alpha;
288
+ }
289
+ :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
290
+ list-style-type: lower-alpha;
291
+ }
292
+ :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
293
+ list-style-type: upper-alpha;
294
+ }
295
+ :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
296
+ list-style-type: lower-alpha;
297
+ }
298
+ :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
299
+ list-style-type: upper-roman;
300
+ }
301
+ :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
302
+ list-style-type: lower-roman;
303
+ }
304
+ :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
305
+ list-style-type: upper-roman;
306
+ }
307
+ :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
308
+ list-style-type: lower-roman;
309
+ }
310
+ :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
311
+ list-style-type: decimal;
312
+ }
313
+ :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
314
+ list-style-type: disc;
315
+ margin-top: 1.25em;
316
+ margin-bottom: 1.25em;
317
+ padding-inline-start: 1.625em;
318
+ }
319
+ :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
320
+ font-weight: 400;
321
+ color: var(--tw-prose-counters);
322
+ }
323
+ :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
324
+ color: var(--tw-prose-bullets);
325
+ }
326
+ :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
327
+ color: var(--tw-prose-headings);
328
+ font-weight: 600;
329
+ margin-top: 1.25em;
330
+ }
331
+ :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
332
+ border-color: var(--tw-prose-hr);
333
+ border-top-width: 1px;
334
+ margin-top: 3em;
335
+ margin-bottom: 3em;
336
+ }
337
+ :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
338
+ font-weight: 500;
339
+ font-style: italic;
340
+ color: var(--tw-prose-quotes);
341
+ border-inline-start-width: 0.25rem;
342
+ border-inline-start-color: var(--tw-prose-quote-borders);
343
+ quotes: "\201C""\201D""\2018""\2019";
344
+ margin-top: 1.6em;
345
+ margin-bottom: 1.6em;
346
+ padding-inline-start: 1em;
347
+ }
348
+ :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
349
+ content: open-quote;
350
+ }
351
+ :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
352
+ content: close-quote;
353
+ }
354
+ :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
355
+ color: var(--tw-prose-headings);
356
+ font-weight: 800;
357
+ font-size: 2.25em;
358
+ margin-top: 0;
359
+ margin-bottom: 0.8888889em;
360
+ line-height: 1.1111111;
361
+ }
362
+ :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
363
+ font-weight: 900;
364
+ color: inherit;
365
+ }
366
+ :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
367
+ color: var(--tw-prose-headings);
368
+ font-weight: 700;
369
+ font-size: 1.5em;
370
+ margin-top: 2em;
371
+ margin-bottom: 1em;
372
+ line-height: 1.3333333;
373
+ }
374
+ :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
375
+ font-weight: 800;
376
+ color: inherit;
377
+ }
378
+ :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
379
+ color: var(--tw-prose-headings);
380
+ font-weight: 600;
381
+ font-size: 1.25em;
382
+ margin-top: 1.6em;
383
+ margin-bottom: 0.6em;
384
+ line-height: 1.6;
385
+ }
386
+ :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
387
+ font-weight: 700;
388
+ color: inherit;
389
+ }
390
+ :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
391
+ color: var(--tw-prose-headings);
392
+ font-weight: 600;
393
+ margin-top: 1.5em;
394
+ margin-bottom: 0.5em;
395
+ line-height: 1.5;
396
+ }
397
+ :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
398
+ font-weight: 700;
399
+ color: inherit;
400
+ }
401
+ :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
402
+ margin-top: 2em;
403
+ margin-bottom: 2em;
404
+ }
405
+ :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
406
+ display: block;
407
+ margin-top: 2em;
408
+ margin-bottom: 2em;
409
+ }
410
+ :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
411
+ margin-top: 2em;
412
+ margin-bottom: 2em;
413
+ }
414
+ :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
415
+ font-weight: 500;
416
+ font-family: inherit;
417
+ color: var(--tw-prose-kbd);
418
+ box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
419
+ font-size: 0.875em;
420
+ border-radius: 0.3125rem;
421
+ padding-top: 0.1875em;
422
+ padding-inline-end: 0.375em;
423
+ padding-bottom: 0.1875em;
424
+ padding-inline-start: 0.375em;
425
+ }
426
+ :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
427
+ color: var(--tw-prose-code);
428
+ font-weight: 600;
429
+ font-size: 0.875em;
430
+ }
431
+ :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
432
+ content: "`";
433
+ }
434
+ :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
435
+ content: "`";
436
+ }
437
+ :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
438
+ color: inherit;
439
+ }
440
+ :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
441
+ color: inherit;
442
+ }
443
+ :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
444
+ color: inherit;
445
+ font-size: 0.875em;
446
+ }
447
+ :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
448
+ color: inherit;
449
+ font-size: 0.9em;
450
+ }
451
+ :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
452
+ color: inherit;
453
+ }
454
+ :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
455
+ color: inherit;
456
+ }
457
+ :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
458
+ color: inherit;
459
+ }
460
+ :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
461
+ color: var(--tw-prose-pre-code);
462
+ background-color: var(--tw-prose-pre-bg);
463
+ overflow-x: auto;
464
+ font-weight: 400;
465
+ font-size: 0.875em;
466
+ line-height: 1.7142857;
467
+ margin-top: 1.7142857em;
468
+ margin-bottom: 1.7142857em;
469
+ border-radius: 0.375rem;
470
+ padding-top: 0.8571429em;
471
+ padding-inline-end: 1.1428571em;
472
+ padding-bottom: 0.8571429em;
473
+ padding-inline-start: 1.1428571em;
474
+ }
475
+ :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
476
+ background-color: transparent;
477
+ border-width: 0;
478
+ border-radius: 0;
479
+ padding: 0;
480
+ font-weight: inherit;
481
+ color: inherit;
482
+ font-size: inherit;
483
+ font-family: inherit;
484
+ line-height: inherit;
485
+ }
486
+ :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
487
+ content: none;
488
+ }
489
+ :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
490
+ content: none;
491
+ }
492
+ :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
493
+ width: 100%;
494
+ table-layout: auto;
495
+ margin-top: 2em;
496
+ margin-bottom: 2em;
497
+ font-size: 0.875em;
498
+ line-height: 1.7142857;
499
+ }
500
+ :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
501
+ border-bottom-width: 1px;
502
+ border-bottom-color: var(--tw-prose-th-borders);
503
+ }
504
+ :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
505
+ color: var(--tw-prose-headings);
506
+ font-weight: 600;
507
+ vertical-align: bottom;
508
+ padding-inline-end: 0.5714286em;
509
+ padding-bottom: 0.5714286em;
510
+ padding-inline-start: 0.5714286em;
511
+ }
512
+ :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
513
+ border-bottom-width: 1px;
514
+ border-bottom-color: var(--tw-prose-td-borders);
515
+ }
516
+ :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
517
+ border-bottom-width: 0;
518
+ }
519
+ :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
520
+ vertical-align: baseline;
521
+ }
522
+ :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
523
+ border-top-width: 1px;
524
+ border-top-color: var(--tw-prose-th-borders);
525
+ }
526
+ :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
527
+ vertical-align: top;
528
+ }
529
+ :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
530
+ text-align: start;
531
+ }
532
+ :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
533
+ margin-top: 0;
534
+ margin-bottom: 0;
535
+ }
536
+ :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
537
+ color: var(--tw-prose-captions);
538
+ font-size: 0.875em;
539
+ line-height: 1.4285714;
540
+ margin-top: 0.8571429em;
541
+ }
542
+ --tw-prose-body: oklch(37.3% 0.034 259.733);
543
+ --tw-prose-headings: oklch(21% 0.034 264.665);
544
+ --tw-prose-lead: oklch(44.6% 0.03 256.802);
545
+ --tw-prose-links: oklch(21% 0.034 264.665);
546
+ --tw-prose-bold: oklch(21% 0.034 264.665);
547
+ --tw-prose-counters: oklch(55.1% 0.027 264.364);
548
+ --tw-prose-bullets: oklch(87.2% 0.01 258.338);
549
+ --tw-prose-hr: oklch(92.8% 0.006 264.531);
550
+ --tw-prose-quotes: oklch(21% 0.034 264.665);
551
+ --tw-prose-quote-borders: oklch(92.8% 0.006 264.531);
552
+ --tw-prose-captions: oklch(55.1% 0.027 264.364);
553
+ --tw-prose-kbd: oklch(21% 0.034 264.665);
554
+ --tw-prose-kbd-shadows: color-mix(in oklab, oklch(21% 0.034 264.665) 10%, transparent);
555
+ --tw-prose-code: oklch(21% 0.034 264.665);
556
+ --tw-prose-pre-code: oklch(92.8% 0.006 264.531);
557
+ --tw-prose-pre-bg: oklch(27.8% 0.033 256.848);
558
+ --tw-prose-th-borders: oklch(87.2% 0.01 258.338);
559
+ --tw-prose-td-borders: oklch(92.8% 0.006 264.531);
560
+ --tw-prose-invert-body: oklch(87.2% 0.01 258.338);
561
+ --tw-prose-invert-headings: #fff;
562
+ --tw-prose-invert-lead: oklch(70.7% 0.022 261.325);
563
+ --tw-prose-invert-links: #fff;
564
+ --tw-prose-invert-bold: #fff;
565
+ --tw-prose-invert-counters: oklch(70.7% 0.022 261.325);
566
+ --tw-prose-invert-bullets: oklch(44.6% 0.03 256.802);
567
+ --tw-prose-invert-hr: oklch(37.3% 0.034 259.733);
568
+ --tw-prose-invert-quotes: oklch(96.7% 0.003 264.542);
569
+ --tw-prose-invert-quote-borders: oklch(37.3% 0.034 259.733);
570
+ --tw-prose-invert-captions: oklch(70.7% 0.022 261.325);
571
+ --tw-prose-invert-kbd: #fff;
572
+ --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
573
+ --tw-prose-invert-code: #fff;
574
+ --tw-prose-invert-pre-code: oklch(87.2% 0.01 258.338);
575
+ --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
576
+ --tw-prose-invert-th-borders: oklch(44.6% 0.03 256.802);
577
+ --tw-prose-invert-td-borders: oklch(37.3% 0.034 259.733);
578
+ font-size: 1rem;
579
+ line-height: 1.75;
580
+ :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
581
+ margin-top: 0;
582
+ margin-bottom: 0;
583
+ }
584
+ :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
585
+ margin-top: 0.5em;
586
+ margin-bottom: 0.5em;
587
+ }
588
+ :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
589
+ padding-inline-start: 0.375em;
590
+ }
591
+ :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
592
+ padding-inline-start: 0.375em;
593
+ }
594
+ :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
595
+ margin-top: 0.75em;
596
+ margin-bottom: 0.75em;
597
+ }
598
+ :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
599
+ margin-top: 1.25em;
600
+ }
601
+ :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
602
+ margin-bottom: 1.25em;
603
+ }
604
+ :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
605
+ margin-top: 1.25em;
606
+ }
607
+ :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
608
+ margin-bottom: 1.25em;
609
+ }
610
+ :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
611
+ margin-top: 0.75em;
612
+ margin-bottom: 0.75em;
613
+ }
614
+ :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
615
+ margin-top: 1.25em;
616
+ margin-bottom: 1.25em;
617
+ }
618
+ :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
619
+ margin-top: 0.5em;
620
+ padding-inline-start: 1.625em;
621
+ }
622
+ :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
623
+ margin-top: 0;
624
+ }
625
+ :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
626
+ margin-top: 0;
627
+ }
628
+ :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
629
+ margin-top: 0;
630
+ }
631
+ :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
632
+ margin-top: 0;
633
+ }
634
+ :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
635
+ padding-inline-start: 0;
636
+ }
637
+ :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
638
+ padding-inline-end: 0;
639
+ }
640
+ :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
641
+ padding-top: 0.5714286em;
642
+ padding-inline-end: 0.5714286em;
643
+ padding-bottom: 0.5714286em;
644
+ padding-inline-start: 0.5714286em;
645
+ }
646
+ :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
647
+ padding-inline-start: 0;
648
+ }
649
+ :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
650
+ padding-inline-end: 0;
651
+ }
652
+ :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
653
+ margin-top: 2em;
654
+ margin-bottom: 2em;
655
+ }
656
+ :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
657
+ margin-top: 0;
658
+ }
659
+ :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
660
+ margin-bottom: 0;
661
+ }
662
+ }
663
+ .-mt-\[0px\] {
664
+ margin-top: calc(0px * -1);
665
+ }
666
+ .mt-\[4px\] {
667
+ margin-top: 4px;
668
+ }
669
+ .mr-2 {
670
+ margin-right: calc(var(--spacing) * 2);
671
+ }
672
+ .mr-\[10px\] {
673
+ margin-right: 10px;
674
+ }
675
+ .-ml-\[5px\] {
676
+ margin-left: calc(5px * -1);
677
+ }
678
+ .ml-1 {
679
+ margin-left: calc(var(--spacing) * 1);
680
+ }
681
+ .ml-2 {
682
+ margin-left: calc(var(--spacing) * 2);
683
+ }
684
+ .ml-auto {
685
+ margin-left: auto;
686
+ }
687
+ .block {
688
+ display: block;
689
+ }
690
+ .flex {
691
+ display: flex;
692
+ }
693
+ .hidden {
694
+ display: none;
695
+ }
696
+ .inline {
697
+ display: inline;
698
+ }
699
+ .inline-block {
700
+ display: inline-block;
701
+ }
702
+ .inline-flex {
703
+ display: inline-flex;
704
+ }
705
+ .h-4 {
706
+ height: calc(var(--spacing) * 4);
707
+ }
708
+ .h-6 {
709
+ height: calc(var(--spacing) * 6);
710
+ }
711
+ .h-8 {
712
+ height: calc(var(--spacing) * 8);
713
+ }
714
+ .h-9 {
715
+ height: calc(var(--spacing) * 9);
716
+ }
717
+ .h-10 {
718
+ height: calc(var(--spacing) * 10);
719
+ }
720
+ .h-11 {
721
+ height: calc(var(--spacing) * 11);
722
+ }
723
+ .h-24 {
724
+ height: calc(var(--spacing) * 24);
725
+ }
726
+ .h-\[11px\] {
727
+ height: 11px;
728
+ }
729
+ .h-\[60px\] {
730
+ height: 60px;
731
+ }
732
+ .h-full {
733
+ height: 100%;
734
+ }
735
+ .h-px {
736
+ height: 1px;
737
+ }
738
+ .max-h-full {
739
+ max-height: 100%;
740
+ }
741
+ .min-h-0 {
742
+ min-height: calc(var(--spacing) * 0);
743
+ }
744
+ .w-4 {
745
+ width: calc(var(--spacing) * 4);
746
+ }
747
+ .w-6 {
748
+ width: calc(var(--spacing) * 6);
749
+ }
750
+ .w-8 {
751
+ width: calc(var(--spacing) * 8);
752
+ }
753
+ .w-9 {
754
+ width: calc(var(--spacing) * 9);
755
+ }
756
+ .w-10 {
757
+ width: calc(var(--spacing) * 10);
758
+ }
759
+ .w-\[11px\] {
760
+ width: 11px;
761
+ }
762
+ .w-full {
763
+ width: 100%;
764
+ }
765
+ .max-w-3xl {
766
+ max-width: var(--container-3xl);
767
+ }
768
+ .max-w-\[80\%\] {
769
+ max-width: 80%;
770
+ }
771
+ .max-w-full {
772
+ max-width: 100%;
773
+ }
774
+ .min-w-\[200px\] {
775
+ min-width: 200px;
776
+ }
777
+ .shrink-0 {
778
+ flex-shrink: 0;
779
+ }
780
+ .transform {
781
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
782
+ }
783
+ .animate-pulse-cursor {
784
+ animation: var(--animate-pulse-cursor);
785
+ }
786
+ .cursor-pointer {
787
+ cursor: pointer;
788
+ }
789
+ .cursor-text {
790
+ cursor: text;
791
+ }
792
+ .resize {
793
+ resize: both;
794
+ }
795
+ .resize-none {
796
+ resize: none;
797
+ }
798
+ .flex-col {
799
+ flex-direction: column;
800
+ }
801
+ .items-center {
802
+ align-items: center;
803
+ }
804
+ .items-end {
805
+ align-items: flex-end;
806
+ }
807
+ .justify-between {
808
+ justify-content: space-between;
809
+ }
810
+ .justify-center {
811
+ justify-content: center;
812
+ }
813
+ .justify-end {
814
+ justify-content: flex-end;
815
+ }
816
+ .gap-1 {
817
+ gap: calc(var(--spacing) * 1);
818
+ }
819
+ .gap-2 {
820
+ gap: calc(var(--spacing) * 2);
821
+ }
822
+ .overflow-visible {
823
+ overflow: visible;
824
+ }
825
+ .overflow-x-hidden {
826
+ overflow-x: hidden;
827
+ }
828
+ .overflow-y-scroll {
829
+ overflow-y: scroll;
830
+ }
831
+ .rounded {
832
+ border-radius: 0.25rem;
833
+ }
834
+ .rounded-\[18px\] {
835
+ border-radius: 18px;
836
+ }
837
+ .rounded-\[28px\] {
838
+ border-radius: 28px;
839
+ }
840
+ .rounded-full {
841
+ border-radius: calc(infinity * 1px);
842
+ }
843
+ .rounded-lg {
844
+ border-radius: var(--radius);
845
+ }
846
+ .rounded-md {
847
+ border-radius: calc(var(--radius) - 2px);
848
+ }
849
+ .border {
850
+ border-style: var(--tw-border-style);
851
+ border-width: 1px;
852
+ }
853
+ .border-none {
854
+ --tw-border-style: none;
855
+ border-style: none;
856
+ }
857
+ .border-gray-200 {
858
+ border-color: var(--color-gray-200);
859
+ }
860
+ .bg-black {
861
+ background-color: var(--color-black);
862
+ }
863
+ .bg-foreground {
864
+ background-color: var(--foreground);
865
+ }
866
+ .bg-gray-200 {
867
+ background-color: var(--color-gray-200);
868
+ }
869
+ .bg-muted {
870
+ background-color: var(--muted);
871
+ }
872
+ .bg-transparent {
873
+ background-color: transparent;
874
+ }
875
+ .bg-white {
876
+ background-color: var(--color-white);
877
+ }
878
+ .bg-gradient-to-t {
879
+ --tw-gradient-position: to top in oklab;
880
+ background-image: linear-gradient(var(--tw-gradient-stops));
881
+ }
882
+ .from-white {
883
+ --tw-gradient-from: var(--color-white);
884
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
885
+ }
886
+ .via-white {
887
+ --tw-gradient-via: var(--color-white);
888
+ --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
889
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
890
+ }
891
+ .to-transparent {
892
+ --tw-gradient-to: transparent;
893
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
894
+ }
895
+ .bg-clip-padding {
896
+ background-clip: padding-box;
897
+ }
898
+ .p-0 {
899
+ padding: calc(var(--spacing) * 0);
900
+ }
901
+ .p-1 {
902
+ padding: calc(var(--spacing) * 1);
903
+ }
904
+ .p-5 {
905
+ padding: calc(var(--spacing) * 5);
906
+ }
907
+ .px-0 {
908
+ padding-inline: calc(var(--spacing) * 0);
909
+ }
910
+ .px-3 {
911
+ padding-inline: calc(var(--spacing) * 3);
912
+ }
913
+ .px-4 {
914
+ padding-inline: calc(var(--spacing) * 4);
915
+ }
916
+ .px-5 {
917
+ padding-inline: calc(var(--spacing) * 5);
918
+ }
919
+ .py-0 {
920
+ padding-block: calc(var(--spacing) * 0);
921
+ }
922
+ .py-1\.5 {
923
+ padding-block: calc(var(--spacing) * 1.5);
924
+ }
925
+ .py-2 {
926
+ padding-block: calc(var(--spacing) * 2);
927
+ }
928
+ .py-3 {
929
+ padding-block: calc(var(--spacing) * 3);
930
+ }
931
+ .pt-10 {
932
+ padding-top: calc(var(--spacing) * 10);
933
+ }
934
+ .pb-0 {
935
+ padding-bottom: calc(var(--spacing) * 0);
936
+ }
937
+ .text-center {
938
+ text-align: center;
939
+ }
940
+ .text-left {
941
+ text-align: left;
942
+ }
943
+ .text-sm {
944
+ font-size: var(--text-sm);
945
+ line-height: var(--tw-leading, var(--text-sm--line-height));
946
+ }
947
+ .text-xs {
948
+ font-size: var(--text-xs);
949
+ line-height: var(--tw-leading, var(--text-xs--line-height));
950
+ }
951
+ .text-\[16px\] {
952
+ font-size: 16px;
953
+ }
954
+ .leading-relaxed {
955
+ --tw-leading: var(--leading-relaxed);
956
+ line-height: var(--leading-relaxed);
957
+ }
958
+ .font-medium {
959
+ --tw-font-weight: var(--font-weight-medium);
960
+ font-weight: var(--font-weight-medium);
961
+ }
962
+ .font-normal {
963
+ --tw-font-weight: var(--font-weight-normal);
964
+ font-weight: var(--font-weight-normal);
965
+ }
966
+ .break-words {
967
+ overflow-wrap: break-word;
968
+ }
969
+ .whitespace-nowrap {
970
+ white-space: nowrap;
971
+ }
972
+ .whitespace-pre-wrap {
973
+ white-space: pre-wrap;
974
+ }
975
+ .text-\[\#444444\] {
976
+ color: #444444;
977
+ }
978
+ .text-\[rgb\(93\,93\,93\)\] {
979
+ color: rgb(93,93,93);
980
+ }
981
+ .text-foreground {
982
+ color: var(--foreground);
983
+ }
984
+ .text-gray-600 {
985
+ color: var(--color-gray-600);
986
+ }
987
+ .text-muted-foreground {
988
+ color: var(--muted-foreground);
989
+ }
990
+ .text-white {
991
+ color: var(--color-white);
992
+ }
993
+ .antialiased {
994
+ -webkit-font-smoothing: antialiased;
995
+ -moz-osx-font-smoothing: grayscale;
996
+ }
997
+ .shadow {
998
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
999
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1000
+ }
1001
+ .shadow-\[0_4px_4px_0_\#0000000a\,0_0_1px_0_\#0000009e\] {
1002
+ --tw-shadow: 0 4px 4px 0 var(--tw-shadow-color, #0000000a), 0 0 1px 0 var(--tw-shadow-color, #0000009e);
1003
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1004
+ }
1005
+ .shadow-lg {
1006
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1007
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1008
+ }
1009
+ .transition {
1010
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
1011
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1012
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1013
+ }
1014
+ .transition-all {
1015
+ transition-property: all;
1016
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1017
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1018
+ }
1019
+ .transition-colors {
1020
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
1021
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1022
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1023
+ }
1024
+ .contain-inline-size {
1025
+ --tw-contain-size: inline-size;
1026
+ contain: var(--tw-contain-size,) var(--tw-contain-layout,) var(--tw-contain-paint,) var(--tw-contain-style,);
1027
+ }
1028
+ .outline-none {
1029
+ --tw-outline-style: none;
1030
+ outline-style: none;
1031
+ }
1032
+ .running {
1033
+ animation-play-state: running;
1034
+ }
1035
+ .group-hover\:visible {
1036
+ &:is(:where(.group):hover *) {
1037
+ @media (hover: hover) {
1038
+ visibility: visible;
1039
+ }
1040
+ }
1041
+ }
1042
+ .placeholder\:text-\[\#00000077\] {
1043
+ &::placeholder {
1044
+ color: #00000077;
1045
+ }
1046
+ }
1047
+ .hover\:bg-\[\#E8E8E8\] {
1048
+ &:hover {
1049
+ @media (hover: hover) {
1050
+ background-color: #E8E8E8;
1051
+ }
1052
+ }
1053
+ }
1054
+ .hover\:bg-\[\#f8f8f8\] {
1055
+ &:hover {
1056
+ @media (hover: hover) {
1057
+ background-color: #f8f8f8;
1058
+ }
1059
+ }
1060
+ }
1061
+ .hover\:bg-gray-50 {
1062
+ &:hover {
1063
+ @media (hover: hover) {
1064
+ background-color: var(--color-gray-50);
1065
+ }
1066
+ }
1067
+ }
1068
+ .hover\:bg-gray-100 {
1069
+ &:hover {
1070
+ @media (hover: hover) {
1071
+ background-color: var(--color-gray-100);
1072
+ }
1073
+ }
1074
+ }
1075
+ .hover\:text-\[\#333333\] {
1076
+ &:hover {
1077
+ @media (hover: hover) {
1078
+ color: #333333;
1079
+ }
1080
+ }
1081
+ }
1082
+ .hover\:text-\[rgb\(93\,93\,93\)\] {
1083
+ &:hover {
1084
+ @media (hover: hover) {
1085
+ color: rgb(93,93,93);
1086
+ }
1087
+ }
1088
+ }
1089
+ .hover\:opacity-70 {
1090
+ &:hover {
1091
+ @media (hover: hover) {
1092
+ opacity: 70%;
1093
+ }
1094
+ }
1095
+ }
1096
+ .focus\:ring-2 {
1097
+ &:focus {
1098
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1099
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1100
+ }
1101
+ }
1102
+ .focus\:ring-offset-2 {
1103
+ &:focus {
1104
+ --tw-ring-offset-width: 2px;
1105
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1106
+ }
1107
+ }
1108
+ .focus\:outline-none {
1109
+ &:focus {
1110
+ --tw-outline-style: none;
1111
+ outline-style: none;
1112
+ }
1113
+ }
1114
+ .focus-visible\:border-ring {
1115
+ &:focus-visible {
1116
+ border-color: var(--ring);
1117
+ }
1118
+ }
1119
+ .focus-visible\:ring-2 {
1120
+ &:focus-visible {
1121
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1122
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1123
+ }
1124
+ }
1125
+ .focus-visible\:ring-\[3px\] {
1126
+ &:focus-visible {
1127
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1128
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1129
+ }
1130
+ }
1131
+ .focus-visible\:ring-ring\/50 {
1132
+ &:focus-visible {
1133
+ --tw-ring-color: var(--ring);
1134
+ @supports (color: color-mix(in lab, red, red)) {
1135
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
1136
+ }
1137
+ }
1138
+ }
1139
+ .focus-visible\:ring-offset-2 {
1140
+ &:focus-visible {
1141
+ --tw-ring-offset-width: 2px;
1142
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1143
+ }
1144
+ }
1145
+ .disabled\:pointer-events-none {
1146
+ &:disabled {
1147
+ pointer-events: none;
1148
+ }
1149
+ }
1150
+ .disabled\:cursor-not-allowed {
1151
+ &:disabled {
1152
+ cursor: not-allowed;
1153
+ }
1154
+ }
1155
+ .disabled\:bg-\[\#00000014\] {
1156
+ &:disabled {
1157
+ background-color: #00000014;
1158
+ }
1159
+ }
1160
+ .disabled\:text-\[rgb\(13\,13\,13\)\] {
1161
+ &:disabled {
1162
+ color: rgb(13,13,13);
1163
+ }
1164
+ }
1165
+ .disabled\:opacity-50 {
1166
+ &:disabled {
1167
+ opacity: 50%;
1168
+ }
1169
+ }
1170
+ .disabled\:hover\:bg-transparent {
1171
+ &:disabled {
1172
+ &:hover {
1173
+ @media (hover: hover) {
1174
+ background-color: transparent;
1175
+ }
1176
+ }
1177
+ }
1178
+ }
1179
+ .disabled\:hover\:text-\[\#444444\] {
1180
+ &:disabled {
1181
+ &:hover {
1182
+ @media (hover: hover) {
1183
+ color: #444444;
1184
+ }
1185
+ }
1186
+ }
1187
+ }
1188
+ .disabled\:hover\:opacity-100 {
1189
+ &:disabled {
1190
+ &:hover {
1191
+ @media (hover: hover) {
1192
+ opacity: 100%;
1193
+ }
1194
+ }
1195
+ }
1196
+ }
1197
+ .data-\[multiline\]\:py-3 {
1198
+ &[data-multiline] {
1199
+ padding-block: calc(var(--spacing) * 3);
1200
+ }
1201
+ }
1202
+ .sm\:px-0 {
1203
+ @media (width >= 40rem) {
1204
+ padding-inline: calc(var(--spacing) * 0);
1205
+ }
1206
+ }
1207
+ .dark\:border-\[\#404040\] {
1208
+ &:is(.dark *) {
1209
+ border-color: #404040;
1210
+ }
1211
+ }
1212
+ .dark\:border-gray-700 {
1213
+ &:is(.dark *) {
1214
+ border-color: var(--color-gray-700);
1215
+ }
1216
+ }
1217
+ .dark\:bg-\[\#1F1F1F\] {
1218
+ &:is(.dark *) {
1219
+ background-color: #1F1F1F;
1220
+ }
1221
+ }
1222
+ .dark\:bg-\[\#303030\] {
1223
+ &:is(.dark *) {
1224
+ background-color: #303030;
1225
+ }
1226
+ }
1227
+ .dark\:bg-gray-700 {
1228
+ &:is(.dark *) {
1229
+ background-color: var(--color-gray-700);
1230
+ }
1231
+ }
1232
+ .dark\:bg-gray-900 {
1233
+ &:is(.dark *) {
1234
+ background-color: var(--color-gray-900);
1235
+ }
1236
+ }
1237
+ .dark\:bg-white {
1238
+ &:is(.dark *) {
1239
+ background-color: var(--color-white);
1240
+ }
1241
+ }
1242
+ .dark\:from-\[rgb\(33\,33\,33\)\] {
1243
+ &:is(.dark *) {
1244
+ --tw-gradient-from: rgb(33,33,33);
1245
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1246
+ }
1247
+ }
1248
+ .dark\:via-\[rgb\(33\,33\,33\)\] {
1249
+ &:is(.dark *) {
1250
+ --tw-gradient-via: rgb(33,33,33);
1251
+ --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
1252
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
1253
+ }
1254
+ }
1255
+ .dark\:text-\[rgb\(243\,243\,243\)\] {
1256
+ &:is(.dark *) {
1257
+ color: rgb(243,243,243);
1258
+ }
1259
+ }
1260
+ .dark\:text-black {
1261
+ &:is(.dark *) {
1262
+ color: var(--color-black);
1263
+ }
1264
+ }
1265
+ .dark\:text-white {
1266
+ &:is(.dark *) {
1267
+ color: var(--color-white);
1268
+ }
1269
+ }
1270
+ .dark\:prose-invert {
1271
+ &:is(.dark *) {
1272
+ --tw-prose-body: var(--tw-prose-invert-body);
1273
+ --tw-prose-headings: var(--tw-prose-invert-headings);
1274
+ --tw-prose-lead: var(--tw-prose-invert-lead);
1275
+ --tw-prose-links: var(--tw-prose-invert-links);
1276
+ --tw-prose-bold: var(--tw-prose-invert-bold);
1277
+ --tw-prose-counters: var(--tw-prose-invert-counters);
1278
+ --tw-prose-bullets: var(--tw-prose-invert-bullets);
1279
+ --tw-prose-hr: var(--tw-prose-invert-hr);
1280
+ --tw-prose-quotes: var(--tw-prose-invert-quotes);
1281
+ --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
1282
+ --tw-prose-captions: var(--tw-prose-invert-captions);
1283
+ --tw-prose-kbd: var(--tw-prose-invert-kbd);
1284
+ --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);
1285
+ --tw-prose-code: var(--tw-prose-invert-code);
1286
+ --tw-prose-pre-code: var(--tw-prose-invert-pre-code);
1287
+ --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
1288
+ --tw-prose-th-borders: var(--tw-prose-invert-th-borders);
1289
+ --tw-prose-td-borders: var(--tw-prose-invert-td-borders);
1290
+ }
1291
+ }
1292
+ .dark\:placeholder\:text-\[\#fffc\] {
1293
+ &:is(.dark *) {
1294
+ &::placeholder {
1295
+ color: #fffc;
1296
+ }
1297
+ }
1298
+ }
1299
+ .dark\:hover\:bg-\[\#303030\] {
1300
+ &:is(.dark *) {
1301
+ &:hover {
1302
+ @media (hover: hover) {
1303
+ background-color: #303030;
1304
+ }
1305
+ }
1306
+ }
1307
+ }
1308
+ .dark\:hover\:bg-\[\#404040\] {
1309
+ &:is(.dark *) {
1310
+ &:hover {
1311
+ @media (hover: hover) {
1312
+ background-color: #404040;
1313
+ }
1314
+ }
1315
+ }
1316
+ }
1317
+ .dark\:hover\:bg-gray-800 {
1318
+ &:is(.dark *) {
1319
+ &:hover {
1320
+ @media (hover: hover) {
1321
+ background-color: var(--color-gray-800);
1322
+ }
1323
+ }
1324
+ }
1325
+ }
1326
+ .dark\:hover\:text-\[\#FFFFFF\] {
1327
+ &:is(.dark *) {
1328
+ &:hover {
1329
+ @media (hover: hover) {
1330
+ color: #FFFFFF;
1331
+ }
1332
+ }
1333
+ }
1334
+ }
1335
+ .dark\:hover\:text-\[rgb\(243\,243\,243\)\] {
1336
+ &:is(.dark *) {
1337
+ &:hover {
1338
+ @media (hover: hover) {
1339
+ color: rgb(243,243,243);
1340
+ }
1341
+ }
1342
+ }
1343
+ }
1344
+ .dark\:focus-visible\:outline-white {
1345
+ &:is(.dark *) {
1346
+ &:focus-visible {
1347
+ outline-color: var(--color-white);
1348
+ }
1349
+ }
1350
+ }
1351
+ .dark\:disabled\:bg-\[\#454545\] {
1352
+ &:is(.dark *) {
1353
+ &:disabled {
1354
+ background-color: #454545;
1355
+ }
1356
+ }
1357
+ }
1358
+ .dark\:disabled\:text-white {
1359
+ &:is(.dark *) {
1360
+ &:disabled {
1361
+ color: var(--color-white);
1362
+ }
1363
+ }
1364
+ }
1365
+ .dark\:disabled\:hover\:bg-transparent {
1366
+ &:is(.dark *) {
1367
+ &:disabled {
1368
+ &:hover {
1369
+ @media (hover: hover) {
1370
+ background-color: transparent;
1371
+ }
1372
+ }
1373
+ }
1374
+ }
1375
+ }
1376
+ .dark\:disabled\:hover\:text-\[\#CCCCCC\] {
1377
+ &:is(.dark *) {
1378
+ &:disabled {
1379
+ &:hover {
1380
+ @media (hover: hover) {
1381
+ color: #CCCCCC;
1382
+ }
1383
+ }
1384
+ }
1385
+ }
1386
+ }
1387
+ .\[\&_svg\]\:pointer-events-none {
1388
+ & svg {
1389
+ pointer-events: none;
1390
+ }
1391
+ }
1392
+ .\[\&_svg\]\:shrink-0 {
1393
+ & svg {
1394
+ flex-shrink: 0;
1395
+ }
1396
+ }
1397
+ }
1398
+ @property --tw-animation-delay {
1399
+ syntax: "*";
1400
+ inherits: false;
1401
+ initial-value: 0s;
1402
+ }
1403
+ @property --tw-animation-direction {
1404
+ syntax: "*";
1405
+ inherits: false;
1406
+ initial-value: normal;
1407
+ }
1408
+ @property --tw-animation-duration {
1409
+ syntax: "*";
1410
+ inherits: false;
1411
+ }
1412
+ @property --tw-animation-fill-mode {
1413
+ syntax: "*";
1414
+ inherits: false;
1415
+ initial-value: none;
1416
+ }
1417
+ @property --tw-animation-iteration-count {
1418
+ syntax: "*";
1419
+ inherits: false;
1420
+ initial-value: 1;
1421
+ }
1422
+ @property --tw-enter-blur {
1423
+ syntax: "*";
1424
+ inherits: false;
1425
+ initial-value: 0;
1426
+ }
1427
+ @property --tw-enter-opacity {
1428
+ syntax: "*";
1429
+ inherits: false;
1430
+ initial-value: 1;
1431
+ }
1432
+ @property --tw-enter-rotate {
1433
+ syntax: "*";
1434
+ inherits: false;
1435
+ initial-value: 0;
1436
+ }
1437
+ @property --tw-enter-scale {
1438
+ syntax: "*";
1439
+ inherits: false;
1440
+ initial-value: 1;
1441
+ }
1442
+ @property --tw-enter-translate-x {
1443
+ syntax: "*";
1444
+ inherits: false;
1445
+ initial-value: 0;
1446
+ }
1447
+ @property --tw-enter-translate-y {
1448
+ syntax: "*";
1449
+ inherits: false;
1450
+ initial-value: 0;
1451
+ }
1452
+ @property --tw-exit-blur {
1453
+ syntax: "*";
1454
+ inherits: false;
1455
+ initial-value: 0;
1456
+ }
1457
+ @property --tw-exit-opacity {
1458
+ syntax: "*";
1459
+ inherits: false;
1460
+ initial-value: 1;
1461
+ }
1462
+ @property --tw-exit-rotate {
1463
+ syntax: "*";
1464
+ inherits: false;
1465
+ initial-value: 0;
1466
+ }
1467
+ @property --tw-exit-scale {
1468
+ syntax: "*";
1469
+ inherits: false;
1470
+ initial-value: 1;
1471
+ }
1472
+ @property --tw-exit-translate-x {
1473
+ syntax: "*";
1474
+ inherits: false;
1475
+ initial-value: 0;
1476
+ }
1477
+ @property --tw-exit-translate-y {
1478
+ syntax: "*";
1479
+ inherits: false;
1480
+ initial-value: 0;
1481
+ }
1482
+ :root {
1483
+ --background: oklch(1 0 0);
1484
+ --foreground: oklch(0.145 0 0);
1485
+ --card: oklch(1 0 0);
1486
+ --card-foreground: oklch(0.145 0 0);
1487
+ --popover: oklch(1 0 0);
1488
+ --popover-foreground: oklch(0.145 0 0);
1489
+ --primary: oklch(0.205 0 0);
1490
+ --primary-foreground: oklch(0.985 0 0);
1491
+ --secondary: oklch(0.97 0 0);
1492
+ --secondary-foreground: oklch(0.205 0 0);
1493
+ --muted: oklch(0.97 0 0);
1494
+ --muted-foreground: oklch(0.556 0 0);
1495
+ --accent: oklch(0.97 0 0);
1496
+ --accent-foreground: oklch(0.205 0 0);
1497
+ --destructive: oklch(0.577 0.245 27.325);
1498
+ --destructive-foreground: oklch(0.577 0.245 27.325);
1499
+ --border: oklch(0.922 0 0);
1500
+ --input: oklch(0.922 0 0);
1501
+ --ring: oklch(0.708 0 0);
1502
+ --chart-1: oklch(0.646 0.222 41.116);
1503
+ --chart-2: oklch(0.6 0.118 184.704);
1504
+ --chart-3: oklch(0.398 0.07 227.392);
1505
+ --chart-4: oklch(0.828 0.189 84.429);
1506
+ --chart-5: oklch(0.769 0.188 70.08);
1507
+ --radius: 0.625rem;
1508
+ --sidebar: oklch(0.985 0 0);
1509
+ --sidebar-foreground: oklch(0.145 0 0);
1510
+ --sidebar-primary: oklch(0.205 0 0);
1511
+ --sidebar-primary-foreground: oklch(0.985 0 0);
1512
+ --sidebar-accent: oklch(0.97 0 0);
1513
+ --sidebar-accent-foreground: oklch(0.205 0 0);
1514
+ --sidebar-border: oklch(0.922 0 0);
1515
+ --sidebar-ring: oklch(0.708 0 0);
1516
+ }
1517
+ .dark {
1518
+ --background: oklch(0.145 0 0);
1519
+ --foreground: oklch(0.985 0 0);
1520
+ --card: oklch(0.145 0 0);
1521
+ --card-foreground: oklch(0.985 0 0);
1522
+ --popover: oklch(0.145 0 0);
1523
+ --popover-foreground: oklch(0.985 0 0);
1524
+ --primary: oklch(0.985 0 0);
1525
+ --primary-foreground: oklch(0.205 0 0);
1526
+ --secondary: oklch(0.269 0 0);
1527
+ --secondary-foreground: oklch(0.985 0 0);
1528
+ --muted: oklch(0.269 0 0);
1529
+ --muted-foreground: oklch(0.708 0 0);
1530
+ --accent: oklch(0.269 0 0);
1531
+ --accent-foreground: oklch(0.985 0 0);
1532
+ --destructive: oklch(0.396 0.141 25.723);
1533
+ --destructive-foreground: oklch(0.637 0.237 25.331);
1534
+ --border: oklch(0.269 0 0);
1535
+ --input: oklch(0.269 0 0);
1536
+ --ring: oklch(0.556 0 0);
1537
+ --chart-1: oklch(0.488 0.243 264.376);
1538
+ --chart-2: oklch(0.696 0.17 162.48);
1539
+ --chart-3: oklch(0.769 0.188 70.08);
1540
+ --chart-4: oklch(0.627 0.265 303.9);
1541
+ --chart-5: oklch(0.645 0.246 16.439);
1542
+ --sidebar: oklch(0.205 0 0);
1543
+ --sidebar-foreground: oklch(0.985 0 0);
1544
+ --sidebar-primary: oklch(0.488 0.243 264.376);
1545
+ --sidebar-primary-foreground: oklch(0.985 0 0);
1546
+ --sidebar-accent: oklch(0.269 0 0);
1547
+ --sidebar-accent-foreground: oklch(0.985 0 0);
1548
+ --sidebar-border: oklch(0.269 0 0);
1549
+ --sidebar-ring: oklch(0.439 0 0);
1550
+ }
1551
+ @layer base {
1552
+ * {
1553
+ border-color: var(--border);
1554
+ outline-color: var(--ring);
1555
+ @supports (color: color-mix(in lab, red, red)) {
1556
+ outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
1557
+ }
1558
+ }
1559
+ body {
1560
+ background-color: var(--background);
1561
+ color: var(--foreground);
1562
+ }
1563
+ }
1564
+ .prose {
1565
+ -webkit-font-smoothing: antialiased;
1566
+ -moz-osx-font-smoothing: grayscale;
1567
+ }
1568
+ .prose :where(code):not( :where([class~="not-prose"], [class~="not-prose"] *) )::before {
1569
+ content: none;
1570
+ }
1571
+ .prose :where(code):not( :where([class~="not-prose"], [class~="not-prose"] *) )::after {
1572
+ content: none;
1573
+ }
1574
+ .prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1575
+ font-weight: 400;
1576
+ }
1577
+ .prose h1 {
1578
+ margin-block-end: 8px;
1579
+ margin-bottom: 8px;
1580
+ font-size: 24px;
1581
+ font-weight: 600;
1582
+ }
1583
+ .prose h2 {
1584
+ margin-block-end: 4px;
1585
+ margin-block-start: 16px;
1586
+ margin-top: 16px;
1587
+ margin-bottom: 4px;
1588
+ font-size: 20px;
1589
+ font-weight: 600;
1590
+ }
1591
+ .prose h3 {
1592
+ margin-block-end: 4px;
1593
+ margin-block-start: 16px;
1594
+ margin-top: 16px;
1595
+ margin-bottom: 4px;
1596
+ font-size: 18px;
1597
+ font-weight: 600;
1598
+ }
1599
+ .prose p {
1600
+ margin-block-start: 8px;
1601
+ margin-block-end: 4px;
1602
+ margin-top: 4px;
1603
+ margin-bottom: 8px;
1604
+ }
1605
+ .prose a {
1606
+ color: #2964aa;
1607
+ text-decoration: none;
1608
+ }
1609
+ .prose a:hover {
1610
+ color: #749ac8;
1611
+ }
1612
+ .prose :where(blockquote p:first-of-type):not( :where([class~="not-prose"], [class~="not-prose"] *) )::before {
1613
+ content: none;
1614
+ }
1615
+ .prose blockquote {
1616
+ font-style: normal;
1617
+ font-weight: 400;
1618
+ }
1619
+ .prose input[type="checkbox"] {
1620
+ appearance: none;
1621
+ background-color: #fff;
1622
+ background-origin: border-box;
1623
+ border-color: #9b9b9b;
1624
+ border-width: 1px;
1625
+ color: #004f99;
1626
+ display: inline-block;
1627
+ flex-shrink: 0;
1628
+ height: 1rem;
1629
+ padding: 0;
1630
+ -webkit-print-color-adjust: exact;
1631
+ print-color-adjust: exact;
1632
+ -webkit-user-select: none;
1633
+ user-select: none;
1634
+ vertical-align: middle;
1635
+ width: 1rem;
1636
+ border-radius: 2px;
1637
+ }
1638
+ .prose input[type="checkbox"]:checked {
1639
+ background-color: #004f99;
1640
+ border-color: #004f99;
1641
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
1642
+ background-position: center;
1643
+ background-repeat: no-repeat;
1644
+ background-size: 100% 100%;
1645
+ }
1646
+ .prose em {
1647
+ color: var(--foreground);
1648
+ }
1649
+ .prose hr {
1650
+ margin-block-start: 0px;
1651
+ margin-block-end: 0px;
1652
+ margin-top: 28px;
1653
+ margin-bottom: 28px;
1654
+ color: rgb(13, 13, 13);
1655
+ }
1656
+ .prose td {
1657
+ color: var(--foreground);
1658
+ }
1659
+ @property --tw-rotate-x {
1660
+ syntax: "*";
1661
+ inherits: false;
1662
+ }
1663
+ @property --tw-rotate-y {
1664
+ syntax: "*";
1665
+ inherits: false;
1666
+ }
1667
+ @property --tw-rotate-z {
1668
+ syntax: "*";
1669
+ inherits: false;
1670
+ }
1671
+ @property --tw-skew-x {
1672
+ syntax: "*";
1673
+ inherits: false;
1674
+ }
1675
+ @property --tw-skew-y {
1676
+ syntax: "*";
1677
+ inherits: false;
1678
+ }
1679
+ @property --tw-border-style {
1680
+ syntax: "*";
1681
+ inherits: false;
1682
+ initial-value: solid;
1683
+ }
1684
+ @property --tw-gradient-position {
1685
+ syntax: "*";
1686
+ inherits: false;
1687
+ }
1688
+ @property --tw-gradient-from {
1689
+ syntax: "<color>";
1690
+ inherits: false;
1691
+ initial-value: #0000;
1692
+ }
1693
+ @property --tw-gradient-via {
1694
+ syntax: "<color>";
1695
+ inherits: false;
1696
+ initial-value: #0000;
1697
+ }
1698
+ @property --tw-gradient-to {
1699
+ syntax: "<color>";
1700
+ inherits: false;
1701
+ initial-value: #0000;
1702
+ }
1703
+ @property --tw-gradient-stops {
1704
+ syntax: "*";
1705
+ inherits: false;
1706
+ }
1707
+ @property --tw-gradient-via-stops {
1708
+ syntax: "*";
1709
+ inherits: false;
1710
+ }
1711
+ @property --tw-gradient-from-position {
1712
+ syntax: "<length-percentage>";
1713
+ inherits: false;
1714
+ initial-value: 0%;
1715
+ }
1716
+ @property --tw-gradient-via-position {
1717
+ syntax: "<length-percentage>";
1718
+ inherits: false;
1719
+ initial-value: 50%;
1720
+ }
1721
+ @property --tw-gradient-to-position {
1722
+ syntax: "<length-percentage>";
1723
+ inherits: false;
1724
+ initial-value: 100%;
1725
+ }
1726
+ @property --tw-leading {
1727
+ syntax: "*";
1728
+ inherits: false;
1729
+ }
1730
+ @property --tw-font-weight {
1731
+ syntax: "*";
1732
+ inherits: false;
1733
+ }
1734
+ @property --tw-shadow {
1735
+ syntax: "*";
1736
+ inherits: false;
1737
+ initial-value: 0 0 #0000;
1738
+ }
1739
+ @property --tw-shadow-color {
1740
+ syntax: "*";
1741
+ inherits: false;
1742
+ }
1743
+ @property --tw-shadow-alpha {
1744
+ syntax: "<percentage>";
1745
+ inherits: false;
1746
+ initial-value: 100%;
1747
+ }
1748
+ @property --tw-inset-shadow {
1749
+ syntax: "*";
1750
+ inherits: false;
1751
+ initial-value: 0 0 #0000;
1752
+ }
1753
+ @property --tw-inset-shadow-color {
1754
+ syntax: "*";
1755
+ inherits: false;
1756
+ }
1757
+ @property --tw-inset-shadow-alpha {
1758
+ syntax: "<percentage>";
1759
+ inherits: false;
1760
+ initial-value: 100%;
1761
+ }
1762
+ @property --tw-ring-color {
1763
+ syntax: "*";
1764
+ inherits: false;
1765
+ }
1766
+ @property --tw-ring-shadow {
1767
+ syntax: "*";
1768
+ inherits: false;
1769
+ initial-value: 0 0 #0000;
1770
+ }
1771
+ @property --tw-inset-ring-color {
1772
+ syntax: "*";
1773
+ inherits: false;
1774
+ }
1775
+ @property --tw-inset-ring-shadow {
1776
+ syntax: "*";
1777
+ inherits: false;
1778
+ initial-value: 0 0 #0000;
1779
+ }
1780
+ @property --tw-ring-inset {
1781
+ syntax: "*";
1782
+ inherits: false;
1783
+ }
1784
+ @property --tw-ring-offset-width {
1785
+ syntax: "<length>";
1786
+ inherits: false;
1787
+ initial-value: 0px;
1788
+ }
1789
+ @property --tw-ring-offset-color {
1790
+ syntax: "*";
1791
+ inherits: false;
1792
+ initial-value: #fff;
1793
+ }
1794
+ @property --tw-ring-offset-shadow {
1795
+ syntax: "*";
1796
+ inherits: false;
1797
+ initial-value: 0 0 #0000;
1798
+ }
1799
+ @property --tw-contain-size {
1800
+ syntax: "*";
1801
+ inherits: false;
1802
+ }
1803
+ @property --tw-contain-layout {
1804
+ syntax: "*";
1805
+ inherits: false;
1806
+ }
1807
+ @property --tw-contain-paint {
1808
+ syntax: "*";
1809
+ inherits: false;
1810
+ }
1811
+ @property --tw-contain-style {
1812
+ syntax: "*";
1813
+ inherits: false;
1814
+ }
1815
+ @keyframes pulse-cursor {
1816
+ 0%, 100% {
1817
+ transform: scale(1);
1818
+ opacity: 1;
1819
+ }
1820
+ 50% {
1821
+ transform: scale(1.5);
1822
+ opacity: 0.8;
1823
+ }
1824
+ }
1825
+ @layer properties {
1826
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1827
+ *, ::before, ::after, ::backdrop {
1828
+ --tw-rotate-x: initial;
1829
+ --tw-rotate-y: initial;
1830
+ --tw-rotate-z: initial;
1831
+ --tw-skew-x: initial;
1832
+ --tw-skew-y: initial;
1833
+ --tw-border-style: solid;
1834
+ --tw-gradient-position: initial;
1835
+ --tw-gradient-from: #0000;
1836
+ --tw-gradient-via: #0000;
1837
+ --tw-gradient-to: #0000;
1838
+ --tw-gradient-stops: initial;
1839
+ --tw-gradient-via-stops: initial;
1840
+ --tw-gradient-from-position: 0%;
1841
+ --tw-gradient-via-position: 50%;
1842
+ --tw-gradient-to-position: 100%;
1843
+ --tw-leading: initial;
1844
+ --tw-font-weight: initial;
1845
+ --tw-shadow: 0 0 #0000;
1846
+ --tw-shadow-color: initial;
1847
+ --tw-shadow-alpha: 100%;
1848
+ --tw-inset-shadow: 0 0 #0000;
1849
+ --tw-inset-shadow-color: initial;
1850
+ --tw-inset-shadow-alpha: 100%;
1851
+ --tw-ring-color: initial;
1852
+ --tw-ring-shadow: 0 0 #0000;
1853
+ --tw-inset-ring-color: initial;
1854
+ --tw-inset-ring-shadow: 0 0 #0000;
1855
+ --tw-ring-inset: initial;
1856
+ --tw-ring-offset-width: 0px;
1857
+ --tw-ring-offset-color: #fff;
1858
+ --tw-ring-offset-shadow: 0 0 #0000;
1859
+ --tw-contain-size: initial;
1860
+ --tw-contain-layout: initial;
1861
+ --tw-contain-paint: initial;
1862
+ --tw-contain-style: initial;
1863
+ --tw-animation-delay: 0s;
1864
+ --tw-animation-direction: normal;
1865
+ --tw-animation-duration: initial;
1866
+ --tw-animation-fill-mode: none;
1867
+ --tw-animation-iteration-count: 1;
1868
+ --tw-enter-blur: 0;
1869
+ --tw-enter-opacity: 1;
1870
+ --tw-enter-rotate: 0;
1871
+ --tw-enter-scale: 1;
1872
+ --tw-enter-translate-x: 0;
1873
+ --tw-enter-translate-y: 0;
1874
+ --tw-exit-blur: 0;
1875
+ --tw-exit-opacity: 1;
1876
+ --tw-exit-rotate: 0;
1877
+ --tw-exit-scale: 1;
1878
+ --tw-exit-translate-x: 0;
1879
+ --tw-exit-translate-y: 0;
1880
+ }
1881
+ }
1882
+ }