@peak-ai/canvas 1.4.21 → 1.4.22

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 (213) hide show
  1. package/.babelrc +14 -0
  2. package/.eslintcache +1 -0
  3. package/.eslintignore +5 -0
  4. package/.eslintrc.js +29 -0
  5. package/{GrapesjsCanvas.js → dist/GrapesjsCanvas.js} +3 -2
  6. package/dist/GrapesjsCanvas.js.map +1 -0
  7. package/dist/package.json +62 -0
  8. package/{plugins → dist/plugins}/helpers/render-components.js +1 -1
  9. package/dist/plugins/helpers/render-components.js.map +1 -0
  10. package/dist/shadcn/components/ui/error-wrapper.js +2 -0
  11. package/dist/shadcn/components/ui/error-wrapper.js.map +1 -0
  12. package/package.json +45 -7
  13. package/scripts/build.ts +120 -0
  14. package/src/GrapesjsCanvas.tsx +494 -0
  15. package/src/constants/index.ts +25 -0
  16. package/src/declaration.d.ts +1 -0
  17. package/src/helpers/compiled-table.css +2429 -0
  18. package/src/helpers/css.ts +2667 -0
  19. package/src/helpers/date-picker.ts +807 -0
  20. package/src/helpers/filter-placeholder.ts +18 -0
  21. package/src/helpers/index.ts +13 -0
  22. package/src/helpers/merge-json.ts +106 -0
  23. package/src/index.styles.ts +58 -0
  24. package/src/index.ts +9 -0
  25. package/src/plugins/grapejs-plugin.tsx +196 -0
  26. package/src/plugins/helpers/custom-modal.tsx +123 -0
  27. package/src/plugins/helpers/data-table.tsx +300 -0
  28. package/src/plugins/helpers/extra.tsx +164 -0
  29. package/src/plugins/helpers/query-cache-context.tsx +154 -0
  30. package/src/plugins/helpers/query-cache-singleton.ts +176 -0
  31. package/src/plugins/helpers/query-cache-utils.ts +226 -0
  32. package/src/plugins/helpers/query-details-modal.tsx +400 -0
  33. package/src/plugins/helpers/query-heading-formatter.ts +24 -0
  34. package/src/plugins/helpers/query-loading-modal.tsx +94 -0
  35. package/src/plugins/helpers/render-components.tsx +1450 -0
  36. package/src/plugins/helpers/styled-info-button.tsx +504 -0
  37. package/src/public/canvas.css +42 -0
  38. package/src/public/components-css/table/table-output.css +2436 -0
  39. package/src/public/components-css/table/table.css +30 -0
  40. package/src/public/output.css +2465 -0
  41. package/src/public/table.css +135 -0
  42. package/src/shadcn/components/icons/AiAvatarIcon.tsx +47 -0
  43. package/src/shadcn/components/icons/Co_driver Expanding button copy.svg +21 -0
  44. package/src/shadcn/components/icons/ai-avatar.svg +7 -0
  45. package/src/shadcn/components/icons/thinking.gif +0 -0
  46. package/src/shadcn/components/ui/button.tsx +132 -0
  47. package/src/shadcn/components/ui/card.tsx +92 -0
  48. package/src/shadcn/components/ui/chart.tsx +324 -0
  49. package/src/shadcn/components/ui/checkbox.tsx +27 -0
  50. package/src/shadcn/components/ui/component-wrapper.tsx +61 -0
  51. package/src/shadcn/components/ui/date-filter.tsx +816 -0
  52. package/src/shadcn/components/ui/error-container.tsx +125 -0
  53. package/src/shadcn/components/ui/error-wrapper.tsx +99 -0
  54. package/src/shadcn/components/ui/filter.tsx +368 -0
  55. package/src/shadcn/components/ui/hover-card.tsx +36 -0
  56. package/src/shadcn/components/ui/input.tsx +20 -0
  57. package/src/shadcn/components/ui/label.tsx +24 -0
  58. package/src/shadcn/components/ui/pagination.tsx +213 -0
  59. package/src/shadcn/components/ui/scroll-area.tsx +59 -0
  60. package/src/shadcn/components/ui/search.tsx +150 -0
  61. package/src/shadcn/components/ui/separator.tsx +26 -0
  62. package/src/shadcn/components/ui/skeleton.tsx +69 -0
  63. package/src/shadcn/components/ui/table.tsx +196 -0
  64. package/src/shadcn/components/ui/tabs.tsx +55 -0
  65. package/src/shadcn/components/ui/textarea.tsx +18 -0
  66. package/src/shadcn/components/ui/tooltip.tsx +87 -0
  67. package/src/shadcn/utils.ts +6 -0
  68. package/src/types/grapesjs-tailwind.d.ts +61 -0
  69. package/src/types/images.d.ts +1 -0
  70. package/tailwind.config.js +5 -0
  71. package/tooling/tailwind-compiler/index.js +99 -0
  72. package/tooling/tailwind-compiler/package.json +11 -0
  73. package/tooling/tailwind-compiler/yarn.lock +123 -0
  74. package/tsconfig.build.json +15 -0
  75. package/tsconfig.json +8 -0
  76. package/GrapesjsCanvas.js.map +0 -1
  77. package/plugins/helpers/render-components.js.map +0 -1
  78. package/shadcn/components/ui/error-wrapper.js +0 -2
  79. package/shadcn/components/ui/error-wrapper.js.map +0 -1
  80. /package/{GrapesjsCanvas.d.ts → dist/GrapesjsCanvas.d.ts} +0 -0
  81. /package/{constants → dist/constants}/index.d.ts +0 -0
  82. /package/{constants → dist/constants}/index.js +0 -0
  83. /package/{constants → dist/constants}/index.js.map +0 -0
  84. /package/{declaration.d.js → dist/declaration.d.js} +0 -0
  85. /package/{declaration.d.js.map → dist/declaration.d.js.map} +0 -0
  86. /package/{helpers → dist/helpers}/compiled-table.css +0 -0
  87. /package/{helpers → dist/helpers}/css.d.ts +0 -0
  88. /package/{helpers → dist/helpers}/css.js +0 -0
  89. /package/{helpers → dist/helpers}/css.js.map +0 -0
  90. /package/{helpers → dist/helpers}/date-picker.d.ts +0 -0
  91. /package/{helpers → dist/helpers}/date-picker.js +0 -0
  92. /package/{helpers → dist/helpers}/date-picker.js.map +0 -0
  93. /package/{helpers → dist/helpers}/filter-placeholder.d.ts +0 -0
  94. /package/{helpers → dist/helpers}/filter-placeholder.js +0 -0
  95. /package/{helpers → dist/helpers}/filter-placeholder.js.map +0 -0
  96. /package/{helpers → dist/helpers}/index.d.ts +0 -0
  97. /package/{helpers → dist/helpers}/index.js +0 -0
  98. /package/{helpers → dist/helpers}/index.js.map +0 -0
  99. /package/{helpers → dist/helpers}/merge-json.d.ts +0 -0
  100. /package/{helpers → dist/helpers}/merge-json.js +0 -0
  101. /package/{helpers → dist/helpers}/merge-json.js.map +0 -0
  102. /package/{index.d.ts → dist/index.d.ts} +0 -0
  103. /package/{index.js → dist/index.js} +0 -0
  104. /package/{index.js.map → dist/index.js.map} +0 -0
  105. /package/{index.styles.d.ts → dist/index.styles.d.ts} +0 -0
  106. /package/{index.styles.js → dist/index.styles.js} +0 -0
  107. /package/{index.styles.js.map → dist/index.styles.js.map} +0 -0
  108. /package/{plugins → dist/plugins}/grapejs-plugin.d.ts +0 -0
  109. /package/{plugins → dist/plugins}/grapejs-plugin.js +0 -0
  110. /package/{plugins → dist/plugins}/grapejs-plugin.js.map +0 -0
  111. /package/{plugins → dist/plugins}/helpers/custom-modal.d.ts +0 -0
  112. /package/{plugins → dist/plugins}/helpers/custom-modal.js +0 -0
  113. /package/{plugins → dist/plugins}/helpers/custom-modal.js.map +0 -0
  114. /package/{plugins → dist/plugins}/helpers/data-table.d.ts +0 -0
  115. /package/{plugins → dist/plugins}/helpers/data-table.js +0 -0
  116. /package/{plugins → dist/plugins}/helpers/data-table.js.map +0 -0
  117. /package/{plugins → dist/plugins}/helpers/extra.d.ts +0 -0
  118. /package/{plugins → dist/plugins}/helpers/extra.js +0 -0
  119. /package/{plugins → dist/plugins}/helpers/extra.js.map +0 -0
  120. /package/{plugins → dist/plugins}/helpers/query-cache-context.d.ts +0 -0
  121. /package/{plugins → dist/plugins}/helpers/query-cache-context.js +0 -0
  122. /package/{plugins → dist/plugins}/helpers/query-cache-context.js.map +0 -0
  123. /package/{plugins → dist/plugins}/helpers/query-cache-singleton.d.ts +0 -0
  124. /package/{plugins → dist/plugins}/helpers/query-cache-singleton.js +0 -0
  125. /package/{plugins → dist/plugins}/helpers/query-cache-singleton.js.map +0 -0
  126. /package/{plugins → dist/plugins}/helpers/query-cache-utils.d.ts +0 -0
  127. /package/{plugins → dist/plugins}/helpers/query-cache-utils.js +0 -0
  128. /package/{plugins → dist/plugins}/helpers/query-cache-utils.js.map +0 -0
  129. /package/{plugins → dist/plugins}/helpers/query-details-modal.d.ts +0 -0
  130. /package/{plugins → dist/plugins}/helpers/query-details-modal.js +0 -0
  131. /package/{plugins → dist/plugins}/helpers/query-details-modal.js.map +0 -0
  132. /package/{plugins → dist/plugins}/helpers/query-heading-formatter.d.ts +0 -0
  133. /package/{plugins → dist/plugins}/helpers/query-heading-formatter.js +0 -0
  134. /package/{plugins → dist/plugins}/helpers/query-heading-formatter.js.map +0 -0
  135. /package/{plugins → dist/plugins}/helpers/query-loading-modal.d.ts +0 -0
  136. /package/{plugins → dist/plugins}/helpers/query-loading-modal.js +0 -0
  137. /package/{plugins → dist/plugins}/helpers/query-loading-modal.js.map +0 -0
  138. /package/{plugins → dist/plugins}/helpers/render-components.d.ts +0 -0
  139. /package/{plugins → dist/plugins}/helpers/styled-info-button.d.ts +0 -0
  140. /package/{plugins → dist/plugins}/helpers/styled-info-button.js +0 -0
  141. /package/{plugins → dist/plugins}/helpers/styled-info-button.js.map +0 -0
  142. /package/{shadcn → dist/shadcn}/components/icons/AiAvatarIcon.d.ts +0 -0
  143. /package/{shadcn → dist/shadcn}/components/icons/AiAvatarIcon.js +0 -0
  144. /package/{shadcn → dist/shadcn}/components/icons/AiAvatarIcon.js.map +0 -0
  145. /package/{shadcn → dist/shadcn}/components/icons/thinking.gif +0 -0
  146. /package/{shadcn → dist/shadcn}/components/ui/button.d.ts +0 -0
  147. /package/{shadcn → dist/shadcn}/components/ui/button.js +0 -0
  148. /package/{shadcn → dist/shadcn}/components/ui/button.js.map +0 -0
  149. /package/{shadcn → dist/shadcn}/components/ui/card.d.ts +0 -0
  150. /package/{shadcn → dist/shadcn}/components/ui/card.js +0 -0
  151. /package/{shadcn → dist/shadcn}/components/ui/card.js.map +0 -0
  152. /package/{shadcn → dist/shadcn}/components/ui/chart.d.ts +0 -0
  153. /package/{shadcn → dist/shadcn}/components/ui/chart.js +0 -0
  154. /package/{shadcn → dist/shadcn}/components/ui/chart.js.map +0 -0
  155. /package/{shadcn → dist/shadcn}/components/ui/checkbox.d.ts +0 -0
  156. /package/{shadcn → dist/shadcn}/components/ui/checkbox.js +0 -0
  157. /package/{shadcn → dist/shadcn}/components/ui/checkbox.js.map +0 -0
  158. /package/{shadcn → dist/shadcn}/components/ui/component-wrapper.d.ts +0 -0
  159. /package/{shadcn → dist/shadcn}/components/ui/component-wrapper.js +0 -0
  160. /package/{shadcn → dist/shadcn}/components/ui/component-wrapper.js.map +0 -0
  161. /package/{shadcn → dist/shadcn}/components/ui/date-filter.d.ts +0 -0
  162. /package/{shadcn → dist/shadcn}/components/ui/date-filter.js +0 -0
  163. /package/{shadcn → dist/shadcn}/components/ui/date-filter.js.map +0 -0
  164. /package/{shadcn → dist/shadcn}/components/ui/error-container.d.ts +0 -0
  165. /package/{shadcn → dist/shadcn}/components/ui/error-container.js +0 -0
  166. /package/{shadcn → dist/shadcn}/components/ui/error-container.js.map +0 -0
  167. /package/{shadcn → dist/shadcn}/components/ui/error-wrapper.d.ts +0 -0
  168. /package/{shadcn → dist/shadcn}/components/ui/filter.d.ts +0 -0
  169. /package/{shadcn → dist/shadcn}/components/ui/filter.js +0 -0
  170. /package/{shadcn → dist/shadcn}/components/ui/filter.js.map +0 -0
  171. /package/{shadcn → dist/shadcn}/components/ui/hover-card.d.ts +0 -0
  172. /package/{shadcn → dist/shadcn}/components/ui/hover-card.js +0 -0
  173. /package/{shadcn → dist/shadcn}/components/ui/hover-card.js.map +0 -0
  174. /package/{shadcn → dist/shadcn}/components/ui/input.d.ts +0 -0
  175. /package/{shadcn → dist/shadcn}/components/ui/input.js +0 -0
  176. /package/{shadcn → dist/shadcn}/components/ui/input.js.map +0 -0
  177. /package/{shadcn → dist/shadcn}/components/ui/label.d.ts +0 -0
  178. /package/{shadcn → dist/shadcn}/components/ui/label.js +0 -0
  179. /package/{shadcn → dist/shadcn}/components/ui/label.js.map +0 -0
  180. /package/{shadcn → dist/shadcn}/components/ui/pagination.d.ts +0 -0
  181. /package/{shadcn → dist/shadcn}/components/ui/pagination.js +0 -0
  182. /package/{shadcn → dist/shadcn}/components/ui/pagination.js.map +0 -0
  183. /package/{shadcn → dist/shadcn}/components/ui/scroll-area.d.ts +0 -0
  184. /package/{shadcn → dist/shadcn}/components/ui/scroll-area.js +0 -0
  185. /package/{shadcn → dist/shadcn}/components/ui/scroll-area.js.map +0 -0
  186. /package/{shadcn → dist/shadcn}/components/ui/search.d.ts +0 -0
  187. /package/{shadcn → dist/shadcn}/components/ui/search.js +0 -0
  188. /package/{shadcn → dist/shadcn}/components/ui/search.js.map +0 -0
  189. /package/{shadcn → dist/shadcn}/components/ui/separator.d.ts +0 -0
  190. /package/{shadcn → dist/shadcn}/components/ui/separator.js +0 -0
  191. /package/{shadcn → dist/shadcn}/components/ui/separator.js.map +0 -0
  192. /package/{shadcn → dist/shadcn}/components/ui/skeleton.d.ts +0 -0
  193. /package/{shadcn → dist/shadcn}/components/ui/skeleton.js +0 -0
  194. /package/{shadcn → dist/shadcn}/components/ui/skeleton.js.map +0 -0
  195. /package/{shadcn → dist/shadcn}/components/ui/table.d.ts +0 -0
  196. /package/{shadcn → dist/shadcn}/components/ui/table.js +0 -0
  197. /package/{shadcn → dist/shadcn}/components/ui/table.js.map +0 -0
  198. /package/{shadcn → dist/shadcn}/components/ui/tabs.d.ts +0 -0
  199. /package/{shadcn → dist/shadcn}/components/ui/tabs.js +0 -0
  200. /package/{shadcn → dist/shadcn}/components/ui/tabs.js.map +0 -0
  201. /package/{shadcn → dist/shadcn}/components/ui/textarea.d.ts +0 -0
  202. /package/{shadcn → dist/shadcn}/components/ui/textarea.js +0 -0
  203. /package/{shadcn → dist/shadcn}/components/ui/textarea.js.map +0 -0
  204. /package/{shadcn → dist/shadcn}/components/ui/tooltip.d.ts +0 -0
  205. /package/{shadcn → dist/shadcn}/components/ui/tooltip.js +0 -0
  206. /package/{shadcn → dist/shadcn}/components/ui/tooltip.js.map +0 -0
  207. /package/{shadcn → dist/shadcn}/utils.d.ts +0 -0
  208. /package/{shadcn → dist/shadcn}/utils.js +0 -0
  209. /package/{shadcn → dist/shadcn}/utils.js.map +0 -0
  210. /package/{types → dist/types}/grapesjs-tailwind.d.js +0 -0
  211. /package/{types → dist/types}/grapesjs-tailwind.d.js.map +0 -0
  212. /package/{types → dist/types}/images.d.js +0 -0
  213. /package/{types → dist/types}/images.d.js.map +0 -0
@@ -0,0 +1,2465 @@
1
+ /*! tailwindcss v4.1.7 | 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-red-50: oklch(97.1% 0.013 17.38);
11
+ --color-red-100: oklch(93.6% 0.032 17.717);
12
+ --color-red-200: oklch(88.5% 0.062 18.334);
13
+ --color-red-300: oklch(80.8% 0.114 19.571);
14
+ --color-red-600: oklch(57.7% 0.245 27.325);
15
+ --color-green-300: oklch(87.1% 0.15 154.449);
16
+ --color-green-600: oklch(62.7% 0.194 149.214);
17
+ --color-blue-50: oklch(97% 0.014 254.604);
18
+ --color-blue-500: oklch(62.3% 0.214 259.815);
19
+ --color-blue-600: oklch(54.6% 0.245 262.881);
20
+ --color-blue-700: oklch(48.8% 0.243 264.376);
21
+ --color-purple-600: oklch(55.8% 0.288 302.321);
22
+ --color-pink-50: oklch(97.1% 0.014 343.198);
23
+ --color-pink-900: oklch(40.8% 0.153 2.432);
24
+ --color-slate-100: oklch(96.8% 0.007 247.896);
25
+ --color-gray-50: oklch(98.5% 0.002 247.839);
26
+ --color-gray-100: oklch(96.7% 0.003 264.542);
27
+ --color-gray-200: oklch(92.8% 0.006 264.531);
28
+ --color-gray-300: oklch(87.2% 0.01 258.338);
29
+ --color-gray-400: oklch(70.7% 0.022 261.325);
30
+ --color-gray-500: oklch(55.1% 0.027 264.364);
31
+ --color-gray-600: oklch(44.6% 0.03 256.802);
32
+ --color-gray-700: oklch(37.3% 0.034 259.733);
33
+ --color-gray-800: oklch(27.8% 0.033 256.848);
34
+ --color-gray-900: oklch(21% 0.034 264.665);
35
+ --color-black: #000;
36
+ --color-white: #fff;
37
+ --spacing: 0.25rem;
38
+ --container-md: 28rem;
39
+ --container-2xl: 42rem;
40
+ --text-xs: 0.75rem;
41
+ --text-xs--line-height: calc(1 / 0.75);
42
+ --text-sm: 0.875rem;
43
+ --text-sm--line-height: calc(1.25 / 0.875);
44
+ --text-base: 1rem;
45
+ --text-base--line-height: calc(1.5 / 1);
46
+ --text-lg: 1.125rem;
47
+ --text-lg--line-height: calc(1.75 / 1.125);
48
+ --text-xl: 1.25rem;
49
+ --text-xl--line-height: calc(1.75 / 1.25);
50
+ --text-2xl: 1.5rem;
51
+ --text-2xl--line-height: calc(2 / 1.5);
52
+ --text-3xl: 1.875rem;
53
+ --text-3xl--line-height: calc(2.25 / 1.875);
54
+ --text-4xl: 2.25rem;
55
+ --text-4xl--line-height: calc(2.5 / 2.25);
56
+ --text-5xl: 3rem;
57
+ --text-5xl--line-height: 1;
58
+ --font-weight-medium: 500;
59
+ --font-weight-semibold: 600;
60
+ --font-weight-bold: 700;
61
+ --leading-relaxed: 1.625;
62
+ --radius-sm: calc(0.625rem - 4px);
63
+ --radius-md: calc(0.625rem - 2px);
64
+ --radius-lg: 0.625rem;
65
+ --radius-xl: calc(0.625rem + 4px);
66
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
67
+ --animate-spin: spin 1s linear infinite;
68
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
69
+ --aspect-video: 16 / 9;
70
+ --default-transition-duration: 150ms;
71
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
72
+ --default-font-family: var(--font-sans);
73
+ --default-mono-font-family: var(--font-mono);
74
+ --color-border: oklch(0.922 0 0);
75
+ }
76
+ }
77
+ @layer base {
78
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
79
+ box-sizing: border-box;
80
+ margin: 0;
81
+ padding: 0;
82
+ border: 0 solid;
83
+ }
84
+ html, :host {
85
+ line-height: 1.5;
86
+ -webkit-text-size-adjust: 100%;
87
+ tab-size: 4;
88
+ 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");
89
+ font-feature-settings: var(--default-font-feature-settings, normal);
90
+ font-variation-settings: var(--default-font-variation-settings, normal);
91
+ -webkit-tap-highlight-color: transparent;
92
+ }
93
+ hr {
94
+ height: 0;
95
+ color: inherit;
96
+ border-top-width: 1px;
97
+ }
98
+ abbr:where([title]) {
99
+ -webkit-text-decoration: underline dotted;
100
+ text-decoration: underline dotted;
101
+ }
102
+ h1, h2, h3, h4, h5, h6 {
103
+ font-size: inherit;
104
+ font-weight: inherit;
105
+ }
106
+ a {
107
+ color: inherit;
108
+ -webkit-text-decoration: inherit;
109
+ text-decoration: inherit;
110
+ }
111
+ b, strong {
112
+ font-weight: bolder;
113
+ }
114
+ code, kbd, samp, pre {
115
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
116
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
117
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
118
+ font-size: 1em;
119
+ }
120
+ small {
121
+ font-size: 80%;
122
+ }
123
+ sub, sup {
124
+ font-size: 75%;
125
+ line-height: 0;
126
+ position: relative;
127
+ vertical-align: baseline;
128
+ }
129
+ sub {
130
+ bottom: -0.25em;
131
+ }
132
+ sup {
133
+ top: -0.5em;
134
+ }
135
+ table {
136
+ text-indent: 0;
137
+ border-color: inherit;
138
+ border-collapse: collapse;
139
+ }
140
+ :-moz-focusring {
141
+ outline: auto;
142
+ }
143
+ progress {
144
+ vertical-align: baseline;
145
+ }
146
+ summary {
147
+ display: list-item;
148
+ }
149
+ ol, ul, menu {
150
+ list-style: none;
151
+ }
152
+ img, svg, video, canvas, audio, iframe, embed, object {
153
+ display: block;
154
+ vertical-align: middle;
155
+ }
156
+ img, video {
157
+ max-width: 100%;
158
+ height: auto;
159
+ }
160
+ button, input, select, optgroup, textarea, ::file-selector-button {
161
+ font: inherit;
162
+ font-feature-settings: inherit;
163
+ font-variation-settings: inherit;
164
+ letter-spacing: inherit;
165
+ color: inherit;
166
+ border-radius: 0;
167
+ background-color: transparent;
168
+ opacity: 1;
169
+ }
170
+ :where(select:is([multiple], [size])) optgroup {
171
+ font-weight: bolder;
172
+ }
173
+ :where(select:is([multiple], [size])) optgroup option {
174
+ padding-inline-start: 20px;
175
+ }
176
+ ::file-selector-button {
177
+ margin-inline-end: 4px;
178
+ }
179
+ ::placeholder {
180
+ opacity: 1;
181
+ }
182
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
183
+ ::placeholder {
184
+ color: currentcolor;
185
+ @supports (color: color-mix(in lab, red, red)) {
186
+ color: color-mix(in oklab, currentcolor 50%, transparent);
187
+ }
188
+ }
189
+ }
190
+ textarea {
191
+ resize: vertical;
192
+ }
193
+ ::-webkit-search-decoration {
194
+ -webkit-appearance: none;
195
+ }
196
+ ::-webkit-date-and-time-value {
197
+ min-height: 1lh;
198
+ text-align: inherit;
199
+ }
200
+ ::-webkit-datetime-edit {
201
+ display: inline-flex;
202
+ }
203
+ ::-webkit-datetime-edit-fields-wrapper {
204
+ padding: 0;
205
+ }
206
+ ::-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 {
207
+ padding-block: 0;
208
+ }
209
+ :-moz-ui-invalid {
210
+ box-shadow: none;
211
+ }
212
+ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
213
+ appearance: button;
214
+ }
215
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
216
+ height: auto;
217
+ }
218
+ [hidden]:where(:not([hidden="until-found"])) {
219
+ display: none !important;
220
+ }
221
+ }
222
+ @layer utilities {
223
+ .\@container\/card-header {
224
+ container-type: inline-size;
225
+ container-name: card-header;
226
+ }
227
+ .pointer-events-none {
228
+ pointer-events: none;
229
+ }
230
+ .sr-only {
231
+ position: absolute;
232
+ width: 1px;
233
+ height: 1px;
234
+ padding: 0;
235
+ margin: -1px;
236
+ overflow: hidden;
237
+ clip: rect(0, 0, 0, 0);
238
+ white-space: nowrap;
239
+ border-width: 0;
240
+ }
241
+ .absolute {
242
+ position: absolute;
243
+ }
244
+ .fixed {
245
+ position: fixed;
246
+ }
247
+ .relative {
248
+ position: relative;
249
+ }
250
+ .sticky {
251
+ position: sticky;
252
+ }
253
+ .inset-0 {
254
+ inset: calc(var(--spacing) * 0);
255
+ }
256
+ .top-0 {
257
+ top: calc(var(--spacing) * 0);
258
+ }
259
+ .top-1 {
260
+ top: calc(var(--spacing) * 1);
261
+ }
262
+ .top-2 {
263
+ top: calc(var(--spacing) * 2);
264
+ }
265
+ .top-7 {
266
+ top: calc(var(--spacing) * 7);
267
+ }
268
+ .top-full {
269
+ top: 100%;
270
+ }
271
+ .right-0 {
272
+ right: calc(var(--spacing) * 0);
273
+ }
274
+ .right-2 {
275
+ right: calc(var(--spacing) * 2);
276
+ }
277
+ .right-3 {
278
+ right: calc(var(--spacing) * 3);
279
+ }
280
+ .right-10 {
281
+ right: calc(var(--spacing) * 10);
282
+ }
283
+ .bottom-0 {
284
+ bottom: calc(var(--spacing) * 0);
285
+ }
286
+ .left-0 {
287
+ left: calc(var(--spacing) * 0);
288
+ }
289
+ .left-1 {
290
+ left: calc(var(--spacing) * 1);
291
+ }
292
+ .left-1\/2 {
293
+ left: calc(1/2 * 100%);
294
+ }
295
+ .left-2 {
296
+ left: calc(var(--spacing) * 2);
297
+ }
298
+ .\!z-\[9999\] {
299
+ z-index: 9999 !important;
300
+ }
301
+ .z-2 {
302
+ z-index: 2;
303
+ }
304
+ .z-10 {
305
+ z-index: 10;
306
+ }
307
+ .z-50 {
308
+ z-index: 50;
309
+ }
310
+ .z-\[9999\] {
311
+ z-index: 9999;
312
+ }
313
+ .col-start-2 {
314
+ grid-column-start: 2;
315
+ }
316
+ .row-span-2 {
317
+ grid-row: span 2 / span 2;
318
+ }
319
+ .row-start-1 {
320
+ grid-row-start: 1;
321
+ }
322
+ .container {
323
+ width: 100%;
324
+ @media (width >= 40rem) {
325
+ max-width: 40rem;
326
+ }
327
+ @media (width >= 48rem) {
328
+ max-width: 48rem;
329
+ }
330
+ @media (width >= 64rem) {
331
+ max-width: 64rem;
332
+ }
333
+ @media (width >= 80rem) {
334
+ max-width: 80rem;
335
+ }
336
+ @media (width >= 96rem) {
337
+ max-width: 96rem;
338
+ }
339
+ }
340
+ .-m-0 {
341
+ margin: calc(var(--spacing) * -0);
342
+ }
343
+ .-m-0\.5 {
344
+ margin: calc(var(--spacing) * -0.5);
345
+ }
346
+ .m-0 {
347
+ margin: calc(var(--spacing) * 0);
348
+ }
349
+ .m-6 {
350
+ margin: calc(var(--spacing) * 6);
351
+ }
352
+ .-mx-1 {
353
+ margin-inline: calc(var(--spacing) * -1);
354
+ }
355
+ .mx-auto {
356
+ margin-inline: auto;
357
+ }
358
+ .my-0 {
359
+ margin-block: calc(var(--spacing) * 0);
360
+ }
361
+ .my-0\.5 {
362
+ margin-block: calc(var(--spacing) * 0.5);
363
+ }
364
+ .my-1 {
365
+ margin-block: calc(var(--spacing) * 1);
366
+ }
367
+ .my-4 {
368
+ margin-block: calc(var(--spacing) * 4);
369
+ }
370
+ .my-6 {
371
+ margin-block: calc(var(--spacing) * 6);
372
+ }
373
+ .mt-1 {
374
+ margin-top: calc(var(--spacing) * 1);
375
+ }
376
+ .mt-2 {
377
+ margin-top: calc(var(--spacing) * 2);
378
+ }
379
+ .mt-4 {
380
+ margin-top: calc(var(--spacing) * 4);
381
+ }
382
+ .mt-auto {
383
+ margin-top: auto;
384
+ }
385
+ .mr-1 {
386
+ margin-right: calc(var(--spacing) * 1);
387
+ }
388
+ .mr-2 {
389
+ margin-right: calc(var(--spacing) * 2);
390
+ }
391
+ .mb-1 {
392
+ margin-bottom: calc(var(--spacing) * 1);
393
+ }
394
+ .mb-2 {
395
+ margin-bottom: calc(var(--spacing) * 2);
396
+ }
397
+ .mb-3 {
398
+ margin-bottom: calc(var(--spacing) * 3);
399
+ }
400
+ .mb-4 {
401
+ margin-bottom: calc(var(--spacing) * 4);
402
+ }
403
+ .mb-6 {
404
+ margin-bottom: calc(var(--spacing) * 6);
405
+ }
406
+ .mb-8 {
407
+ margin-bottom: calc(var(--spacing) * 8);
408
+ }
409
+ .ml-1 {
410
+ margin-left: calc(var(--spacing) * 1);
411
+ }
412
+ .ml-1\.5 {
413
+ margin-left: calc(var(--spacing) * 1.5);
414
+ }
415
+ .ml-2 {
416
+ margin-left: calc(var(--spacing) * 2);
417
+ }
418
+ .ml-2\.5 {
419
+ margin-left: calc(var(--spacing) * 2.5);
420
+ }
421
+ .ml-auto {
422
+ margin-left: auto;
423
+ }
424
+ .block {
425
+ display: block;
426
+ }
427
+ .flex {
428
+ display: flex;
429
+ }
430
+ .grid {
431
+ display: grid;
432
+ }
433
+ .hidden {
434
+ display: none;
435
+ }
436
+ .inline {
437
+ display: inline;
438
+ }
439
+ .inline-block {
440
+ display: inline-block;
441
+ }
442
+ .inline-flex {
443
+ display: inline-flex;
444
+ }
445
+ .table {
446
+ display: table;
447
+ }
448
+ .table-caption {
449
+ display: table-caption;
450
+ }
451
+ .table-cell {
452
+ display: table-cell;
453
+ }
454
+ .table-row {
455
+ display: table-row;
456
+ }
457
+ .field-sizing-content {
458
+ field-sizing: content;
459
+ }
460
+ .aspect-auto {
461
+ aspect-ratio: auto;
462
+ }
463
+ .aspect-video {
464
+ aspect-ratio: var(--aspect-video);
465
+ }
466
+ .size-2 {
467
+ width: calc(var(--spacing) * 2);
468
+ height: calc(var(--spacing) * 2);
469
+ }
470
+ .size-2\.5 {
471
+ width: calc(var(--spacing) * 2.5);
472
+ height: calc(var(--spacing) * 2.5);
473
+ }
474
+ .size-3 {
475
+ width: calc(var(--spacing) * 3);
476
+ height: calc(var(--spacing) * 3);
477
+ }
478
+ .size-3\.5 {
479
+ width: calc(var(--spacing) * 3.5);
480
+ height: calc(var(--spacing) * 3.5);
481
+ }
482
+ .size-4 {
483
+ width: calc(var(--spacing) * 4);
484
+ height: calc(var(--spacing) * 4);
485
+ }
486
+ .size-9 {
487
+ width: calc(var(--spacing) * 9);
488
+ height: calc(var(--spacing) * 9);
489
+ }
490
+ .size-full {
491
+ width: 100%;
492
+ height: 100%;
493
+ }
494
+ .h-2 {
495
+ height: calc(var(--spacing) * 2);
496
+ }
497
+ .h-2\.5 {
498
+ height: calc(var(--spacing) * 2.5);
499
+ }
500
+ .h-3 {
501
+ height: calc(var(--spacing) * 3);
502
+ }
503
+ .h-4 {
504
+ height: calc(var(--spacing) * 4);
505
+ }
506
+ .h-5 {
507
+ height: calc(var(--spacing) * 5);
508
+ }
509
+ .h-6 {
510
+ height: calc(var(--spacing) * 6);
511
+ }
512
+ .h-8 {
513
+ height: calc(var(--spacing) * 8);
514
+ }
515
+ .h-9 {
516
+ height: calc(var(--spacing) * 9);
517
+ }
518
+ .h-10 {
519
+ height: calc(var(--spacing) * 10);
520
+ }
521
+ .h-12 {
522
+ height: calc(var(--spacing) * 12);
523
+ }
524
+ .h-20 {
525
+ height: calc(var(--spacing) * 20);
526
+ }
527
+ .h-28 {
528
+ height: calc(var(--spacing) * 28);
529
+ }
530
+ .h-30 {
531
+ height: calc(var(--spacing) * 30);
532
+ }
533
+ .h-35 {
534
+ height: calc(var(--spacing) * 35);
535
+ }
536
+ .h-40 {
537
+ height: calc(var(--spacing) * 40);
538
+ }
539
+ .h-50 {
540
+ height: calc(var(--spacing) * 50);
541
+ }
542
+ .h-\[38px\] {
543
+ height: 38px;
544
+ }
545
+ .h-\[250px\] {
546
+ height: 250px;
547
+ }
548
+ .h-\[258px\] {
549
+ height: 258px;
550
+ }
551
+ .h-auto {
552
+ height: auto;
553
+ }
554
+ .h-fit {
555
+ height: fit-content;
556
+ }
557
+ .h-full {
558
+ height: 100%;
559
+ }
560
+ .h-px {
561
+ height: 1px;
562
+ }
563
+ .max-h-48 {
564
+ max-height: calc(var(--spacing) * 48);
565
+ }
566
+ .max-h-64 {
567
+ max-height: calc(var(--spacing) * 64);
568
+ }
569
+ .max-h-\[90vh\] {
570
+ max-height: 90vh;
571
+ }
572
+ .max-h-\[calc\(90vh-160px\)\] {
573
+ max-height: calc(90vh - 160px);
574
+ }
575
+ .min-h-16 {
576
+ min-height: calc(var(--spacing) * 16);
577
+ }
578
+ .min-h-\[45vh\] {
579
+ min-height: 45vh;
580
+ }
581
+ .min-h-\[100px\] {
582
+ min-height: 100px;
583
+ }
584
+ .w-0 {
585
+ width: calc(var(--spacing) * 0);
586
+ }
587
+ .w-1 {
588
+ width: calc(var(--spacing) * 1);
589
+ }
590
+ .w-1\/3 {
591
+ width: calc(1/3 * 100%);
592
+ }
593
+ .w-1\/6 {
594
+ width: calc(1/6 * 100%);
595
+ }
596
+ .w-2 {
597
+ width: calc(var(--spacing) * 2);
598
+ }
599
+ .w-2\.5 {
600
+ width: calc(var(--spacing) * 2.5);
601
+ }
602
+ .w-3 {
603
+ width: calc(var(--spacing) * 3);
604
+ }
605
+ .w-4 {
606
+ width: calc(var(--spacing) * 4);
607
+ }
608
+ .w-4\/5 {
609
+ width: calc(4/5 * 100%);
610
+ }
611
+ .w-6 {
612
+ width: calc(var(--spacing) * 6);
613
+ }
614
+ .w-12 {
615
+ width: calc(var(--spacing) * 12);
616
+ }
617
+ .w-56 {
618
+ width: calc(var(--spacing) * 56);
619
+ }
620
+ .w-64 {
621
+ width: calc(var(--spacing) * 64);
622
+ }
623
+ .w-72 {
624
+ width: calc(var(--spacing) * 72);
625
+ }
626
+ .w-80 {
627
+ width: calc(var(--spacing) * 80);
628
+ }
629
+ .w-\[280px\] {
630
+ width: 280px;
631
+ }
632
+ .w-\[320px\] {
633
+ width: 320px;
634
+ }
635
+ .w-\[380px\] {
636
+ width: 380px;
637
+ }
638
+ .w-\[481px\] {
639
+ width: 481px;
640
+ }
641
+ .w-\[640px\] {
642
+ width: 640px;
643
+ }
644
+ .w-auto {
645
+ width: auto;
646
+ }
647
+ .w-fit {
648
+ width: fit-content;
649
+ }
650
+ .w-full {
651
+ width: 100%;
652
+ }
653
+ .max-w-2xl {
654
+ max-width: var(--container-2xl);
655
+ }
656
+ .max-w-\[200px\] {
657
+ max-width: 200px;
658
+ }
659
+ .max-w-\[320px\] {
660
+ max-width: 320px;
661
+ }
662
+ .max-w-full {
663
+ max-width: 100%;
664
+ }
665
+ .max-w-md {
666
+ max-width: var(--container-md);
667
+ }
668
+ .min-w-0 {
669
+ min-width: calc(var(--spacing) * 0);
670
+ }
671
+ .min-w-\[8rem\] {
672
+ min-width: 8rem;
673
+ }
674
+ .flex-1 {
675
+ flex: 1;
676
+ }
677
+ .flex-shrink {
678
+ flex-shrink: 1;
679
+ }
680
+ .flex-shrink-0 {
681
+ flex-shrink: 0;
682
+ }
683
+ .shrink-0 {
684
+ flex-shrink: 0;
685
+ }
686
+ .flex-grow {
687
+ flex-grow: 1;
688
+ }
689
+ .caption-bottom {
690
+ caption-side: bottom;
691
+ }
692
+ .border-collapse {
693
+ border-collapse: collapse;
694
+ }
695
+ .origin-\(--radix-hover-card-content-transform-origin\) {
696
+ transform-origin: var(--radix-hover-card-content-transform-origin);
697
+ }
698
+ .origin-\[var\(--radix-tooltip-content-transform-origin\)\] {
699
+ transform-origin: var(--radix-tooltip-content-transform-origin);
700
+ }
701
+ .-translate-x-1 {
702
+ --tw-translate-x: calc(var(--spacing) * -1);
703
+ translate: var(--tw-translate-x) var(--tw-translate-y);
704
+ }
705
+ .-translate-x-1\/2 {
706
+ --tw-translate-x: calc(calc(1/2 * 100%) * -1);
707
+ translate: var(--tw-translate-x) var(--tw-translate-y);
708
+ }
709
+ .-translate-y-1 {
710
+ --tw-translate-y: calc(var(--spacing) * -1);
711
+ translate: var(--tw-translate-x) var(--tw-translate-y);
712
+ }
713
+ .-translate-y-1\/2 {
714
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
715
+ translate: var(--tw-translate-x) var(--tw-translate-y);
716
+ }
717
+ .-translate-y-2 {
718
+ --tw-translate-y: calc(var(--spacing) * -2);
719
+ translate: var(--tw-translate-x) var(--tw-translate-y);
720
+ }
721
+ .-translate-y-\[2px\] {
722
+ --tw-translate-y: calc(2px * -1);
723
+ translate: var(--tw-translate-x) var(--tw-translate-y);
724
+ }
725
+ .rotate-45 {
726
+ rotate: 45deg;
727
+ }
728
+ .rotate-180 {
729
+ rotate: 180deg;
730
+ }
731
+ .transform {
732
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
733
+ }
734
+ .animate-pulse {
735
+ animation: var(--animate-pulse);
736
+ }
737
+ .animate-spin {
738
+ animation: var(--animate-spin);
739
+ }
740
+ .cursor-default {
741
+ cursor: default;
742
+ }
743
+ .cursor-not-allowed {
744
+ cursor: not-allowed;
745
+ }
746
+ .cursor-pointer {
747
+ cursor: pointer;
748
+ }
749
+ .touch-none {
750
+ touch-action: none;
751
+ }
752
+ .resize {
753
+ resize: both;
754
+ }
755
+ .scroll-my-1 {
756
+ scroll-margin-block: calc(var(--spacing) * 1);
757
+ }
758
+ .list-disc {
759
+ list-style-type: disc;
760
+ }
761
+ .auto-rows-min {
762
+ grid-auto-rows: min-content;
763
+ }
764
+ .grid-rows-\[auto_auto\] {
765
+ grid-template-rows: auto auto;
766
+ }
767
+ .flex-col {
768
+ flex-direction: column;
769
+ }
770
+ .flex-row {
771
+ flex-direction: row;
772
+ }
773
+ .flex-wrap {
774
+ flex-wrap: wrap;
775
+ }
776
+ .items-center {
777
+ align-items: center;
778
+ }
779
+ .items-end {
780
+ align-items: flex-end;
781
+ }
782
+ .items-start {
783
+ align-items: flex-start;
784
+ }
785
+ .items-stretch {
786
+ align-items: stretch;
787
+ }
788
+ .justify-between {
789
+ justify-content: space-between;
790
+ }
791
+ .justify-center {
792
+ justify-content: center;
793
+ }
794
+ .justify-end {
795
+ justify-content: flex-end;
796
+ }
797
+ .gap-1 {
798
+ gap: calc(var(--spacing) * 1);
799
+ }
800
+ .gap-1\.5 {
801
+ gap: calc(var(--spacing) * 1.5);
802
+ }
803
+ .gap-2 {
804
+ gap: calc(var(--spacing) * 2);
805
+ }
806
+ .gap-3 {
807
+ gap: calc(var(--spacing) * 3);
808
+ }
809
+ .gap-4 {
810
+ gap: calc(var(--spacing) * 4);
811
+ }
812
+ .gap-6 {
813
+ gap: calc(var(--spacing) * 6);
814
+ }
815
+ .space-y-2 {
816
+ :where(& > :not(:last-child)) {
817
+ --tw-space-y-reverse: 0;
818
+ margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
819
+ margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
820
+ }
821
+ }
822
+ .space-y-4 {
823
+ :where(& > :not(:last-child)) {
824
+ --tw-space-y-reverse: 0;
825
+ margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
826
+ margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
827
+ }
828
+ }
829
+ .space-x-2 {
830
+ :where(& > :not(:last-child)) {
831
+ --tw-space-x-reverse: 0;
832
+ margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
833
+ margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
834
+ }
835
+ }
836
+ .self-end {
837
+ align-self: flex-end;
838
+ }
839
+ .self-start {
840
+ align-self: flex-start;
841
+ }
842
+ .justify-self-end {
843
+ justify-self: flex-end;
844
+ }
845
+ .truncate {
846
+ overflow: hidden;
847
+ text-overflow: ellipsis;
848
+ white-space: nowrap;
849
+ }
850
+ .overflow-auto {
851
+ overflow: auto;
852
+ }
853
+ .overflow-hidden {
854
+ overflow: hidden;
855
+ }
856
+ .overflow-x-auto {
857
+ overflow-x: auto;
858
+ }
859
+ .overflow-x-hidden {
860
+ overflow-x: hidden;
861
+ }
862
+ .overflow-y-auto {
863
+ overflow-y: auto;
864
+ }
865
+ .rounded {
866
+ border-radius: 0.25rem;
867
+ }
868
+ .rounded-\[2px\] {
869
+ border-radius: 2px;
870
+ }
871
+ .rounded-\[4px\] {
872
+ border-radius: 4px;
873
+ }
874
+ .rounded-\[16px\] {
875
+ border-radius: 16px;
876
+ }
877
+ .rounded-\[inherit\] {
878
+ border-radius: inherit;
879
+ }
880
+ .rounded-full {
881
+ border-radius: calc(infinity * 1px);
882
+ }
883
+ .rounded-lg {
884
+ border-radius: 0.625rem;
885
+ }
886
+ .rounded-md {
887
+ border-radius: calc(0.625rem - 2px);
888
+ }
889
+ .rounded-none {
890
+ border-radius: 0;
891
+ }
892
+ .rounded-sm {
893
+ border-radius: calc(0.625rem - 4px);
894
+ }
895
+ .rounded-xl {
896
+ border-radius: calc(0.625rem + 4px);
897
+ }
898
+ .border {
899
+ border-style: var(--tw-border-style);
900
+ border-width: 1px;
901
+ }
902
+ .border-0 {
903
+ border-style: var(--tw-border-style);
904
+ border-width: 0px;
905
+ }
906
+ .border-\[1\.5px\] {
907
+ border-style: var(--tw-border-style);
908
+ border-width: 1.5px;
909
+ }
910
+ .border-t {
911
+ border-top-style: var(--tw-border-style);
912
+ border-top-width: 1px;
913
+ }
914
+ .border-t-2 {
915
+ border-top-style: var(--tw-border-style);
916
+ border-top-width: 2px;
917
+ }
918
+ .border-b {
919
+ border-bottom-style: var(--tw-border-style);
920
+ border-bottom-width: 1px;
921
+ }
922
+ .border-b-2 {
923
+ border-bottom-style: var(--tw-border-style);
924
+ border-bottom-width: 2px;
925
+ }
926
+ .border-l {
927
+ border-left-style: var(--tw-border-style);
928
+ border-left-width: 1px;
929
+ }
930
+ .border-dashed {
931
+ --tw-border-style: dashed;
932
+ border-style: dashed;
933
+ }
934
+ .border-\(--color-border\) {
935
+ border-color: var(--color-border);
936
+ }
937
+ .border-\[\#2A44D4\] {
938
+ border-color: #2A44D4;
939
+ }
940
+ .border-\[\#D4D5DE\] {
941
+ border-color: #D4D5DE;
942
+ }
943
+ .border-border {
944
+ border-color: oklch(0.922 0 0);
945
+ }
946
+ .border-border\/50 {
947
+ border-color: color-mix(in oklab, oklch(0.922 0 0) 50%, transparent);
948
+ }
949
+ .border-gray-200 {
950
+ border-color: var(--color-gray-200);
951
+ }
952
+ .border-gray-300 {
953
+ border-color: var(--color-gray-300);
954
+ }
955
+ .border-input {
956
+ border-color: oklch(0.922 0 0);
957
+ }
958
+ .border-purple-600 {
959
+ border-color: var(--color-purple-600);
960
+ }
961
+ .border-red-200 {
962
+ border-color: var(--color-red-200);
963
+ }
964
+ .border-t-transparent {
965
+ border-top-color: transparent;
966
+ }
967
+ .border-l-transparent {
968
+ border-left-color: transparent;
969
+ }
970
+ .bg-\(--color-bg\) {
971
+ background-color: var(--color-bg);
972
+ }
973
+ .bg-\[\#2A44D4\] {
974
+ background-color: #2A44D4;
975
+ }
976
+ .bg-\[\#EAECFB\] {
977
+ background-color: #EAECFB;
978
+ }
979
+ .bg-\[\#F9F9FE\] {
980
+ background-color: #F9F9FE;
981
+ }
982
+ .bg-accent {
983
+ background-color: oklch(0.97 0 0);
984
+ }
985
+ .bg-background {
986
+ background-color: oklch(1 0 0);
987
+ }
988
+ .bg-black {
989
+ background-color: var(--color-black);
990
+ }
991
+ .bg-black\/10 {
992
+ background-color: color-mix(in srgb, #000 10%, transparent);
993
+ @supports (color: color-mix(in lab, red, red)) {
994
+ background-color: color-mix(in oklab, var(--color-black) 10%, transparent);
995
+ }
996
+ }
997
+ .bg-blue-600 {
998
+ background-color: var(--color-blue-600);
999
+ }
1000
+ .bg-border {
1001
+ background-color: oklch(0.922 0 0);
1002
+ }
1003
+ .bg-destructive {
1004
+ background-color: oklch(0.577 0.245 27.325);
1005
+ }
1006
+ .bg-gray-50 {
1007
+ background-color: var(--color-gray-50);
1008
+ }
1009
+ .bg-gray-300 {
1010
+ background-color: var(--color-gray-300);
1011
+ }
1012
+ .bg-gray-400 {
1013
+ background-color: var(--color-gray-400);
1014
+ }
1015
+ .bg-gray-500 {
1016
+ background-color: var(--color-gray-500);
1017
+ }
1018
+ .bg-green-300 {
1019
+ background-color: var(--color-green-300);
1020
+ }
1021
+ .bg-muted {
1022
+ background-color: oklch(0.97 0 0);
1023
+ }
1024
+ .bg-muted\/50 {
1025
+ background-color: color-mix(in oklab, oklch(0.97 0 0) 50%, transparent);
1026
+ }
1027
+ .bg-pink-50 {
1028
+ background-color: var(--color-pink-50);
1029
+ }
1030
+ .bg-popover {
1031
+ background-color: oklch(1 0 0);
1032
+ }
1033
+ .bg-primary {
1034
+ background-color: oklch(0.205 0 0);
1035
+ }
1036
+ .bg-red-50 {
1037
+ background-color: var(--color-red-50);
1038
+ }
1039
+ .bg-red-100 {
1040
+ background-color: var(--color-red-100);
1041
+ }
1042
+ .bg-secondary {
1043
+ background-color: oklch(0.97 0 0);
1044
+ }
1045
+ .bg-slate-100 {
1046
+ background-color: var(--color-slate-100);
1047
+ }
1048
+ .bg-transparent {
1049
+ background-color: transparent;
1050
+ }
1051
+ .bg-white {
1052
+ background-color: var(--color-white);
1053
+ }
1054
+ .fill-primary {
1055
+ fill: oklch(0.205 0 0);
1056
+ }
1057
+ .p-0 {
1058
+ padding: calc(var(--spacing) * 0);
1059
+ }
1060
+ .p-0\.5 {
1061
+ padding: calc(var(--spacing) * 0.5);
1062
+ }
1063
+ .p-1 {
1064
+ padding: calc(var(--spacing) * 1);
1065
+ }
1066
+ .p-2 {
1067
+ padding: calc(var(--spacing) * 2);
1068
+ }
1069
+ .p-3 {
1070
+ padding: calc(var(--spacing) * 3);
1071
+ }
1072
+ .p-4 {
1073
+ padding: calc(var(--spacing) * 4);
1074
+ }
1075
+ .p-6 {
1076
+ padding: calc(var(--spacing) * 6);
1077
+ }
1078
+ .p-\[1em\] {
1079
+ padding: 1em;
1080
+ }
1081
+ .p-px {
1082
+ padding: 1px;
1083
+ }
1084
+ .px-1 {
1085
+ padding-inline: calc(var(--spacing) * 1);
1086
+ }
1087
+ .px-2 {
1088
+ padding-inline: calc(var(--spacing) * 2);
1089
+ }
1090
+ .px-2\.5 {
1091
+ padding-inline: calc(var(--spacing) * 2.5);
1092
+ }
1093
+ .px-3 {
1094
+ padding-inline: calc(var(--spacing) * 3);
1095
+ }
1096
+ .px-4 {
1097
+ padding-inline: calc(var(--spacing) * 4);
1098
+ }
1099
+ .px-6 {
1100
+ padding-inline: calc(var(--spacing) * 6);
1101
+ }
1102
+ .px-\[1em\] {
1103
+ padding-inline: 1em;
1104
+ }
1105
+ .py-1 {
1106
+ padding-block: calc(var(--spacing) * 1);
1107
+ }
1108
+ .py-1\.5 {
1109
+ padding-block: calc(var(--spacing) * 1.5);
1110
+ }
1111
+ .py-2 {
1112
+ padding-block: calc(var(--spacing) * 2);
1113
+ }
1114
+ .py-3 {
1115
+ padding-block: calc(var(--spacing) * 3);
1116
+ }
1117
+ .py-6 {
1118
+ padding-block: calc(var(--spacing) * 6);
1119
+ }
1120
+ .py-8 {
1121
+ padding-block: calc(var(--spacing) * 8);
1122
+ }
1123
+ .py-12 {
1124
+ padding-block: calc(var(--spacing) * 12);
1125
+ }
1126
+ .py-16 {
1127
+ padding-block: calc(var(--spacing) * 16);
1128
+ }
1129
+ .py-\[11px\] {
1130
+ padding-block: 11px;
1131
+ }
1132
+ .pt-1 {
1133
+ padding-top: calc(var(--spacing) * 1);
1134
+ }
1135
+ .pt-2 {
1136
+ padding-top: calc(var(--spacing) * 2);
1137
+ }
1138
+ .pt-3 {
1139
+ padding-top: calc(var(--spacing) * 3);
1140
+ }
1141
+ .pr-8 {
1142
+ padding-right: calc(var(--spacing) * 8);
1143
+ }
1144
+ .pr-16 {
1145
+ padding-right: calc(var(--spacing) * 16);
1146
+ }
1147
+ .pb-3 {
1148
+ padding-bottom: calc(var(--spacing) * 3);
1149
+ }
1150
+ .pb-4 {
1151
+ padding-bottom: calc(var(--spacing) * 4);
1152
+ }
1153
+ .pl-1 {
1154
+ padding-left: calc(var(--spacing) * 1);
1155
+ }
1156
+ .pl-2 {
1157
+ padding-left: calc(var(--spacing) * 2);
1158
+ }
1159
+ .pl-4 {
1160
+ padding-left: calc(var(--spacing) * 4);
1161
+ }
1162
+ .text-center {
1163
+ text-align: center;
1164
+ }
1165
+ .text-left {
1166
+ text-align: left;
1167
+ }
1168
+ .align-middle {
1169
+ vertical-align: middle;
1170
+ }
1171
+ .font-mono {
1172
+ font-family: var(--font-mono);
1173
+ }
1174
+ .text-2xl {
1175
+ font-size: var(--text-2xl);
1176
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
1177
+ }
1178
+ .text-3xl {
1179
+ font-size: var(--text-3xl);
1180
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
1181
+ }
1182
+ .text-4xl {
1183
+ font-size: var(--text-4xl);
1184
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
1185
+ }
1186
+ .text-5xl {
1187
+ font-size: var(--text-5xl);
1188
+ line-height: var(--tw-leading, var(--text-5xl--line-height));
1189
+ }
1190
+ .text-base {
1191
+ font-size: var(--text-base);
1192
+ line-height: var(--tw-leading, var(--text-base--line-height));
1193
+ }
1194
+ .text-lg {
1195
+ font-size: var(--text-lg);
1196
+ line-height: var(--tw-leading, var(--text-lg--line-height));
1197
+ }
1198
+ .text-sm {
1199
+ font-size: var(--text-sm);
1200
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1201
+ }
1202
+ .text-xl {
1203
+ font-size: var(--text-xl);
1204
+ line-height: var(--tw-leading, var(--text-xl--line-height));
1205
+ }
1206
+ .text-xs {
1207
+ font-size: var(--text-xs);
1208
+ line-height: var(--tw-leading, var(--text-xs--line-height));
1209
+ }
1210
+ .text-\[0\.8rem\] {
1211
+ font-size: 0.8rem;
1212
+ }
1213
+ .leading-4 {
1214
+ --tw-leading: calc(var(--spacing) * 4);
1215
+ line-height: calc(var(--spacing) * 4);
1216
+ }
1217
+ .leading-\[2\.5rem\] {
1218
+ --tw-leading: 2.5rem;
1219
+ line-height: 2.5rem;
1220
+ }
1221
+ .leading-\[2rem\] {
1222
+ --tw-leading: 2rem;
1223
+ line-height: 2rem;
1224
+ }
1225
+ .leading-\[3rem\] {
1226
+ --tw-leading: 3rem;
1227
+ line-height: 3rem;
1228
+ }
1229
+ .leading-\[4rem\] {
1230
+ --tw-leading: 4rem;
1231
+ line-height: 4rem;
1232
+ }
1233
+ .leading-none {
1234
+ --tw-leading: 1;
1235
+ line-height: 1;
1236
+ }
1237
+ .leading-relaxed {
1238
+ --tw-leading: var(--leading-relaxed);
1239
+ line-height: var(--leading-relaxed);
1240
+ }
1241
+ .font-bold {
1242
+ --tw-font-weight: var(--font-weight-bold);
1243
+ font-weight: var(--font-weight-bold);
1244
+ }
1245
+ .font-medium {
1246
+ --tw-font-weight: var(--font-weight-medium);
1247
+ font-weight: var(--font-weight-medium);
1248
+ }
1249
+ .font-semibold {
1250
+ --tw-font-weight: var(--font-weight-semibold);
1251
+ font-weight: var(--font-weight-semibold);
1252
+ }
1253
+ .text-balance {
1254
+ text-wrap: balance;
1255
+ }
1256
+ .text-wrap {
1257
+ text-wrap: wrap;
1258
+ }
1259
+ .break-all {
1260
+ word-break: break-all;
1261
+ }
1262
+ .whitespace-normal {
1263
+ white-space: normal;
1264
+ }
1265
+ .whitespace-nowrap {
1266
+ white-space: nowrap;
1267
+ }
1268
+ .whitespace-pre-wrap {
1269
+ white-space: pre-wrap;
1270
+ }
1271
+ .text-\[\#020D21\] {
1272
+ color: #020D21;
1273
+ }
1274
+ .text-\[\#263DBF\] {
1275
+ color: #263DBF;
1276
+ }
1277
+ .text-\[\#687387\] {
1278
+ color: #687387;
1279
+ }
1280
+ .text-black {
1281
+ color: var(--color-black);
1282
+ }
1283
+ .text-blue-500 {
1284
+ color: var(--color-blue-500);
1285
+ }
1286
+ .text-blue-600 {
1287
+ color: var(--color-blue-600);
1288
+ }
1289
+ .text-card-foreground {
1290
+ color: oklch(0.145 0 0);
1291
+ }
1292
+ .text-current {
1293
+ color: currentcolor;
1294
+ }
1295
+ .text-foreground {
1296
+ color: oklch(0.145 0 0);
1297
+ }
1298
+ .text-gray-400 {
1299
+ color: var(--color-gray-400);
1300
+ }
1301
+ .text-gray-500 {
1302
+ color: var(--color-gray-500);
1303
+ }
1304
+ .text-gray-600 {
1305
+ color: var(--color-gray-600);
1306
+ }
1307
+ .text-gray-700 {
1308
+ color: var(--color-gray-700);
1309
+ }
1310
+ .text-gray-800 {
1311
+ color: var(--color-gray-800);
1312
+ }
1313
+ .text-gray-900 {
1314
+ color: var(--color-gray-900);
1315
+ }
1316
+ .text-green-600 {
1317
+ color: var(--color-green-600);
1318
+ }
1319
+ .text-muted-foreground {
1320
+ color: oklch(0.556 0 0);
1321
+ }
1322
+ .text-pink-900 {
1323
+ color: var(--color-pink-900);
1324
+ }
1325
+ .text-popover-foreground {
1326
+ color: oklch(0.145 0 0);
1327
+ }
1328
+ .text-primary {
1329
+ color: oklch(0.205 0 0);
1330
+ }
1331
+ .text-primary-foreground {
1332
+ color: oklch(0.985 0 0);
1333
+ }
1334
+ .text-red-600 {
1335
+ color: var(--color-red-600);
1336
+ }
1337
+ .text-secondary-foreground {
1338
+ color: oklch(0.205 0 0);
1339
+ }
1340
+ .text-white {
1341
+ color: var(--color-white);
1342
+ }
1343
+ .italic {
1344
+ font-style: italic;
1345
+ }
1346
+ .tabular-nums {
1347
+ --tw-numeric-spacing: tabular-nums;
1348
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
1349
+ }
1350
+ .underline {
1351
+ text-decoration-line: underline;
1352
+ }
1353
+ .underline-offset-4 {
1354
+ text-underline-offset: 4px;
1355
+ }
1356
+ .opacity-50 {
1357
+ opacity: 50%;
1358
+ }
1359
+ .opacity-60 {
1360
+ opacity: 60%;
1361
+ }
1362
+ .shadow {
1363
+ --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));
1364
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1365
+ }
1366
+ .shadow-\[0px_8px_16px_-4px_rgba\(0\,0\,0\,0\.1\)\] {
1367
+ --tw-shadow: 0px 8px 16px -4px var(--tw-shadow-color, rgba(0,0,0,0.1));
1368
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1369
+ }
1370
+ .shadow-lg {
1371
+ --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));
1372
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1373
+ }
1374
+ .shadow-md {
1375
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1376
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1377
+ }
1378
+ .shadow-none {
1379
+ --tw-shadow: 0 0 #0000;
1380
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1381
+ }
1382
+ .shadow-sm {
1383
+ --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));
1384
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1385
+ }
1386
+ .shadow-xl {
1387
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1388
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1389
+ }
1390
+ .shadow-xs {
1391
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
1392
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1393
+ }
1394
+ .ring-1 {
1395
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1396
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1397
+ }
1398
+ .ring-2 {
1399
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1400
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1401
+ }
1402
+ .ring-black {
1403
+ --tw-ring-color: var(--color-black);
1404
+ }
1405
+ .ring-blue-500 {
1406
+ --tw-ring-color: var(--color-blue-500);
1407
+ }
1408
+ .ring-offset-background {
1409
+ --tw-ring-offset-color: oklch(1 0 0);
1410
+ }
1411
+ .outline-hidden {
1412
+ --tw-outline-style: none;
1413
+ outline-style: none;
1414
+ @media (forced-colors: active) {
1415
+ outline: 2px solid transparent;
1416
+ outline-offset: 2px;
1417
+ }
1418
+ }
1419
+ .outline {
1420
+ outline-style: var(--tw-outline-style);
1421
+ outline-width: 1px;
1422
+ }
1423
+ .filter {
1424
+ 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,);
1425
+ }
1426
+ .transition {
1427
+ 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, visibility, content-visibility, overlay, pointer-events;
1428
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1429
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1430
+ }
1431
+ .transition-\[color\,box-shadow\] {
1432
+ transition-property: color,box-shadow;
1433
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1434
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1435
+ }
1436
+ .transition-all {
1437
+ transition-property: all;
1438
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1439
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1440
+ }
1441
+ .transition-colors {
1442
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
1443
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1444
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1445
+ }
1446
+ .transition-shadow {
1447
+ transition-property: box-shadow;
1448
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1449
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1450
+ }
1451
+ .transition-transform {
1452
+ transition-property: transform, translate, scale, rotate;
1453
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1454
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1455
+ }
1456
+ .transition-none {
1457
+ transition-property: none;
1458
+ }
1459
+ .duration-200 {
1460
+ --tw-duration: 200ms;
1461
+ transition-duration: 200ms;
1462
+ }
1463
+ .ease-in-out {
1464
+ --tw-ease: var(--ease-in-out);
1465
+ transition-timing-function: var(--ease-in-out);
1466
+ }
1467
+ .animate-in {
1468
+ animation-name: enter;
1469
+ animation-duration: 150ms;
1470
+ --tw-enter-opacity: initial;
1471
+ --tw-enter-scale: initial;
1472
+ --tw-enter-rotate: initial;
1473
+ --tw-enter-translate-x: initial;
1474
+ --tw-enter-translate-y: initial;
1475
+ }
1476
+ .outline-none {
1477
+ --tw-outline-style: none;
1478
+ outline-style: none;
1479
+ }
1480
+ .select-none {
1481
+ -webkit-user-select: none;
1482
+ user-select: none;
1483
+ }
1484
+ .duration-200 {
1485
+ animation-duration: 200ms;
1486
+ }
1487
+ .ease-in-out {
1488
+ animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1489
+ }
1490
+ .fade-in-0 {
1491
+ --tw-enter-opacity: 0;
1492
+ }
1493
+ .zoom-in-95 {
1494
+ --tw-enter-scale: .95;
1495
+ }
1496
+ .group-data-\[disabled\=true\]\:pointer-events-none {
1497
+ &:is(:where(.group)[data-disabled="true"] *) {
1498
+ pointer-events: none;
1499
+ }
1500
+ }
1501
+ .group-data-\[disabled\=true\]\:opacity-50 {
1502
+ &:is(:where(.group)[data-disabled="true"] *) {
1503
+ opacity: 50%;
1504
+ }
1505
+ }
1506
+ .peer-disabled\:cursor-not-allowed {
1507
+ &:is(:where(.peer):disabled ~ *) {
1508
+ cursor: not-allowed;
1509
+ }
1510
+ }
1511
+ .peer-disabled\:opacity-50 {
1512
+ &:is(:where(.peer):disabled ~ *) {
1513
+ opacity: 50%;
1514
+ }
1515
+ }
1516
+ .selection\:bg-primary {
1517
+ & *::selection {
1518
+ background-color: oklch(0.205 0 0);
1519
+ }
1520
+ &::selection {
1521
+ background-color: oklch(0.205 0 0);
1522
+ }
1523
+ }
1524
+ .selection\:text-primary-foreground {
1525
+ & *::selection {
1526
+ color: oklch(0.985 0 0);
1527
+ }
1528
+ &::selection {
1529
+ color: oklch(0.985 0 0);
1530
+ }
1531
+ }
1532
+ .file\:inline-flex {
1533
+ &::file-selector-button {
1534
+ display: inline-flex;
1535
+ }
1536
+ }
1537
+ .file\:h-7 {
1538
+ &::file-selector-button {
1539
+ height: calc(var(--spacing) * 7);
1540
+ }
1541
+ }
1542
+ .file\:border-0 {
1543
+ &::file-selector-button {
1544
+ border-style: var(--tw-border-style);
1545
+ border-width: 0px;
1546
+ }
1547
+ }
1548
+ .file\:bg-transparent {
1549
+ &::file-selector-button {
1550
+ background-color: transparent;
1551
+ }
1552
+ }
1553
+ .file\:text-sm {
1554
+ &::file-selector-button {
1555
+ font-size: var(--text-sm);
1556
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1557
+ }
1558
+ }
1559
+ .file\:font-medium {
1560
+ &::file-selector-button {
1561
+ --tw-font-weight: var(--font-weight-medium);
1562
+ font-weight: var(--font-weight-medium);
1563
+ }
1564
+ }
1565
+ .file\:text-foreground {
1566
+ &::file-selector-button {
1567
+ color: oklch(0.145 0 0);
1568
+ }
1569
+ }
1570
+ .placeholder\:text-muted-foreground {
1571
+ &::placeholder {
1572
+ color: oklch(0.556 0 0);
1573
+ }
1574
+ }
1575
+ .hover\:cursor-pointer {
1576
+ &:hover {
1577
+ @media (hover: hover) {
1578
+ cursor: pointer;
1579
+ }
1580
+ }
1581
+ }
1582
+ .hover\:bg-\[\#2A44D4\] {
1583
+ &:hover {
1584
+ @media (hover: hover) {
1585
+ background-color: #2A44D4;
1586
+ }
1587
+ }
1588
+ }
1589
+ .hover\:bg-\[\#EAECFB\] {
1590
+ &:hover {
1591
+ @media (hover: hover) {
1592
+ background-color: #EAECFB;
1593
+ }
1594
+ }
1595
+ }
1596
+ .hover\:bg-accent {
1597
+ &:hover {
1598
+ @media (hover: hover) {
1599
+ background-color: oklch(0.97 0 0);
1600
+ }
1601
+ }
1602
+ }
1603
+ .hover\:bg-destructive\/90 {
1604
+ &:hover {
1605
+ @media (hover: hover) {
1606
+ background-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 90%, transparent);
1607
+ }
1608
+ }
1609
+ }
1610
+ .hover\:bg-gray-50 {
1611
+ &:hover {
1612
+ @media (hover: hover) {
1613
+ background-color: var(--color-gray-50);
1614
+ }
1615
+ }
1616
+ }
1617
+ .hover\:bg-gray-100 {
1618
+ &:hover {
1619
+ @media (hover: hover) {
1620
+ background-color: var(--color-gray-100);
1621
+ }
1622
+ }
1623
+ }
1624
+ .hover\:bg-muted\/30 {
1625
+ &:hover {
1626
+ @media (hover: hover) {
1627
+ background-color: color-mix(in oklab, oklch(0.97 0 0) 30%, transparent);
1628
+ }
1629
+ }
1630
+ }
1631
+ .hover\:bg-muted\/50 {
1632
+ &:hover {
1633
+ @media (hover: hover) {
1634
+ background-color: color-mix(in oklab, oklch(0.97 0 0) 50%, transparent);
1635
+ }
1636
+ }
1637
+ }
1638
+ .hover\:bg-primary\/90 {
1639
+ &:hover {
1640
+ @media (hover: hover) {
1641
+ background-color: color-mix(in oklab, oklch(0.205 0 0) 90%, transparent);
1642
+ }
1643
+ }
1644
+ }
1645
+ .hover\:bg-red-200 {
1646
+ &:hover {
1647
+ @media (hover: hover) {
1648
+ background-color: var(--color-red-200);
1649
+ }
1650
+ }
1651
+ }
1652
+ .hover\:bg-secondary\/80 {
1653
+ &:hover {
1654
+ @media (hover: hover) {
1655
+ background-color: color-mix(in oklab, oklch(0.97 0 0) 80%, transparent);
1656
+ }
1657
+ }
1658
+ }
1659
+ .hover\:text-\[\#263DBF\] {
1660
+ &:hover {
1661
+ @media (hover: hover) {
1662
+ color: #263DBF;
1663
+ }
1664
+ }
1665
+ }
1666
+ .hover\:text-accent-foreground {
1667
+ &:hover {
1668
+ @media (hover: hover) {
1669
+ color: oklch(0.205 0 0);
1670
+ }
1671
+ }
1672
+ }
1673
+ .hover\:text-blue-600 {
1674
+ &:hover {
1675
+ @media (hover: hover) {
1676
+ color: var(--color-blue-600);
1677
+ }
1678
+ }
1679
+ }
1680
+ .hover\:text-gray-600 {
1681
+ &:hover {
1682
+ @media (hover: hover) {
1683
+ color: var(--color-gray-600);
1684
+ }
1685
+ }
1686
+ }
1687
+ .hover\:text-white {
1688
+ &:hover {
1689
+ @media (hover: hover) {
1690
+ color: var(--color-white);
1691
+ }
1692
+ }
1693
+ }
1694
+ .hover\:underline {
1695
+ &:hover {
1696
+ @media (hover: hover) {
1697
+ text-decoration-line: underline;
1698
+ }
1699
+ }
1700
+ }
1701
+ .focus\:bg-blue-50 {
1702
+ &:focus {
1703
+ background-color: var(--color-blue-50);
1704
+ }
1705
+ }
1706
+ .focus\:ring-2 {
1707
+ &:focus {
1708
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1709
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1710
+ }
1711
+ }
1712
+ .focus\:ring-blue-500 {
1713
+ &:focus {
1714
+ --tw-ring-color: var(--color-blue-500);
1715
+ }
1716
+ }
1717
+ .focus\:outline-none {
1718
+ &:focus {
1719
+ --tw-outline-style: none;
1720
+ outline-style: none;
1721
+ }
1722
+ }
1723
+ .focus-visible\:border-ring {
1724
+ &:focus-visible {
1725
+ border-color: oklch(0.708 0 0);
1726
+ }
1727
+ }
1728
+ .focus-visible\:ring-2 {
1729
+ &:focus-visible {
1730
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1731
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1732
+ }
1733
+ }
1734
+ .focus-visible\:ring-\[3px\] {
1735
+ &:focus-visible {
1736
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1737
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1738
+ }
1739
+ }
1740
+ .focus-visible\:ring-destructive\/20 {
1741
+ &:focus-visible {
1742
+ --tw-ring-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 20%, transparent);
1743
+ }
1744
+ }
1745
+ .focus-visible\:ring-ring {
1746
+ &:focus-visible {
1747
+ --tw-ring-color: oklch(0.708 0 0);
1748
+ }
1749
+ }
1750
+ .focus-visible\:ring-ring\/50 {
1751
+ &:focus-visible {
1752
+ --tw-ring-color: color-mix(in oklab, oklch(0.708 0 0) 50%, transparent);
1753
+ }
1754
+ }
1755
+ .focus-visible\:ring-offset-2 {
1756
+ &:focus-visible {
1757
+ --tw-ring-offset-width: 2px;
1758
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1759
+ }
1760
+ }
1761
+ .focus-visible\:outline-none {
1762
+ &:focus-visible {
1763
+ --tw-outline-style: none;
1764
+ outline-style: none;
1765
+ }
1766
+ }
1767
+ .disabled\:pointer-events-none {
1768
+ &:disabled {
1769
+ pointer-events: none;
1770
+ }
1771
+ }
1772
+ .disabled\:cursor-not-allowed {
1773
+ &:disabled {
1774
+ cursor: not-allowed;
1775
+ }
1776
+ }
1777
+ .disabled\:opacity-50 {
1778
+ &:disabled {
1779
+ opacity: 50%;
1780
+ }
1781
+ }
1782
+ .has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\] {
1783
+ &:has(*[data-slot="card-action"]) {
1784
+ grid-template-columns: 1fr auto;
1785
+ }
1786
+ }
1787
+ .has-\[\>svg\]\:px-2\.5 {
1788
+ &:has(>svg) {
1789
+ padding-inline: calc(var(--spacing) * 2.5);
1790
+ }
1791
+ }
1792
+ .has-\[\>svg\]\:px-3 {
1793
+ &:has(>svg) {
1794
+ padding-inline: calc(var(--spacing) * 3);
1795
+ }
1796
+ }
1797
+ .has-\[\>svg\]\:px-4 {
1798
+ &:has(>svg) {
1799
+ padding-inline: calc(var(--spacing) * 4);
1800
+ }
1801
+ }
1802
+ .aria-invalid\:border-destructive {
1803
+ &[aria-invalid="true"] {
1804
+ border-color: oklch(0.577 0.245 27.325);
1805
+ }
1806
+ }
1807
+ .aria-invalid\:ring-destructive\/20 {
1808
+ &[aria-invalid="true"] {
1809
+ --tw-ring-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 20%, transparent);
1810
+ }
1811
+ }
1812
+ .data-\[orientation\=horizontal\]\:h-px {
1813
+ &[data-orientation="horizontal"] {
1814
+ height: 1px;
1815
+ }
1816
+ }
1817
+ .data-\[orientation\=horizontal\]\:w-full {
1818
+ &[data-orientation="horizontal"] {
1819
+ width: 100%;
1820
+ }
1821
+ }
1822
+ .data-\[orientation\=vertical\]\:h-full {
1823
+ &[data-orientation="vertical"] {
1824
+ height: 100%;
1825
+ }
1826
+ }
1827
+ .data-\[orientation\=vertical\]\:w-px {
1828
+ &[data-orientation="vertical"] {
1829
+ width: 1px;
1830
+ }
1831
+ }
1832
+ .data-\[side\=bottom\]\:slide-in-from-top-2 {
1833
+ &[data-side="bottom"] {
1834
+ --tw-enter-translate-y: -0.5rem;
1835
+ }
1836
+ }
1837
+ .data-\[side\=left\]\:slide-in-from-right-2 {
1838
+ &[data-side="left"] {
1839
+ --tw-enter-translate-x: 0.5rem;
1840
+ }
1841
+ }
1842
+ .data-\[side\=right\]\:slide-in-from-left-2 {
1843
+ &[data-side="right"] {
1844
+ --tw-enter-translate-x: -0.5rem;
1845
+ }
1846
+ }
1847
+ .data-\[side\=top\]\:slide-in-from-bottom-2 {
1848
+ &[data-side="top"] {
1849
+ --tw-enter-translate-y: 0.5rem;
1850
+ }
1851
+ }
1852
+ .data-\[state\=active\]\:rounded-md {
1853
+ &[data-state="active"] {
1854
+ border-radius: calc(0.625rem - 2px);
1855
+ }
1856
+ }
1857
+ .data-\[state\=active\]\:border {
1858
+ &[data-state="active"] {
1859
+ border-style: var(--tw-border-style);
1860
+ border-width: 1px;
1861
+ }
1862
+ }
1863
+ .data-\[state\=active\]\:border-solid {
1864
+ &[data-state="active"] {
1865
+ --tw-border-style: solid;
1866
+ border-style: solid;
1867
+ }
1868
+ }
1869
+ .data-\[state\=active\]\:border-\[\#2A44D4\] {
1870
+ &[data-state="active"] {
1871
+ border-color: #2A44D4;
1872
+ }
1873
+ }
1874
+ .data-\[state\=active\]\:bg-\[\#EAECFB\] {
1875
+ &[data-state="active"] {
1876
+ background-color: #EAECFB;
1877
+ }
1878
+ }
1879
+ .data-\[state\=active\]\:bg-background {
1880
+ &[data-state="active"] {
1881
+ background-color: oklch(1 0 0);
1882
+ }
1883
+ }
1884
+ .data-\[state\=active\]\:text-\[\#263DBF\] {
1885
+ &[data-state="active"] {
1886
+ color: #263DBF;
1887
+ }
1888
+ }
1889
+ .data-\[state\=active\]\:text-foreground {
1890
+ &[data-state="active"] {
1891
+ color: oklch(0.145 0 0);
1892
+ }
1893
+ }
1894
+ .data-\[state\=active\]\:shadow {
1895
+ &[data-state="active"] {
1896
+ --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));
1897
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1898
+ }
1899
+ }
1900
+ .data-\[state\=active\]\:shadow-none {
1901
+ &[data-state="active"] {
1902
+ --tw-shadow: 0 0 #0000;
1903
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1904
+ }
1905
+ }
1906
+ .data-\[state\=checked\]\:border-primary {
1907
+ &[data-state="checked"] {
1908
+ border-color: oklch(0.205 0 0);
1909
+ }
1910
+ }
1911
+ .data-\[state\=checked\]\:bg-primary {
1912
+ &[data-state="checked"] {
1913
+ background-color: oklch(0.205 0 0);
1914
+ }
1915
+ }
1916
+ .data-\[state\=checked\]\:text-primary-foreground {
1917
+ &[data-state="checked"] {
1918
+ color: oklch(0.985 0 0);
1919
+ }
1920
+ }
1921
+ .data-\[state\=closed\]\:animate-out {
1922
+ &[data-state="closed"] {
1923
+ animation-name: exit;
1924
+ animation-duration: 150ms;
1925
+ --tw-exit-opacity: initial;
1926
+ --tw-exit-scale: initial;
1927
+ --tw-exit-rotate: initial;
1928
+ --tw-exit-translate-x: initial;
1929
+ --tw-exit-translate-y: initial;
1930
+ }
1931
+ }
1932
+ .data-\[state\=closed\]\:fade-out-0 {
1933
+ &[data-state="closed"] {
1934
+ --tw-exit-opacity: 0;
1935
+ }
1936
+ }
1937
+ .data-\[state\=closed\]\:zoom-out-95 {
1938
+ &[data-state="closed"] {
1939
+ --tw-exit-scale: .95;
1940
+ }
1941
+ }
1942
+ .data-\[state\=open\]\:animate-in {
1943
+ &[data-state="open"] {
1944
+ animation-name: enter;
1945
+ animation-duration: 150ms;
1946
+ --tw-enter-opacity: initial;
1947
+ --tw-enter-scale: initial;
1948
+ --tw-enter-rotate: initial;
1949
+ --tw-enter-translate-x: initial;
1950
+ --tw-enter-translate-y: initial;
1951
+ }
1952
+ }
1953
+ .data-\[state\=open\]\:fade-in-0 {
1954
+ &[data-state="open"] {
1955
+ --tw-enter-opacity: 0;
1956
+ }
1957
+ }
1958
+ .data-\[state\=open\]\:zoom-in-95 {
1959
+ &[data-state="open"] {
1960
+ --tw-enter-scale: .95;
1961
+ }
1962
+ }
1963
+ .data-\[state\=selected\]\:bg-muted {
1964
+ &[data-state="selected"] {
1965
+ background-color: oklch(0.97 0 0);
1966
+ }
1967
+ }
1968
+ .md\:text-sm {
1969
+ @media (width >= 48rem) {
1970
+ font-size: var(--text-sm);
1971
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1972
+ }
1973
+ }
1974
+ .dark\:border-input {
1975
+ @media (prefers-color-scheme: dark) {
1976
+ border-color: oklch(0.922 0 0);
1977
+ }
1978
+ }
1979
+ .dark\:bg-destructive\/60 {
1980
+ @media (prefers-color-scheme: dark) {
1981
+ background-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 60%, transparent);
1982
+ }
1983
+ }
1984
+ .dark\:bg-input\/30 {
1985
+ @media (prefers-color-scheme: dark) {
1986
+ background-color: color-mix(in oklab, oklch(0.922 0 0) 30%, transparent);
1987
+ }
1988
+ }
1989
+ .dark\:hover\:bg-accent\/50 {
1990
+ @media (prefers-color-scheme: dark) {
1991
+ &:hover {
1992
+ @media (hover: hover) {
1993
+ background-color: color-mix(in oklab, oklch(0.97 0 0) 50%, transparent);
1994
+ }
1995
+ }
1996
+ }
1997
+ }
1998
+ .dark\:hover\:bg-input\/50 {
1999
+ @media (prefers-color-scheme: dark) {
2000
+ &:hover {
2001
+ @media (hover: hover) {
2002
+ background-color: color-mix(in oklab, oklch(0.922 0 0) 50%, transparent);
2003
+ }
2004
+ }
2005
+ }
2006
+ }
2007
+ .dark\:focus-visible\:ring-destructive\/40 {
2008
+ @media (prefers-color-scheme: dark) {
2009
+ &:focus-visible {
2010
+ --tw-ring-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 40%, transparent);
2011
+ }
2012
+ }
2013
+ }
2014
+ .dark\:aria-invalid\:ring-destructive\/40 {
2015
+ @media (prefers-color-scheme: dark) {
2016
+ &[aria-invalid="true"] {
2017
+ --tw-ring-color: color-mix(in oklab, oklch(0.577 0.245 27.325) 40%, transparent);
2018
+ }
2019
+ }
2020
+ }
2021
+ .dark\:data-\[state\=checked\]\:bg-primary {
2022
+ @media (prefers-color-scheme: dark) {
2023
+ &[data-state="checked"] {
2024
+ background-color: oklch(0.205 0 0);
2025
+ }
2026
+ }
2027
+ }
2028
+ .\[\&_\.recharts-cartesian-axis-tick_text\]\:fill-muted-foreground {
2029
+ & .recharts-cartesian-axis-tick text {
2030
+ fill: oklch(0.556 0 0);
2031
+ }
2032
+ }
2033
+ .\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 {
2034
+ & .recharts-cartesian-grid line[stroke='#ccc'] {
2035
+ stroke: color-mix(in oklab, oklch(0.922 0 0) 50%, transparent);
2036
+ }
2037
+ }
2038
+ .\[\&_\.recharts-curve\.recharts-tooltip-cursor\]\:stroke-border {
2039
+ & .recharts-curve.recharts-tooltip-cursor {
2040
+ stroke: oklch(0.922 0 0);
2041
+ }
2042
+ }
2043
+ .\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent {
2044
+ & .recharts-dot[stroke='#fff'] {
2045
+ stroke: transparent;
2046
+ }
2047
+ }
2048
+ .\[\&_\.recharts-layer\]\:outline-hidden {
2049
+ & .recharts-layer {
2050
+ --tw-outline-style: none;
2051
+ outline-style: none;
2052
+ @media (forced-colors: active) {
2053
+ outline: 2px solid transparent;
2054
+ outline-offset: 2px;
2055
+ }
2056
+ }
2057
+ }
2058
+ .\[\&_\.recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:stroke-border {
2059
+ & .recharts-polar-grid [stroke='#ccc'] {
2060
+ stroke: oklch(0.922 0 0);
2061
+ }
2062
+ }
2063
+ .\[\&_\.recharts-radial-bar-background-sector\]\:fill-muted {
2064
+ & .recharts-radial-bar-background-sector {
2065
+ fill: oklch(0.97 0 0);
2066
+ }
2067
+ }
2068
+ .\[\&_\.recharts-rectangle\.recharts-tooltip-cursor\]\:fill-muted {
2069
+ & .recharts-rectangle.recharts-tooltip-cursor {
2070
+ fill: oklch(0.97 0 0);
2071
+ }
2072
+ }
2073
+ .\[\&_\.recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:stroke-border {
2074
+ & .recharts-reference-line [stroke='#ccc'] {
2075
+ stroke: oklch(0.922 0 0);
2076
+ }
2077
+ }
2078
+ .\[\&_\.recharts-sector\]\:outline-hidden {
2079
+ & .recharts-sector {
2080
+ --tw-outline-style: none;
2081
+ outline-style: none;
2082
+ @media (forced-colors: active) {
2083
+ outline: 2px solid transparent;
2084
+ outline-offset: 2px;
2085
+ }
2086
+ }
2087
+ }
2088
+ .\[\&_\.recharts-sector\[stroke\=\'\#fff\'\]\]\:stroke-transparent {
2089
+ & .recharts-sector[stroke='#fff'] {
2090
+ stroke: transparent;
2091
+ }
2092
+ }
2093
+ .\[\&_\.recharts-surface\]\:outline-hidden {
2094
+ & .recharts-surface {
2095
+ --tw-outline-style: none;
2096
+ outline-style: none;
2097
+ @media (forced-colors: active) {
2098
+ outline: 2px solid transparent;
2099
+ outline-offset: 2px;
2100
+ }
2101
+ }
2102
+ }
2103
+ .\[\&_svg\]\:pointer-events-none {
2104
+ & svg {
2105
+ pointer-events: none;
2106
+ }
2107
+ }
2108
+ .\[\&_svg\]\:shrink-0 {
2109
+ & svg {
2110
+ flex-shrink: 0;
2111
+ }
2112
+ }
2113
+ .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 {
2114
+ & svg:not([class*='size-']) {
2115
+ width: calc(var(--spacing) * 4);
2116
+ height: calc(var(--spacing) * 4);
2117
+ }
2118
+ }
2119
+ .\[\&_tr\]\:border-b {
2120
+ & tr {
2121
+ border-bottom-style: var(--tw-border-style);
2122
+ border-bottom-width: 1px;
2123
+ }
2124
+ }
2125
+ .\[\&_tr\:last-child\]\:border-0 {
2126
+ & tr:last-child {
2127
+ border-style: var(--tw-border-style);
2128
+ border-width: 0px;
2129
+ }
2130
+ }
2131
+ .\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0 {
2132
+ &:has([role=checkbox]) {
2133
+ padding-right: calc(var(--spacing) * 0);
2134
+ }
2135
+ }
2136
+ .\[\.border-b\]\:pb-6 {
2137
+ &:is(.border-b) {
2138
+ padding-bottom: calc(var(--spacing) * 6);
2139
+ }
2140
+ }
2141
+ .\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] {
2142
+ &>[role=checkbox] {
2143
+ --tw-translate-y: 2px;
2144
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2145
+ }
2146
+ }
2147
+ .\[\&\>svg\]\:h-2\.5 {
2148
+ &>svg {
2149
+ height: calc(var(--spacing) * 2.5);
2150
+ }
2151
+ }
2152
+ .\[\&\>svg\]\:h-3 {
2153
+ &>svg {
2154
+ height: calc(var(--spacing) * 3);
2155
+ }
2156
+ }
2157
+ .\[\&\>svg\]\:w-2\.5 {
2158
+ &>svg {
2159
+ width: calc(var(--spacing) * 2.5);
2160
+ }
2161
+ }
2162
+ .\[\&\>svg\]\:w-3 {
2163
+ &>svg {
2164
+ width: calc(var(--spacing) * 3);
2165
+ }
2166
+ }
2167
+ .\[\&\>svg\]\:text-muted-foreground {
2168
+ &>svg {
2169
+ color: oklch(0.556 0 0);
2170
+ }
2171
+ }
2172
+ .\[\&\>tr\]\:last\:border-b-0 {
2173
+ &>tr {
2174
+ &:last-child {
2175
+ border-bottom-style: var(--tw-border-style);
2176
+ border-bottom-width: 0px;
2177
+ }
2178
+ }
2179
+ }
2180
+ }
2181
+ @keyframes enter {
2182
+ from {
2183
+ opacity: var(--tw-enter-opacity, 1);
2184
+ transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
2185
+ }
2186
+ }
2187
+ @keyframes exit {
2188
+ to {
2189
+ opacity: var(--tw-exit-opacity, 1);
2190
+ transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
2191
+ }
2192
+ }
2193
+ @property --tw-translate-x {
2194
+ syntax: "*";
2195
+ inherits: false;
2196
+ initial-value: 0;
2197
+ }
2198
+ @property --tw-translate-y {
2199
+ syntax: "*";
2200
+ inherits: false;
2201
+ initial-value: 0;
2202
+ }
2203
+ @property --tw-translate-z {
2204
+ syntax: "*";
2205
+ inherits: false;
2206
+ initial-value: 0;
2207
+ }
2208
+ @property --tw-rotate-x {
2209
+ syntax: "*";
2210
+ inherits: false;
2211
+ }
2212
+ @property --tw-rotate-y {
2213
+ syntax: "*";
2214
+ inherits: false;
2215
+ }
2216
+ @property --tw-rotate-z {
2217
+ syntax: "*";
2218
+ inherits: false;
2219
+ }
2220
+ @property --tw-skew-x {
2221
+ syntax: "*";
2222
+ inherits: false;
2223
+ }
2224
+ @property --tw-skew-y {
2225
+ syntax: "*";
2226
+ inherits: false;
2227
+ }
2228
+ @property --tw-space-y-reverse {
2229
+ syntax: "*";
2230
+ inherits: false;
2231
+ initial-value: 0;
2232
+ }
2233
+ @property --tw-space-x-reverse {
2234
+ syntax: "*";
2235
+ inherits: false;
2236
+ initial-value: 0;
2237
+ }
2238
+ @property --tw-border-style {
2239
+ syntax: "*";
2240
+ inherits: false;
2241
+ initial-value: solid;
2242
+ }
2243
+ @property --tw-leading {
2244
+ syntax: "*";
2245
+ inherits: false;
2246
+ }
2247
+ @property --tw-font-weight {
2248
+ syntax: "*";
2249
+ inherits: false;
2250
+ }
2251
+ @property --tw-ordinal {
2252
+ syntax: "*";
2253
+ inherits: false;
2254
+ }
2255
+ @property --tw-slashed-zero {
2256
+ syntax: "*";
2257
+ inherits: false;
2258
+ }
2259
+ @property --tw-numeric-figure {
2260
+ syntax: "*";
2261
+ inherits: false;
2262
+ }
2263
+ @property --tw-numeric-spacing {
2264
+ syntax: "*";
2265
+ inherits: false;
2266
+ }
2267
+ @property --tw-numeric-fraction {
2268
+ syntax: "*";
2269
+ inherits: false;
2270
+ }
2271
+ @property --tw-shadow {
2272
+ syntax: "*";
2273
+ inherits: false;
2274
+ initial-value: 0 0 #0000;
2275
+ }
2276
+ @property --tw-shadow-color {
2277
+ syntax: "*";
2278
+ inherits: false;
2279
+ }
2280
+ @property --tw-shadow-alpha {
2281
+ syntax: "<percentage>";
2282
+ inherits: false;
2283
+ initial-value: 100%;
2284
+ }
2285
+ @property --tw-inset-shadow {
2286
+ syntax: "*";
2287
+ inherits: false;
2288
+ initial-value: 0 0 #0000;
2289
+ }
2290
+ @property --tw-inset-shadow-color {
2291
+ syntax: "*";
2292
+ inherits: false;
2293
+ }
2294
+ @property --tw-inset-shadow-alpha {
2295
+ syntax: "<percentage>";
2296
+ inherits: false;
2297
+ initial-value: 100%;
2298
+ }
2299
+ @property --tw-ring-color {
2300
+ syntax: "*";
2301
+ inherits: false;
2302
+ }
2303
+ @property --tw-ring-shadow {
2304
+ syntax: "*";
2305
+ inherits: false;
2306
+ initial-value: 0 0 #0000;
2307
+ }
2308
+ @property --tw-inset-ring-color {
2309
+ syntax: "*";
2310
+ inherits: false;
2311
+ }
2312
+ @property --tw-inset-ring-shadow {
2313
+ syntax: "*";
2314
+ inherits: false;
2315
+ initial-value: 0 0 #0000;
2316
+ }
2317
+ @property --tw-ring-inset {
2318
+ syntax: "*";
2319
+ inherits: false;
2320
+ }
2321
+ @property --tw-ring-offset-width {
2322
+ syntax: "<length>";
2323
+ inherits: false;
2324
+ initial-value: 0px;
2325
+ }
2326
+ @property --tw-ring-offset-color {
2327
+ syntax: "*";
2328
+ inherits: false;
2329
+ initial-value: #fff;
2330
+ }
2331
+ @property --tw-ring-offset-shadow {
2332
+ syntax: "*";
2333
+ inherits: false;
2334
+ initial-value: 0 0 #0000;
2335
+ }
2336
+ @property --tw-outline-style {
2337
+ syntax: "*";
2338
+ inherits: false;
2339
+ initial-value: solid;
2340
+ }
2341
+ @property --tw-blur {
2342
+ syntax: "*";
2343
+ inherits: false;
2344
+ }
2345
+ @property --tw-brightness {
2346
+ syntax: "*";
2347
+ inherits: false;
2348
+ }
2349
+ @property --tw-contrast {
2350
+ syntax: "*";
2351
+ inherits: false;
2352
+ }
2353
+ @property --tw-grayscale {
2354
+ syntax: "*";
2355
+ inherits: false;
2356
+ }
2357
+ @property --tw-hue-rotate {
2358
+ syntax: "*";
2359
+ inherits: false;
2360
+ }
2361
+ @property --tw-invert {
2362
+ syntax: "*";
2363
+ inherits: false;
2364
+ }
2365
+ @property --tw-opacity {
2366
+ syntax: "*";
2367
+ inherits: false;
2368
+ }
2369
+ @property --tw-saturate {
2370
+ syntax: "*";
2371
+ inherits: false;
2372
+ }
2373
+ @property --tw-sepia {
2374
+ syntax: "*";
2375
+ inherits: false;
2376
+ }
2377
+ @property --tw-drop-shadow {
2378
+ syntax: "*";
2379
+ inherits: false;
2380
+ }
2381
+ @property --tw-drop-shadow-color {
2382
+ syntax: "*";
2383
+ inherits: false;
2384
+ }
2385
+ @property --tw-drop-shadow-alpha {
2386
+ syntax: "<percentage>";
2387
+ inherits: false;
2388
+ initial-value: 100%;
2389
+ }
2390
+ @property --tw-drop-shadow-size {
2391
+ syntax: "*";
2392
+ inherits: false;
2393
+ }
2394
+ @property --tw-duration {
2395
+ syntax: "*";
2396
+ inherits: false;
2397
+ }
2398
+ @property --tw-ease {
2399
+ syntax: "*";
2400
+ inherits: false;
2401
+ }
2402
+ @keyframes spin {
2403
+ to {
2404
+ transform: rotate(360deg);
2405
+ }
2406
+ }
2407
+ @keyframes pulse {
2408
+ 50% {
2409
+ opacity: 0.5;
2410
+ }
2411
+ }
2412
+ @layer properties {
2413
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
2414
+ *, ::before, ::after, ::backdrop {
2415
+ --tw-translate-x: 0;
2416
+ --tw-translate-y: 0;
2417
+ --tw-translate-z: 0;
2418
+ --tw-rotate-x: initial;
2419
+ --tw-rotate-y: initial;
2420
+ --tw-rotate-z: initial;
2421
+ --tw-skew-x: initial;
2422
+ --tw-skew-y: initial;
2423
+ --tw-space-y-reverse: 0;
2424
+ --tw-space-x-reverse: 0;
2425
+ --tw-border-style: solid;
2426
+ --tw-leading: initial;
2427
+ --tw-font-weight: initial;
2428
+ --tw-ordinal: initial;
2429
+ --tw-slashed-zero: initial;
2430
+ --tw-numeric-figure: initial;
2431
+ --tw-numeric-spacing: initial;
2432
+ --tw-numeric-fraction: initial;
2433
+ --tw-shadow: 0 0 #0000;
2434
+ --tw-shadow-color: initial;
2435
+ --tw-shadow-alpha: 100%;
2436
+ --tw-inset-shadow: 0 0 #0000;
2437
+ --tw-inset-shadow-color: initial;
2438
+ --tw-inset-shadow-alpha: 100%;
2439
+ --tw-ring-color: initial;
2440
+ --tw-ring-shadow: 0 0 #0000;
2441
+ --tw-inset-ring-color: initial;
2442
+ --tw-inset-ring-shadow: 0 0 #0000;
2443
+ --tw-ring-inset: initial;
2444
+ --tw-ring-offset-width: 0px;
2445
+ --tw-ring-offset-color: #fff;
2446
+ --tw-ring-offset-shadow: 0 0 #0000;
2447
+ --tw-outline-style: solid;
2448
+ --tw-blur: initial;
2449
+ --tw-brightness: initial;
2450
+ --tw-contrast: initial;
2451
+ --tw-grayscale: initial;
2452
+ --tw-hue-rotate: initial;
2453
+ --tw-invert: initial;
2454
+ --tw-opacity: initial;
2455
+ --tw-saturate: initial;
2456
+ --tw-sepia: initial;
2457
+ --tw-drop-shadow: initial;
2458
+ --tw-drop-shadow-color: initial;
2459
+ --tw-drop-shadow-alpha: 100%;
2460
+ --tw-drop-shadow-size: initial;
2461
+ --tw-duration: initial;
2462
+ --tw-ease: initial;
2463
+ }
2464
+ }
2465
+ }