@starlein/paperclip-plugin-company-wizard 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (248) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +748 -0
  3. package/dist/manifest.js +91 -0
  4. package/dist/manifest.js.map +7 -0
  5. package/dist/ui/index.css +1647 -0
  6. package/dist/ui/index.css.map +7 -0
  7. package/dist/ui/index.js +6738 -0
  8. package/dist/ui/index.js.map +7 -0
  9. package/dist/worker.js +8247 -0
  10. package/dist/worker.js.map +7 -0
  11. package/package.json +73 -0
  12. package/templates/ai-wizard/config-format.md +21 -0
  13. package/templates/ai-wizard/interview-system.md +67 -0
  14. package/templates/ai-wizard/messages.json +6 -0
  15. package/templates/ai-wizard/single-shot-system.md +42 -0
  16. package/templates/bootstrap-instructions.md +30 -0
  17. package/templates/modules/accessibility/agents/engineer/skills/accessibility-audit.fallback.md +18 -0
  18. package/templates/modules/accessibility/agents/ui-designer/skills/accessibility-audit.fallback.md +18 -0
  19. package/templates/modules/accessibility/module.meta.json +22 -0
  20. package/templates/modules/accessibility/skills/accessibility-audit.md +27 -0
  21. package/templates/modules/architecture-plan/agents/ceo/skills/architecture-plan.fallback.md +16 -0
  22. package/templates/modules/architecture-plan/agents/engineer/skills/design-system.fallback.md +17 -0
  23. package/templates/modules/architecture-plan/agents/ui-designer/skills/architecture-plan.md +19 -0
  24. package/templates/modules/architecture-plan/agents/ui-designer/skills/design-system.md +24 -0
  25. package/templates/modules/architecture-plan/docs/architecture-template.md +38 -0
  26. package/templates/modules/architecture-plan/docs/design-system-template.md +61 -0
  27. package/templates/modules/architecture-plan/module.meta.json +37 -0
  28. package/templates/modules/architecture-plan/skills/architecture-plan.md +23 -0
  29. package/templates/modules/auto-assign/README.md +23 -0
  30. package/templates/modules/auto-assign/agents/ceo/heartbeat-section.md +9 -0
  31. package/templates/modules/auto-assign/agents/ceo/skills/auto-assign.fallback.md +18 -0
  32. package/templates/modules/auto-assign/agents/product-owner/heartbeat-section.md +10 -0
  33. package/templates/modules/auto-assign/module.meta.json +27 -0
  34. package/templates/modules/auto-assign/skills/auto-assign.md +23 -0
  35. package/templates/modules/backlog/README.md +26 -0
  36. package/templates/modules/backlog/agents/ceo/heartbeat-section.md +10 -0
  37. package/templates/modules/backlog/agents/ceo/skills/backlog-health.fallback.md +20 -0
  38. package/templates/modules/backlog/agents/product-owner/heartbeat-section.md +15 -0
  39. package/templates/modules/backlog/docs/backlog-process.md +62 -0
  40. package/templates/modules/backlog/docs/backlog-template.md +53 -0
  41. package/templates/modules/backlog/module.meta.json +31 -0
  42. package/templates/modules/backlog/skills/backlog-health.md +47 -0
  43. package/templates/modules/brand-identity/agents/ceo/skills/brand-identity.fallback.md +19 -0
  44. package/templates/modules/brand-identity/agents/cmo/skills/brand-identity.fallback.md +19 -0
  45. package/templates/modules/brand-identity/docs/brand-identity-template.md +43 -0
  46. package/templates/modules/brand-identity/module.meta.json +22 -0
  47. package/templates/modules/brand-identity/skills/brand-identity.md +30 -0
  48. package/templates/modules/build-api/module.meta.json +118 -0
  49. package/templates/modules/build-api/skills/api-design.md +43 -0
  50. package/templates/modules/ci-cd/agents/devops/skills/ci-cd.md +28 -0
  51. package/templates/modules/ci-cd/agents/engineer/skills/ci-cd.fallback.md +18 -0
  52. package/templates/modules/ci-cd/docs/ci-cd-template.md +42 -0
  53. package/templates/modules/ci-cd/module.meta.json +105 -0
  54. package/templates/modules/ci-cd/skills/ci-cd.md +26 -0
  55. package/templates/modules/codebase-onboarding/agents/ceo/skills/codebase-audit.fallback.md +19 -0
  56. package/templates/modules/codebase-onboarding/module.meta.json +24 -0
  57. package/templates/modules/codebase-onboarding/skills/codebase-audit.md +45 -0
  58. package/templates/modules/competitive-intel/agents/ceo/skills/competitive-tracking.fallback.md +17 -0
  59. package/templates/modules/competitive-intel/agents/cmo/skills/competitive-tracking.fallback.md +17 -0
  60. package/templates/modules/competitive-intel/agents/customer-success/skills/competitive-tracking.md +25 -0
  61. package/templates/modules/competitive-intel/module.meta.json +23 -0
  62. package/templates/modules/competitive-intel/skills/competitive-tracking.md +27 -0
  63. package/templates/modules/dependency-management/agents/engineer/skills/dependency-audit.fallback.md +18 -0
  64. package/templates/modules/dependency-management/module.meta.json +25 -0
  65. package/templates/modules/dependency-management/skills/dependency-audit.md +43 -0
  66. package/templates/modules/documentation/agents/ceo/skills/project-docs.fallback.md +16 -0
  67. package/templates/modules/documentation/agents/engineer/skills/project-docs.fallback.md +16 -0
  68. package/templates/modules/documentation/module.meta.json +22 -0
  69. package/templates/modules/documentation/skills/project-docs.md +25 -0
  70. package/templates/modules/game-design/agents/ceo/skills/game-design.fallback.md +17 -0
  71. package/templates/modules/game-design/agents/game-designer/skills/game-design.md +51 -0
  72. package/templates/modules/game-design/docs/engine-phaser.md +310 -0
  73. package/templates/modules/game-design/docs/engine-pixijs.md +289 -0
  74. package/templates/modules/game-design/docs/engine-threejs.md +304 -0
  75. package/templates/modules/game-design/docs/gdd-template.md +72 -0
  76. package/templates/modules/game-design/module.meta.json +22 -0
  77. package/templates/modules/game-design/skills/game-design.md +41 -0
  78. package/templates/modules/github-repo/README.md +23 -0
  79. package/templates/modules/github-repo/agents/engineer/skills/git-workflow.md +23 -0
  80. package/templates/modules/github-repo/docs/git-workflow.md +50 -0
  81. package/templates/modules/github-repo/module.meta.json +12 -0
  82. package/templates/modules/hiring-review/agents/ceo/skills/hiring-review.fallback.md +17 -0
  83. package/templates/modules/hiring-review/module.meta.json +21 -0
  84. package/templates/modules/hiring-review/skills/hiring-review.md +24 -0
  85. package/templates/modules/launch-mvp/module.meta.json +86 -0
  86. package/templates/modules/market-analysis/agents/ceo/skills/market-analysis.fallback.md +17 -0
  87. package/templates/modules/market-analysis/agents/cmo/skills/market-analysis.fallback.md +19 -0
  88. package/templates/modules/market-analysis/agents/product-owner/skills/market-analysis.fallback.md +18 -0
  89. package/templates/modules/market-analysis/agents/ux-researcher/skills/market-analysis.md +23 -0
  90. package/templates/modules/market-analysis/docs/market-analysis-template.md +32 -0
  91. package/templates/modules/market-analysis/module.meta.json +23 -0
  92. package/templates/modules/market-analysis/skills/market-analysis.md +21 -0
  93. package/templates/modules/monitoring/agents/devops/skills/monitoring.md +23 -0
  94. package/templates/modules/monitoring/agents/engineer/skills/monitoring.fallback.md +18 -0
  95. package/templates/modules/monitoring/docs/monitoring-template.md +46 -0
  96. package/templates/modules/monitoring/module.meta.json +24 -0
  97. package/templates/modules/monitoring/skills/monitoring.md +20 -0
  98. package/templates/modules/pr-review/README.md +43 -0
  99. package/templates/modules/pr-review/agents/code-reviewer/skills/code-review.md +29 -0
  100. package/templates/modules/pr-review/agents/devops/skills/infra-review.md +29 -0
  101. package/templates/modules/pr-review/agents/engineer/skills/pr-workflow.md +24 -0
  102. package/templates/modules/pr-review/agents/product-owner/skills/product-review.md +27 -0
  103. package/templates/modules/pr-review/agents/qa/skills/qa-review.md +29 -0
  104. package/templates/modules/pr-review/agents/ui-designer/skills/design-review.md +29 -0
  105. package/templates/modules/pr-review/agents/ux-researcher/skills/ux-review.md +29 -0
  106. package/templates/modules/pr-review/docs/pr-conventions.md +78 -0
  107. package/templates/modules/pr-review/module.meta.json +24 -0
  108. package/templates/modules/release-management/agents/engineer/skills/release-process.fallback.md +18 -0
  109. package/templates/modules/release-management/module.meta.json +25 -0
  110. package/templates/modules/release-management/skills/release-process.md +45 -0
  111. package/templates/modules/security-audit/agents/devops/skills/security-review.fallback.md +17 -0
  112. package/templates/modules/security-audit/agents/devops/skills/threat-model.fallback.md +17 -0
  113. package/templates/modules/security-audit/agents/engineer/skills/security-review.fallback.md +17 -0
  114. package/templates/modules/security-audit/agents/engineer/skills/threat-model.fallback.md +17 -0
  115. package/templates/modules/security-audit/module.meta.json +36 -0
  116. package/templates/modules/security-audit/skills/security-review.md +25 -0
  117. package/templates/modules/security-audit/skills/threat-model.md +22 -0
  118. package/templates/modules/stall-detection/README.md +27 -0
  119. package/templates/modules/stall-detection/agents/ceo/heartbeat-section.md +12 -0
  120. package/templates/modules/stall-detection/agents/ceo/skills/stall-detection.md +21 -0
  121. package/templates/modules/stall-detection/module.meta.json +15 -0
  122. package/templates/modules/tech-stack/agents/ceo/skills/tech-stack.fallback.md +16 -0
  123. package/templates/modules/tech-stack/docs/tech-stack-template.md +28 -0
  124. package/templates/modules/tech-stack/module.meta.json +21 -0
  125. package/templates/modules/tech-stack/skills/tech-stack.md +25 -0
  126. package/templates/modules/triage/agents/ceo/skills/issue-triage.fallback.md +19 -0
  127. package/templates/modules/triage/module.meta.json +25 -0
  128. package/templates/modules/triage/skills/issue-triage.md +42 -0
  129. package/templates/modules/user-testing/agents/ceo/skills/user-testing.fallback.md +17 -0
  130. package/templates/modules/user-testing/agents/product-owner/skills/user-testing.fallback.md +17 -0
  131. package/templates/modules/user-testing/agents/qa/skills/user-testing.md +30 -0
  132. package/templates/modules/user-testing/agents/ux-researcher/skills/user-testing.fallback.md +18 -0
  133. package/templates/modules/user-testing/docs/user-testing-template.md +37 -0
  134. package/templates/modules/user-testing/module.meta.json +23 -0
  135. package/templates/modules/user-testing/skills/user-testing.md +27 -0
  136. package/templates/modules/vision-workshop/agents/ceo/skills/vision-workshop.md +23 -0
  137. package/templates/modules/vision-workshop/agents/ux-researcher/skills/vision-workshop.md +19 -0
  138. package/templates/modules/vision-workshop/docs/vision-template.md +28 -0
  139. package/templates/modules/vision-workshop/module.meta.json +12 -0
  140. package/templates/modules/website-relaunch/agents/ui-designer/skills/site-audit.md +65 -0
  141. package/templates/modules/website-relaunch/module.meta.json +168 -0
  142. package/templates/modules/website-relaunch/skills/design-ingestion.md +111 -0
  143. package/templates/modules/website-relaunch/skills/site-audit.md +54 -0
  144. package/templates/presets/build-api/preset.meta.json +16 -0
  145. package/templates/presets/build-game/preset.meta.json +150 -0
  146. package/templates/presets/content/preset.meta.json +20 -0
  147. package/templates/presets/fast/preset.meta.json +16 -0
  148. package/templates/presets/full/preset.meta.json +22 -0
  149. package/templates/presets/gtm/preset.meta.json +21 -0
  150. package/templates/presets/launch-mvp/preset.meta.json +17 -0
  151. package/templates/presets/launch-pack/preset.meta.json +25 -0
  152. package/templates/presets/quality/preset.meta.json +17 -0
  153. package/templates/presets/rad/preset.meta.json +19 -0
  154. package/templates/presets/repo-maintenance/preset.meta.json +104 -0
  155. package/templates/presets/research/preset.meta.json +13 -0
  156. package/templates/presets/secure/preset.meta.json +22 -0
  157. package/templates/presets/startup/preset.meta.json +19 -0
  158. package/templates/presets/website-relaunch/preset.meta.json +18 -0
  159. package/templates/roles/audio-designer/AGENTS.md +29 -0
  160. package/templates/roles/audio-designer/HEARTBEAT.md +37 -0
  161. package/templates/roles/audio-designer/SOUL.md +17 -0
  162. package/templates/roles/audio-designer/TOOLS.md +3 -0
  163. package/templates/roles/audio-designer/role.meta.json +14 -0
  164. package/templates/roles/ceo/AGENTS.md +28 -0
  165. package/templates/roles/ceo/HEARTBEAT.md +75 -0
  166. package/templates/roles/ceo/SOUL.md +33 -0
  167. package/templates/roles/ceo/TOOLS.md +3 -0
  168. package/templates/roles/ceo/role.meta.json +14 -0
  169. package/templates/roles/cfo/AGENTS.md +31 -0
  170. package/templates/roles/cfo/HEARTBEAT.md +37 -0
  171. package/templates/roles/cfo/SOUL.md +17 -0
  172. package/templates/roles/cfo/TOOLS.md +3 -0
  173. package/templates/roles/cfo/role.meta.json +17 -0
  174. package/templates/roles/cmo/AGENTS.md +31 -0
  175. package/templates/roles/cmo/HEARTBEAT.md +37 -0
  176. package/templates/roles/cmo/SOUL.md +17 -0
  177. package/templates/roles/cmo/TOOLS.md +3 -0
  178. package/templates/roles/cmo/role.meta.json +17 -0
  179. package/templates/roles/code-reviewer/AGENTS.md +42 -0
  180. package/templates/roles/code-reviewer/HEARTBEAT.md +33 -0
  181. package/templates/roles/code-reviewer/SOUL.md +18 -0
  182. package/templates/roles/code-reviewer/TOOLS.md +3 -0
  183. package/templates/roles/code-reviewer/role.meta.json +12 -0
  184. package/templates/roles/cto/AGENTS.md +30 -0
  185. package/templates/roles/cto/HEARTBEAT.md +45 -0
  186. package/templates/roles/cto/SOUL.md +25 -0
  187. package/templates/roles/cto/TOOLS.md +3 -0
  188. package/templates/roles/cto/role.meta.json +18 -0
  189. package/templates/roles/customer-success/AGENTS.md +42 -0
  190. package/templates/roles/customer-success/HEARTBEAT.md +33 -0
  191. package/templates/roles/customer-success/SOUL.md +17 -0
  192. package/templates/roles/customer-success/TOOLS.md +3 -0
  193. package/templates/roles/customer-success/role.meta.json +17 -0
  194. package/templates/roles/devops/AGENTS.md +31 -0
  195. package/templates/roles/devops/HEARTBEAT.md +42 -0
  196. package/templates/roles/devops/SOUL.md +17 -0
  197. package/templates/roles/devops/TOOLS.md +3 -0
  198. package/templates/roles/devops/role.meta.json +17 -0
  199. package/templates/roles/engineer/AGENTS.md +29 -0
  200. package/templates/roles/engineer/HEARTBEAT.md +39 -0
  201. package/templates/roles/engineer/SOUL.md +20 -0
  202. package/templates/roles/engineer/TOOLS.md +3 -0
  203. package/templates/roles/engineer/role.meta.json +13 -0
  204. package/templates/roles/game-artist/AGENTS.md +29 -0
  205. package/templates/roles/game-artist/HEARTBEAT.md +37 -0
  206. package/templates/roles/game-artist/SOUL.md +24 -0
  207. package/templates/roles/game-artist/TOOLS.md +3 -0
  208. package/templates/roles/game-artist/role.meta.json +14 -0
  209. package/templates/roles/game-designer/AGENTS.md +29 -0
  210. package/templates/roles/game-designer/HEARTBEAT.md +37 -0
  211. package/templates/roles/game-designer/SOUL.md +17 -0
  212. package/templates/roles/game-designer/TOOLS.md +3 -0
  213. package/templates/roles/game-designer/role.meta.json +14 -0
  214. package/templates/roles/level-designer/AGENTS.md +29 -0
  215. package/templates/roles/level-designer/HEARTBEAT.md +37 -0
  216. package/templates/roles/level-designer/SOUL.md +17 -0
  217. package/templates/roles/level-designer/TOOLS.md +3 -0
  218. package/templates/roles/level-designer/role.meta.json +13 -0
  219. package/templates/roles/product-owner/AGENTS.md +29 -0
  220. package/templates/roles/product-owner/HEARTBEAT.md +35 -0
  221. package/templates/roles/product-owner/SOUL.md +17 -0
  222. package/templates/roles/product-owner/TOOLS.md +3 -0
  223. package/templates/roles/product-owner/role.meta.json +14 -0
  224. package/templates/roles/qa/AGENTS.md +31 -0
  225. package/templates/roles/qa/HEARTBEAT.md +37 -0
  226. package/templates/roles/qa/SOUL.md +17 -0
  227. package/templates/roles/qa/TOOLS.md +3 -0
  228. package/templates/roles/qa/role.meta.json +17 -0
  229. package/templates/roles/security-engineer/AGENTS.md +42 -0
  230. package/templates/roles/security-engineer/HEARTBEAT.md +33 -0
  231. package/templates/roles/security-engineer/SOUL.md +17 -0
  232. package/templates/roles/security-engineer/TOOLS.md +3 -0
  233. package/templates/roles/security-engineer/role.meta.json +17 -0
  234. package/templates/roles/technical-writer/AGENTS.md +41 -0
  235. package/templates/roles/technical-writer/HEARTBEAT.md +32 -0
  236. package/templates/roles/technical-writer/SOUL.md +17 -0
  237. package/templates/roles/technical-writer/TOOLS.md +3 -0
  238. package/templates/roles/technical-writer/role.meta.json +16 -0
  239. package/templates/roles/ui-designer/AGENTS.md +29 -0
  240. package/templates/roles/ui-designer/HEARTBEAT.md +37 -0
  241. package/templates/roles/ui-designer/SOUL.md +17 -0
  242. package/templates/roles/ui-designer/TOOLS.md +3 -0
  243. package/templates/roles/ui-designer/role.meta.json +17 -0
  244. package/templates/roles/ux-researcher/AGENTS.md +29 -0
  245. package/templates/roles/ux-researcher/HEARTBEAT.md +37 -0
  246. package/templates/roles/ux-researcher/SOUL.md +17 -0
  247. package/templates/roles/ux-researcher/TOOLS.md +3 -0
  248. package/templates/roles/ux-researcher/role.meta.json +14 -0
@@ -0,0 +1,1647 @@
1
+ /* src/ui/index.css */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root,
6
+ :host {
7
+ --font-sans:
8
+ ui-sans-serif,
9
+ system-ui,
10
+ sans-serif,
11
+ "Apple Color Emoji",
12
+ "Segoe UI Emoji",
13
+ "Segoe UI Symbol",
14
+ "Noto Color Emoji";
15
+ --font-mono:
16
+ ui-monospace,
17
+ SFMono-Regular,
18
+ Menlo,
19
+ Monaco,
20
+ Consolas,
21
+ "Liberation Mono",
22
+ "Courier New",
23
+ monospace;
24
+ --color-amber-200: oklch(92.4% 0.12 95.746);
25
+ --color-amber-300: oklch(87.9% 0.169 91.605);
26
+ --color-amber-400: oklch(82.8% 0.189 84.429);
27
+ --color-amber-500: oklch(76.9% 0.188 70.08);
28
+ --color-amber-700: oklch(55.5% 0.163 48.998);
29
+ --color-amber-800: oklch(47.3% 0.137 46.201);
30
+ --color-yellow-600: oklch(68.1% 0.162 75.834);
31
+ --color-green-600: oklch(62.7% 0.194 149.214);
32
+ --color-blue-400: oklch(70.7% 0.165 254.624);
33
+ --color-blue-500: oklch(62.3% 0.214 259.815);
34
+ --color-blue-600: oklch(54.6% 0.245 262.881);
35
+ --color-white: #fff;
36
+ --spacing: 0.25rem;
37
+ --container-xs: 20rem;
38
+ --container-2xl: 42rem;
39
+ --text-xs: 0.75rem;
40
+ --text-xs--line-height: calc(1 / 0.75);
41
+ --text-sm: 0.875rem;
42
+ --text-sm--line-height: calc(1.25 / 0.875);
43
+ --text-base: 1rem;
44
+ --text-base--line-height: calc(1.5 / 1);
45
+ --text-xl: 1.25rem;
46
+ --text-xl--line-height: calc(1.75 / 1.25);
47
+ --text-2xl: 1.5rem;
48
+ --text-2xl--line-height: calc(2 / 1.5);
49
+ --font-weight-normal: 400;
50
+ --font-weight-medium: 500;
51
+ --font-weight-semibold: 600;
52
+ --tracking-tight: -0.025em;
53
+ --tracking-wider: 0.05em;
54
+ --leading-relaxed: 1.625;
55
+ --animate-spin: spin 1s linear infinite;
56
+ --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
57
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
58
+ --default-transition-duration: 150ms;
59
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
60
+ --default-font-family: var(--font-sans);
61
+ --default-mono-font-family: var(--font-mono);
62
+ --color-primary: var(--primary);
63
+ }
64
+ }
65
+ @layer base {
66
+ *,
67
+ ::after,
68
+ ::before,
69
+ ::backdrop,
70
+ ::file-selector-button {
71
+ box-sizing: border-box;
72
+ margin: 0;
73
+ padding: 0;
74
+ border: 0 solid;
75
+ }
76
+ html,
77
+ :host {
78
+ line-height: 1.5;
79
+ -webkit-text-size-adjust: 100%;
80
+ tab-size: 4;
81
+ 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");
82
+ font-feature-settings: var(--default-font-feature-settings, normal);
83
+ font-variation-settings: var(--default-font-variation-settings, normal);
84
+ -webkit-tap-highlight-color: transparent;
85
+ }
86
+ hr {
87
+ height: 0;
88
+ color: inherit;
89
+ border-top-width: 1px;
90
+ }
91
+ abbr:where([title]) {
92
+ -webkit-text-decoration: underline dotted;
93
+ text-decoration: underline dotted;
94
+ }
95
+ h1,
96
+ h2,
97
+ h3,
98
+ h4,
99
+ h5,
100
+ h6 {
101
+ font-size: inherit;
102
+ font-weight: inherit;
103
+ }
104
+ a {
105
+ color: inherit;
106
+ -webkit-text-decoration: inherit;
107
+ text-decoration: inherit;
108
+ }
109
+ b,
110
+ strong {
111
+ font-weight: bolder;
112
+ }
113
+ code,
114
+ kbd,
115
+ samp,
116
+ pre {
117
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
118
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
119
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
120
+ font-size: 1em;
121
+ }
122
+ small {
123
+ font-size: 80%;
124
+ }
125
+ sub,
126
+ sup {
127
+ font-size: 75%;
128
+ line-height: 0;
129
+ position: relative;
130
+ vertical-align: baseline;
131
+ }
132
+ sub {
133
+ bottom: -0.25em;
134
+ }
135
+ sup {
136
+ top: -0.5em;
137
+ }
138
+ table {
139
+ text-indent: 0;
140
+ border-color: inherit;
141
+ border-collapse: collapse;
142
+ }
143
+ :-moz-focusring {
144
+ outline: auto;
145
+ }
146
+ progress {
147
+ vertical-align: baseline;
148
+ }
149
+ summary {
150
+ display: list-item;
151
+ }
152
+ ol,
153
+ ul,
154
+ menu {
155
+ list-style: none;
156
+ }
157
+ img,
158
+ svg,
159
+ video,
160
+ canvas,
161
+ audio,
162
+ iframe,
163
+ embed,
164
+ object {
165
+ display: block;
166
+ vertical-align: middle;
167
+ }
168
+ img,
169
+ video {
170
+ max-width: 100%;
171
+ height: auto;
172
+ }
173
+ button,
174
+ input,
175
+ select,
176
+ optgroup,
177
+ textarea,
178
+ ::file-selector-button {
179
+ font: inherit;
180
+ font-feature-settings: inherit;
181
+ font-variation-settings: inherit;
182
+ letter-spacing: inherit;
183
+ color: inherit;
184
+ border-radius: 0;
185
+ background-color: transparent;
186
+ opacity: 1;
187
+ }
188
+ :where(select:is([multiple], [size])) optgroup {
189
+ font-weight: bolder;
190
+ }
191
+ :where(select:is([multiple], [size])) optgroup option {
192
+ padding-inline-start: 20px;
193
+ }
194
+ ::file-selector-button {
195
+ margin-inline-end: 4px;
196
+ }
197
+ ::placeholder {
198
+ opacity: 1;
199
+ }
200
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
201
+ ::placeholder {
202
+ color: currentcolor;
203
+ @supports (color: color-mix(in lab, red, red)) {
204
+ color: color-mix(in oklab, currentcolor 50%, transparent);
205
+ }
206
+ }
207
+ }
208
+ textarea {
209
+ resize: vertical;
210
+ }
211
+ ::-webkit-search-decoration {
212
+ -webkit-appearance: none;
213
+ }
214
+ ::-webkit-date-and-time-value {
215
+ min-height: 1lh;
216
+ text-align: inherit;
217
+ }
218
+ ::-webkit-datetime-edit {
219
+ display: inline-flex;
220
+ }
221
+ ::-webkit-datetime-edit-fields-wrapper {
222
+ padding: 0;
223
+ }
224
+ ::-webkit-datetime-edit,
225
+ ::-webkit-datetime-edit-year-field,
226
+ ::-webkit-datetime-edit-month-field,
227
+ ::-webkit-datetime-edit-day-field,
228
+ ::-webkit-datetime-edit-hour-field,
229
+ ::-webkit-datetime-edit-minute-field,
230
+ ::-webkit-datetime-edit-second-field,
231
+ ::-webkit-datetime-edit-millisecond-field,
232
+ ::-webkit-datetime-edit-meridiem-field {
233
+ padding-block: 0;
234
+ }
235
+ ::-webkit-calendar-picker-indicator {
236
+ line-height: 1;
237
+ }
238
+ :-moz-ui-invalid {
239
+ box-shadow: none;
240
+ }
241
+ button,
242
+ input:where([type=button], [type=reset], [type=submit]),
243
+ ::file-selector-button {
244
+ appearance: button;
245
+ }
246
+ ::-webkit-inner-spin-button,
247
+ ::-webkit-outer-spin-button {
248
+ height: auto;
249
+ }
250
+ [hidden]:where(:not([hidden=until-found])) {
251
+ display: none !important;
252
+ }
253
+ }
254
+ @layer utilities {
255
+ .invisible {
256
+ visibility: hidden;
257
+ }
258
+ .visible {
259
+ visibility: visible;
260
+ }
261
+ .absolute {
262
+ position: absolute;
263
+ }
264
+ .fixed {
265
+ position: fixed;
266
+ }
267
+ .relative {
268
+ position: relative;
269
+ }
270
+ .static {
271
+ position: static;
272
+ }
273
+ .inset-0 {
274
+ inset: calc(var(--spacing) * 0);
275
+ }
276
+ .inset-x-0 {
277
+ inset-inline: calc(var(--spacing) * 0);
278
+ }
279
+ .start {
280
+ inset-inline-start: var(--spacing);
281
+ }
282
+ .end {
283
+ inset-inline-end: var(--spacing);
284
+ }
285
+ .top-2 {
286
+ top: calc(var(--spacing) * 2);
287
+ }
288
+ .right-2 {
289
+ right: calc(var(--spacing) * 2);
290
+ }
291
+ .bottom-0 {
292
+ bottom: calc(var(--spacing) * 0);
293
+ }
294
+ .z-50 {
295
+ z-index: 50;
296
+ }
297
+ .container {
298
+ width: 100%;
299
+ @media (width >= 40rem) {
300
+ max-width: 40rem;
301
+ }
302
+ @media (width >= 48rem) {
303
+ max-width: 48rem;
304
+ }
305
+ @media (width >= 64rem) {
306
+ max-width: 64rem;
307
+ }
308
+ @media (width >= 80rem) {
309
+ max-width: 80rem;
310
+ }
311
+ @media (width >= 96rem) {
312
+ max-width: 96rem;
313
+ }
314
+ }
315
+ .mx-4 {
316
+ margin-inline: calc(var(--spacing) * 4);
317
+ }
318
+ .my-0\.5 {
319
+ margin-block: calc(var(--spacing) * 0.5);
320
+ }
321
+ .mt-0\.5 {
322
+ margin-top: calc(var(--spacing) * 0.5);
323
+ }
324
+ .mt-1 {
325
+ margin-top: calc(var(--spacing) * 1);
326
+ }
327
+ .mt-1\.5 {
328
+ margin-top: calc(var(--spacing) * 1.5);
329
+ }
330
+ .mt-3 {
331
+ margin-top: calc(var(--spacing) * 3);
332
+ }
333
+ .mt-4 {
334
+ margin-top: calc(var(--spacing) * 4);
335
+ }
336
+ .mt-px {
337
+ margin-top: 1px;
338
+ }
339
+ .mr-1\.5 {
340
+ margin-right: calc(var(--spacing) * 1.5);
341
+ }
342
+ .mb-1 {
343
+ margin-bottom: calc(var(--spacing) * 1);
344
+ }
345
+ .mb-2 {
346
+ margin-bottom: calc(var(--spacing) * 2);
347
+ }
348
+ .ml-1 {
349
+ margin-left: calc(var(--spacing) * 1);
350
+ }
351
+ .ml-1\.5 {
352
+ margin-left: calc(var(--spacing) * 1.5);
353
+ }
354
+ .ml-2 {
355
+ margin-left: calc(var(--spacing) * 2);
356
+ }
357
+ .ml-auto {
358
+ margin-left: auto;
359
+ }
360
+ .block {
361
+ display: block;
362
+ }
363
+ .contents {
364
+ display: contents;
365
+ }
366
+ .flex {
367
+ display: flex;
368
+ }
369
+ .grid {
370
+ display: grid;
371
+ }
372
+ .hidden {
373
+ display: none;
374
+ }
375
+ .inline {
376
+ display: inline;
377
+ }
378
+ .inline-block {
379
+ display: inline-block;
380
+ }
381
+ .inline-flex {
382
+ display: inline-flex;
383
+ }
384
+ .table {
385
+ display: table;
386
+ }
387
+ .h-1\.5 {
388
+ height: calc(var(--spacing) * 1.5);
389
+ }
390
+ .h-3 {
391
+ height: calc(var(--spacing) * 3);
392
+ }
393
+ .h-3\.5 {
394
+ height: calc(var(--spacing) * 3.5);
395
+ }
396
+ .h-4 {
397
+ height: calc(var(--spacing) * 4);
398
+ }
399
+ .h-5 {
400
+ height: calc(var(--spacing) * 5);
401
+ }
402
+ .h-6 {
403
+ height: calc(var(--spacing) * 6);
404
+ }
405
+ .h-7 {
406
+ height: calc(var(--spacing) * 7);
407
+ }
408
+ .h-8 {
409
+ height: calc(var(--spacing) * 8);
410
+ }
411
+ .h-9 {
412
+ height: calc(var(--spacing) * 9);
413
+ }
414
+ .h-10 {
415
+ height: calc(var(--spacing) * 10);
416
+ }
417
+ .h-11 {
418
+ height: calc(var(--spacing) * 11);
419
+ }
420
+ .h-12 {
421
+ height: calc(var(--spacing) * 12);
422
+ }
423
+ .h-px {
424
+ height: 1px;
425
+ }
426
+ .max-h-\[60vh\] {
427
+ max-height: 60vh;
428
+ }
429
+ .max-h-\[400px\] {
430
+ max-height: 400px;
431
+ }
432
+ .max-h-\[420px\] {
433
+ max-height: 420px;
434
+ }
435
+ .min-h-\[60px\] {
436
+ min-height: 60px;
437
+ }
438
+ .min-h-\[80px\] {
439
+ min-height: 80px;
440
+ }
441
+ .min-h-\[120px\] {
442
+ min-height: 120px;
443
+ }
444
+ .min-h-\[400px\] {
445
+ min-height: 400px;
446
+ }
447
+ .w-1\.5 {
448
+ width: calc(var(--spacing) * 1.5);
449
+ }
450
+ .w-3 {
451
+ width: calc(var(--spacing) * 3);
452
+ }
453
+ .w-3\.5 {
454
+ width: calc(var(--spacing) * 3.5);
455
+ }
456
+ .w-4 {
457
+ width: calc(var(--spacing) * 4);
458
+ }
459
+ .w-5 {
460
+ width: calc(var(--spacing) * 5);
461
+ }
462
+ .w-6 {
463
+ width: calc(var(--spacing) * 6);
464
+ }
465
+ .w-7 {
466
+ width: calc(var(--spacing) * 7);
467
+ }
468
+ .w-8 {
469
+ width: calc(var(--spacing) * 8);
470
+ }
471
+ .w-9 {
472
+ width: calc(var(--spacing) * 9);
473
+ }
474
+ .w-10 {
475
+ width: calc(var(--spacing) * 10);
476
+ }
477
+ .w-12 {
478
+ width: calc(var(--spacing) * 12);
479
+ }
480
+ .w-80 {
481
+ width: calc(var(--spacing) * 80);
482
+ }
483
+ .w-full {
484
+ width: 100%;
485
+ }
486
+ .max-w-2xl {
487
+ max-width: var(--container-2xl);
488
+ }
489
+ .max-w-\[85\%\] {
490
+ max-width: 85%;
491
+ }
492
+ .max-w-xs {
493
+ max-width: var(--container-xs);
494
+ }
495
+ .min-w-0 {
496
+ min-width: calc(var(--spacing) * 0);
497
+ }
498
+ .flex-1 {
499
+ flex: 1;
500
+ }
501
+ .shrink-0 {
502
+ flex-shrink: 0;
503
+ }
504
+ .grow {
505
+ flex-grow: 1;
506
+ }
507
+ .transform {
508
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
509
+ }
510
+ .animate-ping {
511
+ animation: var(--animate-ping);
512
+ }
513
+ .animate-pulse {
514
+ animation: var(--animate-pulse);
515
+ }
516
+ .animate-spin {
517
+ animation: var(--animate-spin);
518
+ }
519
+ .cursor-default {
520
+ cursor: default;
521
+ }
522
+ .cursor-pointer {
523
+ cursor: pointer;
524
+ }
525
+ .resize {
526
+ resize: both;
527
+ }
528
+ .resize-none {
529
+ resize: none;
530
+ }
531
+ .resize-y {
532
+ resize: vertical;
533
+ }
534
+ .grid-cols-3 {
535
+ grid-template-columns: repeat(3, minmax(0, 1fr));
536
+ }
537
+ .flex-col {
538
+ flex-direction: column;
539
+ }
540
+ .flex-row-reverse {
541
+ flex-direction: row-reverse;
542
+ }
543
+ .flex-wrap {
544
+ flex-wrap: wrap;
545
+ }
546
+ .items-baseline {
547
+ align-items: baseline;
548
+ }
549
+ .items-center {
550
+ align-items: center;
551
+ }
552
+ .items-start {
553
+ align-items: flex-start;
554
+ }
555
+ .justify-between {
556
+ justify-content: space-between;
557
+ }
558
+ .justify-center {
559
+ justify-content: center;
560
+ }
561
+ .justify-end {
562
+ justify-content: flex-end;
563
+ }
564
+ .gap-1 {
565
+ gap: calc(var(--spacing) * 1);
566
+ }
567
+ .gap-1\.5 {
568
+ gap: calc(var(--spacing) * 1.5);
569
+ }
570
+ .gap-2 {
571
+ gap: calc(var(--spacing) * 2);
572
+ }
573
+ .gap-2\.5 {
574
+ gap: calc(var(--spacing) * 2.5);
575
+ }
576
+ .gap-3 {
577
+ gap: calc(var(--spacing) * 3);
578
+ }
579
+ .gap-4 {
580
+ gap: calc(var(--spacing) * 4);
581
+ }
582
+ .space-y-0\.5 {
583
+ :where(& > :not(:last-child)) {
584
+ --tw-space-y-reverse: 0;
585
+ margin-block-start: calc(calc(var(--spacing) * 0.5) * var(--tw-space-y-reverse));
586
+ margin-block-end: calc(calc(var(--spacing) * 0.5) * calc(1 - var(--tw-space-y-reverse)));
587
+ }
588
+ }
589
+ .space-y-1 {
590
+ :where(& > :not(:last-child)) {
591
+ --tw-space-y-reverse: 0;
592
+ margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
593
+ margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
594
+ }
595
+ }
596
+ .space-y-1\.5 {
597
+ :where(& > :not(:last-child)) {
598
+ --tw-space-y-reverse: 0;
599
+ margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));
600
+ margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
601
+ }
602
+ }
603
+ .space-y-2 {
604
+ :where(& > :not(:last-child)) {
605
+ --tw-space-y-reverse: 0;
606
+ margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
607
+ margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
608
+ }
609
+ }
610
+ .space-y-2\.5 {
611
+ :where(& > :not(:last-child)) {
612
+ --tw-space-y-reverse: 0;
613
+ margin-block-start: calc(calc(var(--spacing) * 2.5) * var(--tw-space-y-reverse));
614
+ margin-block-end: calc(calc(var(--spacing) * 2.5) * calc(1 - var(--tw-space-y-reverse)));
615
+ }
616
+ }
617
+ .space-y-3 {
618
+ :where(& > :not(:last-child)) {
619
+ --tw-space-y-reverse: 0;
620
+ margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
621
+ margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
622
+ }
623
+ }
624
+ .space-y-4 {
625
+ :where(& > :not(:last-child)) {
626
+ --tw-space-y-reverse: 0;
627
+ margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
628
+ margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
629
+ }
630
+ }
631
+ .space-y-6 {
632
+ :where(& > :not(:last-child)) {
633
+ --tw-space-y-reverse: 0;
634
+ margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
635
+ margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
636
+ }
637
+ }
638
+ .space-y-8 {
639
+ :where(& > :not(:last-child)) {
640
+ --tw-space-y-reverse: 0;
641
+ margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
642
+ margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
643
+ }
644
+ }
645
+ .gap-x-3 {
646
+ column-gap: calc(var(--spacing) * 3);
647
+ }
648
+ .gap-x-4 {
649
+ column-gap: calc(var(--spacing) * 4);
650
+ }
651
+ .gap-y-0\.5 {
652
+ row-gap: calc(var(--spacing) * 0.5);
653
+ }
654
+ .gap-y-1 {
655
+ row-gap: calc(var(--spacing) * 1);
656
+ }
657
+ .divide-y {
658
+ :where(& > :not(:last-child)) {
659
+ --tw-divide-y-reverse: 0;
660
+ border-bottom-style: var(--tw-border-style);
661
+ border-top-style: var(--tw-border-style);
662
+ border-top-width: calc(1px * var(--tw-divide-y-reverse));
663
+ border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
664
+ }
665
+ }
666
+ .truncate {
667
+ overflow: hidden;
668
+ text-overflow: ellipsis;
669
+ white-space: nowrap;
670
+ }
671
+ .overflow-x-auto {
672
+ overflow-x: auto;
673
+ }
674
+ .overflow-y-auto {
675
+ overflow-y: auto;
676
+ }
677
+ .rounded {
678
+ border-radius: 0.25rem;
679
+ }
680
+ .rounded-full {
681
+ border-radius: calc(infinity * 1px);
682
+ }
683
+ .rounded-lg {
684
+ border-radius: var(--radius);
685
+ }
686
+ .rounded-md {
687
+ border-radius: calc(var(--radius) - 2px);
688
+ }
689
+ .rounded-xl {
690
+ border-radius: calc(var(--radius) + 4px);
691
+ }
692
+ .border {
693
+ border-style: var(--tw-border-style);
694
+ border-width: 1px;
695
+ }
696
+ .border-2 {
697
+ border-style: var(--tw-border-style);
698
+ border-width: 2px;
699
+ }
700
+ .border-t {
701
+ border-top-style: var(--tw-border-style);
702
+ border-top-width: 1px;
703
+ }
704
+ .border-dashed {
705
+ --tw-border-style: dashed;
706
+ border-style: dashed;
707
+ }
708
+ .border-amber-500\/30 {
709
+ border-color: color-mix(in srgb, oklch(76.9% 0.188 70.08) 30%, transparent);
710
+ @supports (color: color-mix(in lab, red, red)) {
711
+ border-color: color-mix(in oklab, var(--color-amber-500) 30%, transparent);
712
+ }
713
+ }
714
+ .border-amber-500\/40 {
715
+ border-color: color-mix(in srgb, oklch(76.9% 0.188 70.08) 40%, transparent);
716
+ @supports (color: color-mix(in lab, red, red)) {
717
+ border-color: color-mix(in oklab, var(--color-amber-500) 40%, transparent);
718
+ }
719
+ }
720
+ .border-blue-400\/60 {
721
+ border-color: color-mix(in srgb, oklch(70.7% 0.165 254.624) 60%, transparent);
722
+ @supports (color: color-mix(in lab, red, red)) {
723
+ border-color: color-mix(in oklab, var(--color-blue-400) 60%, transparent);
724
+ }
725
+ }
726
+ .border-border {
727
+ border-color: var(--border);
728
+ }
729
+ .border-destructive\/20 {
730
+ border-color: var(--destructive);
731
+ @supports (color: color-mix(in lab, red, red)) {
732
+ border-color: color-mix(in oklab, var(--destructive) 20%, transparent);
733
+ }
734
+ }
735
+ .border-destructive\/30 {
736
+ border-color: var(--destructive);
737
+ @supports (color: color-mix(in lab, red, red)) {
738
+ border-color: color-mix(in oklab, var(--destructive) 30%, transparent);
739
+ }
740
+ }
741
+ .border-foreground {
742
+ border-color: var(--foreground);
743
+ }
744
+ .border-foreground\/10 {
745
+ border-color: var(--foreground);
746
+ @supports (color: color-mix(in lab, red, red)) {
747
+ border-color: color-mix(in oklab, var(--foreground) 10%, transparent);
748
+ }
749
+ }
750
+ .border-foreground\/20 {
751
+ border-color: var(--foreground);
752
+ @supports (color: color-mix(in lab, red, red)) {
753
+ border-color: color-mix(in oklab, var(--foreground) 20%, transparent);
754
+ }
755
+ }
756
+ .border-foreground\/30 {
757
+ border-color: var(--foreground);
758
+ @supports (color: color-mix(in lab, red, red)) {
759
+ border-color: color-mix(in oklab, var(--foreground) 30%, transparent);
760
+ }
761
+ }
762
+ .border-input {
763
+ border-color: var(--input);
764
+ }
765
+ .border-transparent {
766
+ border-color: transparent;
767
+ }
768
+ .bg-accent {
769
+ background-color: var(--accent);
770
+ }
771
+ .bg-accent\/20 {
772
+ background-color: var(--accent);
773
+ @supports (color: color-mix(in lab, red, red)) {
774
+ background-color: color-mix(in oklab, var(--accent) 20%, transparent);
775
+ }
776
+ }
777
+ .bg-accent\/50 {
778
+ background-color: var(--accent);
779
+ @supports (color: color-mix(in lab, red, red)) {
780
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
781
+ }
782
+ }
783
+ .bg-amber-500\/10 {
784
+ background-color: color-mix(in srgb, oklch(76.9% 0.188 70.08) 10%, transparent);
785
+ @supports (color: color-mix(in lab, red, red)) {
786
+ background-color: color-mix(in oklab, var(--color-amber-500) 10%, transparent);
787
+ }
788
+ }
789
+ .bg-background {
790
+ background-color: var(--background);
791
+ }
792
+ .bg-border {
793
+ background-color: var(--border);
794
+ }
795
+ .bg-card {
796
+ background-color: var(--card);
797
+ }
798
+ .bg-current {
799
+ background-color: currentcolor;
800
+ }
801
+ .bg-destructive {
802
+ background-color: var(--destructive);
803
+ }
804
+ .bg-destructive\/5 {
805
+ background-color: var(--destructive);
806
+ @supports (color: color-mix(in lab, red, red)) {
807
+ background-color: color-mix(in oklab, var(--destructive) 5%, transparent);
808
+ }
809
+ }
810
+ .bg-destructive\/10 {
811
+ background-color: var(--destructive);
812
+ @supports (color: color-mix(in lab, red, red)) {
813
+ background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
814
+ }
815
+ }
816
+ .bg-foreground {
817
+ background-color: var(--foreground);
818
+ }
819
+ .bg-foreground\/5 {
820
+ background-color: var(--foreground);
821
+ @supports (color: color-mix(in lab, red, red)) {
822
+ background-color: color-mix(in oklab, var(--foreground) 5%, transparent);
823
+ }
824
+ }
825
+ .bg-foreground\/10 {
826
+ background-color: var(--foreground);
827
+ @supports (color: color-mix(in lab, red, red)) {
828
+ background-color: color-mix(in oklab, var(--foreground) 10%, transparent);
829
+ }
830
+ }
831
+ .bg-muted {
832
+ background-color: var(--muted);
833
+ }
834
+ .bg-muted-foreground\/30 {
835
+ background-color: var(--muted-foreground);
836
+ @supports (color: color-mix(in lab, red, red)) {
837
+ background-color: color-mix(in oklab, var(--muted-foreground) 30%, transparent);
838
+ }
839
+ }
840
+ .bg-muted\/50 {
841
+ background-color: var(--muted);
842
+ @supports (color: color-mix(in lab, red, red)) {
843
+ background-color: color-mix(in oklab, var(--muted) 50%, transparent);
844
+ }
845
+ }
846
+ .bg-popover {
847
+ background-color: var(--popover);
848
+ }
849
+ .bg-primary {
850
+ background-color: var(--primary);
851
+ }
852
+ .bg-secondary {
853
+ background-color: var(--secondary);
854
+ }
855
+ .bg-transparent {
856
+ background-color: transparent;
857
+ }
858
+ .p-0 {
859
+ padding: calc(var(--spacing) * 0);
860
+ }
861
+ .p-0\.5 {
862
+ padding: calc(var(--spacing) * 0.5);
863
+ }
864
+ .p-2 {
865
+ padding: calc(var(--spacing) * 2);
866
+ }
867
+ .p-3 {
868
+ padding: calc(var(--spacing) * 3);
869
+ }
870
+ .p-4 {
871
+ padding: calc(var(--spacing) * 4);
872
+ }
873
+ .p-6 {
874
+ padding: calc(var(--spacing) * 6);
875
+ }
876
+ .px-0\.5 {
877
+ padding-inline: calc(var(--spacing) * 0.5);
878
+ }
879
+ .px-1\.5 {
880
+ padding-inline: calc(var(--spacing) * 1.5);
881
+ }
882
+ .px-2 {
883
+ padding-inline: calc(var(--spacing) * 2);
884
+ }
885
+ .px-2\.5 {
886
+ padding-inline: calc(var(--spacing) * 2.5);
887
+ }
888
+ .px-3 {
889
+ padding-inline: calc(var(--spacing) * 3);
890
+ }
891
+ .px-4 {
892
+ padding-inline: calc(var(--spacing) * 4);
893
+ }
894
+ .px-6 {
895
+ padding-inline: calc(var(--spacing) * 6);
896
+ }
897
+ .px-8 {
898
+ padding-inline: calc(var(--spacing) * 8);
899
+ }
900
+ .py-0\.5 {
901
+ padding-block: calc(var(--spacing) * 0.5);
902
+ }
903
+ .py-1 {
904
+ padding-block: calc(var(--spacing) * 1);
905
+ }
906
+ .py-1\.5 {
907
+ padding-block: calc(var(--spacing) * 1.5);
908
+ }
909
+ .py-2 {
910
+ padding-block: calc(var(--spacing) * 2);
911
+ }
912
+ .py-2\.5 {
913
+ padding-block: calc(var(--spacing) * 2.5);
914
+ }
915
+ .py-3 {
916
+ padding-block: calc(var(--spacing) * 3);
917
+ }
918
+ .py-6 {
919
+ padding-block: calc(var(--spacing) * 6);
920
+ }
921
+ .py-12 {
922
+ padding-block: calc(var(--spacing) * 12);
923
+ }
924
+ .pt-0 {
925
+ padding-top: calc(var(--spacing) * 0);
926
+ }
927
+ .pt-2 {
928
+ padding-top: calc(var(--spacing) * 2);
929
+ }
930
+ .pt-4 {
931
+ padding-top: calc(var(--spacing) * 4);
932
+ }
933
+ .pt-6 {
934
+ padding-top: calc(var(--spacing) * 6);
935
+ }
936
+ .pr-1 {
937
+ padding-right: calc(var(--spacing) * 1);
938
+ }
939
+ .pb-4 {
940
+ padding-bottom: calc(var(--spacing) * 4);
941
+ }
942
+ .pl-2 {
943
+ padding-left: calc(var(--spacing) * 2);
944
+ }
945
+ .pl-8 {
946
+ padding-left: calc(var(--spacing) * 8);
947
+ }
948
+ .text-center {
949
+ text-align: center;
950
+ }
951
+ .text-left {
952
+ text-align: left;
953
+ }
954
+ .font-mono {
955
+ font-family: var(--font-mono);
956
+ }
957
+ .text-2xl {
958
+ font-size: var(--text-2xl);
959
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
960
+ }
961
+ .text-base {
962
+ font-size: var(--text-base);
963
+ line-height: var(--tw-leading, var(--text-base--line-height));
964
+ }
965
+ .text-sm {
966
+ font-size: var(--text-sm);
967
+ line-height: var(--tw-leading, var(--text-sm--line-height));
968
+ }
969
+ .text-xl {
970
+ font-size: var(--text-xl);
971
+ line-height: var(--tw-leading, var(--text-xl--line-height));
972
+ }
973
+ .text-xs {
974
+ font-size: var(--text-xs);
975
+ line-height: var(--tw-leading, var(--text-xs--line-height));
976
+ }
977
+ .text-\[10px\] {
978
+ font-size: 10px;
979
+ }
980
+ .text-\[11px\] {
981
+ font-size: 11px;
982
+ }
983
+ .leading-none {
984
+ --tw-leading: 1;
985
+ line-height: 1;
986
+ }
987
+ .leading-relaxed {
988
+ --tw-leading: var(--leading-relaxed);
989
+ line-height: var(--leading-relaxed);
990
+ }
991
+ .font-medium {
992
+ --tw-font-weight: var(--font-weight-medium);
993
+ font-weight: var(--font-weight-medium);
994
+ }
995
+ .font-normal {
996
+ --tw-font-weight: var(--font-weight-normal);
997
+ font-weight: var(--font-weight-normal);
998
+ }
999
+ .font-semibold {
1000
+ --tw-font-weight: var(--font-weight-semibold);
1001
+ font-weight: var(--font-weight-semibold);
1002
+ }
1003
+ .tracking-tight {
1004
+ --tw-tracking: var(--tracking-tight);
1005
+ letter-spacing: var(--tracking-tight);
1006
+ }
1007
+ .tracking-wider {
1008
+ --tw-tracking: var(--tracking-wider);
1009
+ letter-spacing: var(--tracking-wider);
1010
+ }
1011
+ .break-words {
1012
+ overflow-wrap: break-word;
1013
+ }
1014
+ .wrap-break-word {
1015
+ overflow-wrap: break-word;
1016
+ }
1017
+ .whitespace-nowrap {
1018
+ white-space: nowrap;
1019
+ }
1020
+ .whitespace-pre-wrap {
1021
+ white-space: pre-wrap;
1022
+ }
1023
+ .text-amber-500 {
1024
+ color: var(--color-amber-500);
1025
+ }
1026
+ .text-amber-700 {
1027
+ color: var(--color-amber-700);
1028
+ }
1029
+ .text-amber-800 {
1030
+ color: var(--color-amber-800);
1031
+ }
1032
+ .text-background {
1033
+ color: var(--background);
1034
+ }
1035
+ .text-blue-600 {
1036
+ color: var(--color-blue-600);
1037
+ }
1038
+ .text-card-foreground {
1039
+ color: var(--card-foreground);
1040
+ }
1041
+ .text-destructive {
1042
+ color: var(--destructive);
1043
+ }
1044
+ .text-foreground {
1045
+ color: var(--foreground);
1046
+ }
1047
+ .text-foreground\/30 {
1048
+ color: var(--foreground);
1049
+ @supports (color: color-mix(in lab, red, red)) {
1050
+ color: color-mix(in oklab, var(--foreground) 30%, transparent);
1051
+ }
1052
+ }
1053
+ .text-foreground\/40 {
1054
+ color: var(--foreground);
1055
+ @supports (color: color-mix(in lab, red, red)) {
1056
+ color: color-mix(in oklab, var(--foreground) 40%, transparent);
1057
+ }
1058
+ }
1059
+ .text-foreground\/80 {
1060
+ color: var(--foreground);
1061
+ @supports (color: color-mix(in lab, red, red)) {
1062
+ color: color-mix(in oklab, var(--foreground) 80%, transparent);
1063
+ }
1064
+ }
1065
+ .text-green-600 {
1066
+ color: var(--color-green-600);
1067
+ }
1068
+ .text-muted-foreground {
1069
+ color: var(--muted-foreground);
1070
+ }
1071
+ .text-muted-foreground\/40 {
1072
+ color: var(--muted-foreground);
1073
+ @supports (color: color-mix(in lab, red, red)) {
1074
+ color: color-mix(in oklab, var(--muted-foreground) 40%, transparent);
1075
+ }
1076
+ }
1077
+ .text-muted-foreground\/60 {
1078
+ color: var(--muted-foreground);
1079
+ @supports (color: color-mix(in lab, red, red)) {
1080
+ color: color-mix(in oklab, var(--muted-foreground) 60%, transparent);
1081
+ }
1082
+ }
1083
+ .text-muted-foreground\/70 {
1084
+ color: var(--muted-foreground);
1085
+ @supports (color: color-mix(in lab, red, red)) {
1086
+ color: color-mix(in oklab, var(--muted-foreground) 70%, transparent);
1087
+ }
1088
+ }
1089
+ .text-primary {
1090
+ color: var(--primary);
1091
+ }
1092
+ .text-primary-foreground {
1093
+ color: var(--primary-foreground);
1094
+ }
1095
+ .text-secondary-foreground {
1096
+ color: var(--secondary-foreground);
1097
+ }
1098
+ .text-white {
1099
+ color: var(--color-white);
1100
+ }
1101
+ .text-yellow-600 {
1102
+ color: var(--color-yellow-600);
1103
+ }
1104
+ .capitalize {
1105
+ text-transform: capitalize;
1106
+ }
1107
+ .lowercase {
1108
+ text-transform: lowercase;
1109
+ }
1110
+ .uppercase {
1111
+ text-transform: uppercase;
1112
+ }
1113
+ .italic {
1114
+ font-style: italic;
1115
+ }
1116
+ .underline-offset-4 {
1117
+ text-underline-offset: 4px;
1118
+ }
1119
+ .opacity-0 {
1120
+ opacity: 0%;
1121
+ }
1122
+ .opacity-40 {
1123
+ opacity: 40%;
1124
+ }
1125
+ .opacity-50 {
1126
+ opacity: 50%;
1127
+ }
1128
+ .opacity-70 {
1129
+ opacity: 70%;
1130
+ }
1131
+ .opacity-80 {
1132
+ opacity: 80%;
1133
+ }
1134
+ .shadow {
1135
+ --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));
1136
+ box-shadow:
1137
+ var(--tw-inset-shadow),
1138
+ var(--tw-inset-ring-shadow),
1139
+ var(--tw-ring-offset-shadow),
1140
+ var(--tw-ring-shadow),
1141
+ var(--tw-shadow);
1142
+ }
1143
+ .shadow-md {
1144
+ --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));
1145
+ box-shadow:
1146
+ var(--tw-inset-shadow),
1147
+ var(--tw-inset-ring-shadow),
1148
+ var(--tw-ring-offset-shadow),
1149
+ var(--tw-ring-shadow),
1150
+ var(--tw-shadow);
1151
+ }
1152
+ .shadow-sm {
1153
+ --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));
1154
+ box-shadow:
1155
+ var(--tw-inset-shadow),
1156
+ var(--tw-inset-ring-shadow),
1157
+ var(--tw-ring-offset-shadow),
1158
+ var(--tw-ring-shadow),
1159
+ var(--tw-shadow);
1160
+ }
1161
+ .outline {
1162
+ outline-style: var(--tw-outline-style);
1163
+ outline-width: 1px;
1164
+ }
1165
+ .filter {
1166
+ 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,);
1167
+ }
1168
+ .transition {
1169
+ transition-property:
1170
+ color,
1171
+ background-color,
1172
+ border-color,
1173
+ outline-color,
1174
+ text-decoration-color,
1175
+ fill,
1176
+ stroke,
1177
+ --tw-gradient-from,
1178
+ --tw-gradient-via,
1179
+ --tw-gradient-to,
1180
+ opacity,
1181
+ box-shadow,
1182
+ transform,
1183
+ translate,
1184
+ scale,
1185
+ rotate,
1186
+ filter,
1187
+ -webkit-backdrop-filter,
1188
+ backdrop-filter,
1189
+ display,
1190
+ content-visibility,
1191
+ overlay,
1192
+ pointer-events;
1193
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1194
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1195
+ }
1196
+ .transition-all {
1197
+ transition-property: all;
1198
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1199
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1200
+ }
1201
+ .transition-colors {
1202
+ transition-property:
1203
+ color,
1204
+ background-color,
1205
+ border-color,
1206
+ outline-color,
1207
+ text-decoration-color,
1208
+ fill,
1209
+ stroke,
1210
+ --tw-gradient-from,
1211
+ --tw-gradient-via,
1212
+ --tw-gradient-to;
1213
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1214
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1215
+ }
1216
+ .transition-opacity {
1217
+ transition-property: opacity;
1218
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1219
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1220
+ }
1221
+ .duration-150 {
1222
+ --tw-duration: 150ms;
1223
+ transition-duration: 150ms;
1224
+ }
1225
+ .duration-200 {
1226
+ --tw-duration: 200ms;
1227
+ transition-duration: 200ms;
1228
+ }
1229
+ .duration-300 {
1230
+ --tw-duration: 300ms;
1231
+ transition-duration: 300ms;
1232
+ }
1233
+ .group-hover\:opacity-100 {
1234
+ &:is(:where(.group):hover *) {
1235
+ @media (hover: hover) {
1236
+ opacity: 100%;
1237
+ }
1238
+ }
1239
+ }
1240
+ .file\:border-0 {
1241
+ &::file-selector-button {
1242
+ border-style: var(--tw-border-style);
1243
+ border-width: 0px;
1244
+ }
1245
+ }
1246
+ .file\:bg-transparent {
1247
+ &::file-selector-button {
1248
+ background-color: transparent;
1249
+ }
1250
+ }
1251
+ .file\:text-sm {
1252
+ &::file-selector-button {
1253
+ font-size: var(--text-sm);
1254
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1255
+ }
1256
+ }
1257
+ .file\:font-medium {
1258
+ &::file-selector-button {
1259
+ --tw-font-weight: var(--font-weight-medium);
1260
+ font-weight: var(--font-weight-medium);
1261
+ }
1262
+ }
1263
+ .placeholder\:text-muted-foreground {
1264
+ &::placeholder {
1265
+ color: var(--muted-foreground);
1266
+ }
1267
+ }
1268
+ .hover\:border-foreground\/10 {
1269
+ &:hover {
1270
+ @media (hover: hover) {
1271
+ border-color: var(--foreground);
1272
+ @supports (color: color-mix(in lab, red, red)) {
1273
+ border-color: color-mix(in oklab, var(--foreground) 10%, transparent);
1274
+ }
1275
+ }
1276
+ }
1277
+ }
1278
+ .hover\:border-foreground\/15 {
1279
+ &:hover {
1280
+ @media (hover: hover) {
1281
+ border-color: var(--foreground);
1282
+ @supports (color: color-mix(in lab, red, red)) {
1283
+ border-color: color-mix(in oklab, var(--foreground) 15%, transparent);
1284
+ }
1285
+ }
1286
+ }
1287
+ }
1288
+ .hover\:border-foreground\/20 {
1289
+ &:hover {
1290
+ @media (hover: hover) {
1291
+ border-color: var(--foreground);
1292
+ @supports (color: color-mix(in lab, red, red)) {
1293
+ border-color: color-mix(in oklab, var(--foreground) 20%, transparent);
1294
+ }
1295
+ }
1296
+ }
1297
+ }
1298
+ .hover\:border-foreground\/50 {
1299
+ &:hover {
1300
+ @media (hover: hover) {
1301
+ border-color: var(--foreground);
1302
+ @supports (color: color-mix(in lab, red, red)) {
1303
+ border-color: color-mix(in oklab, var(--foreground) 50%, transparent);
1304
+ }
1305
+ }
1306
+ }
1307
+ }
1308
+ .hover\:bg-accent {
1309
+ &:hover {
1310
+ @media (hover: hover) {
1311
+ background-color: var(--accent);
1312
+ }
1313
+ }
1314
+ }
1315
+ .hover\:bg-accent\/30 {
1316
+ &:hover {
1317
+ @media (hover: hover) {
1318
+ background-color: var(--accent);
1319
+ @supports (color: color-mix(in lab, red, red)) {
1320
+ background-color: color-mix(in oklab, var(--accent) 30%, transparent);
1321
+ }
1322
+ }
1323
+ }
1324
+ }
1325
+ .hover\:bg-accent\/50 {
1326
+ &:hover {
1327
+ @media (hover: hover) {
1328
+ background-color: var(--accent);
1329
+ @supports (color: color-mix(in lab, red, red)) {
1330
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
1331
+ }
1332
+ }
1333
+ }
1334
+ }
1335
+ .hover\:bg-destructive\/90 {
1336
+ &:hover {
1337
+ @media (hover: hover) {
1338
+ background-color: var(--destructive);
1339
+ @supports (color: color-mix(in lab, red, red)) {
1340
+ background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
1341
+ }
1342
+ }
1343
+ }
1344
+ }
1345
+ .hover\:bg-primary\/90 {
1346
+ &:hover {
1347
+ @media (hover: hover) {
1348
+ background-color: var(--primary);
1349
+ @supports (color: color-mix(in lab, red, red)) {
1350
+ background-color: color-mix(in oklab, var(--primary) 90%, transparent);
1351
+ }
1352
+ }
1353
+ }
1354
+ }
1355
+ .hover\:bg-secondary\/80 {
1356
+ &:hover {
1357
+ @media (hover: hover) {
1358
+ background-color: var(--secondary);
1359
+ @supports (color: color-mix(in lab, red, red)) {
1360
+ background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
1361
+ }
1362
+ }
1363
+ }
1364
+ }
1365
+ .hover\:text-accent-foreground {
1366
+ &:hover {
1367
+ @media (hover: hover) {
1368
+ color: var(--accent-foreground);
1369
+ }
1370
+ }
1371
+ }
1372
+ .hover\:text-foreground {
1373
+ &:hover {
1374
+ @media (hover: hover) {
1375
+ color: var(--foreground);
1376
+ }
1377
+ }
1378
+ }
1379
+ .hover\:underline {
1380
+ &:hover {
1381
+ @media (hover: hover) {
1382
+ text-decoration-line: underline;
1383
+ }
1384
+ }
1385
+ }
1386
+ .hover\:shadow-md {
1387
+ &:hover {
1388
+ @media (hover: hover) {
1389
+ --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));
1390
+ box-shadow:
1391
+ var(--tw-inset-shadow),
1392
+ var(--tw-inset-ring-shadow),
1393
+ var(--tw-ring-offset-shadow),
1394
+ var(--tw-ring-shadow),
1395
+ var(--tw-shadow);
1396
+ }
1397
+ }
1398
+ }
1399
+ .focus\:ring-2 {
1400
+ &:focus {
1401
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1402
+ box-shadow:
1403
+ var(--tw-inset-shadow),
1404
+ var(--tw-inset-ring-shadow),
1405
+ var(--tw-ring-offset-shadow),
1406
+ var(--tw-ring-shadow),
1407
+ var(--tw-shadow);
1408
+ }
1409
+ }
1410
+ .focus\:ring-ring {
1411
+ &:focus {
1412
+ --tw-ring-color: var(--ring);
1413
+ }
1414
+ }
1415
+ .focus\:ring-offset-2 {
1416
+ &:focus {
1417
+ --tw-ring-offset-width: 2px;
1418
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1419
+ }
1420
+ }
1421
+ .focus\:outline-none {
1422
+ &:focus {
1423
+ --tw-outline-style: none;
1424
+ outline-style: none;
1425
+ }
1426
+ }
1427
+ .focus-visible\:ring-1 {
1428
+ &:focus-visible {
1429
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1430
+ box-shadow:
1431
+ var(--tw-inset-shadow),
1432
+ var(--tw-inset-ring-shadow),
1433
+ var(--tw-ring-offset-shadow),
1434
+ var(--tw-ring-shadow),
1435
+ var(--tw-shadow);
1436
+ }
1437
+ }
1438
+ .focus-visible\:ring-ring {
1439
+ &:focus-visible {
1440
+ --tw-ring-color: var(--ring);
1441
+ }
1442
+ }
1443
+ .focus-visible\:outline-none {
1444
+ &:focus-visible {
1445
+ --tw-outline-style: none;
1446
+ outline-style: none;
1447
+ }
1448
+ }
1449
+ .active\:scale-\[0\.98\] {
1450
+ &:active {
1451
+ scale: 0.98;
1452
+ }
1453
+ }
1454
+ .disabled\:pointer-events-none {
1455
+ &:disabled {
1456
+ pointer-events: none;
1457
+ }
1458
+ }
1459
+ .disabled\:cursor-not-allowed {
1460
+ &:disabled {
1461
+ cursor: not-allowed;
1462
+ }
1463
+ }
1464
+ .disabled\:opacity-50 {
1465
+ &:disabled {
1466
+ opacity: 50%;
1467
+ }
1468
+ }
1469
+ .sm\:inline {
1470
+ @media (width >= 40rem) {
1471
+ display: inline;
1472
+ }
1473
+ }
1474
+ .sm\:grid-cols-2 {
1475
+ @media (width >= 40rem) {
1476
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1477
+ }
1478
+ }
1479
+ .dark\:border-blue-500\/50 {
1480
+ &:is(.dark *) {
1481
+ border-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 50%, transparent);
1482
+ @supports (color: color-mix(in lab, red, red)) {
1483
+ border-color: color-mix(in oklab, var(--color-blue-500) 50%, transparent);
1484
+ }
1485
+ }
1486
+ }
1487
+ .dark\:bg-amber-500\/5 {
1488
+ &:is(.dark *) {
1489
+ background-color: color-mix(in srgb, oklch(76.9% 0.188 70.08) 5%, transparent);
1490
+ @supports (color: color-mix(in lab, red, red)) {
1491
+ background-color: color-mix(in oklab, var(--color-amber-500) 5%, transparent);
1492
+ }
1493
+ }
1494
+ }
1495
+ .dark\:text-amber-200 {
1496
+ &:is(.dark *) {
1497
+ color: var(--color-amber-200);
1498
+ }
1499
+ }
1500
+ .dark\:text-amber-300 {
1501
+ &:is(.dark *) {
1502
+ color: var(--color-amber-300);
1503
+ }
1504
+ }
1505
+ .dark\:text-amber-400 {
1506
+ &:is(.dark *) {
1507
+ color: var(--color-amber-400);
1508
+ }
1509
+ }
1510
+ .dark\:text-blue-400 {
1511
+ &:is(.dark *) {
1512
+ color: var(--color-blue-400);
1513
+ }
1514
+ }
1515
+ .\[\&_svg\]\:pointer-events-none {
1516
+ & svg {
1517
+ pointer-events: none;
1518
+ }
1519
+ }
1520
+ .\[\&_svg\]\:size-4 {
1521
+ & svg {
1522
+ width: calc(var(--spacing) * 4);
1523
+ height: calc(var(--spacing) * 4);
1524
+ }
1525
+ }
1526
+ .\[\&_svg\]\:shrink-0 {
1527
+ & svg {
1528
+ flex-shrink: 0;
1529
+ }
1530
+ }
1531
+ }
1532
+ :host,
1533
+ .clipper-plugin-root {
1534
+ --radius: 0.625rem;
1535
+ }
1536
+ @layer base {
1537
+ * {
1538
+ border-color: var(--border);
1539
+ }
1540
+ }
1541
+ @property --tw-rotate-x { syntax: "*"; inherits: false; }
1542
+ @property --tw-rotate-y { syntax: "*"; inherits: false; }
1543
+ @property --tw-rotate-z { syntax: "*"; inherits: false; }
1544
+ @property --tw-skew-x { syntax: "*"; inherits: false; }
1545
+ @property --tw-skew-y { syntax: "*"; inherits: false; }
1546
+ @property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
1547
+ @property --tw-divide-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
1548
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
1549
+ @property --tw-leading { syntax: "*"; inherits: false; }
1550
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
1551
+ @property --tw-tracking { syntax: "*"; inherits: false; }
1552
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1553
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
1554
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1555
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1556
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
1557
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1558
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
1559
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1560
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
1561
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1562
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
1563
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
1564
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
1565
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1566
+ @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
1567
+ @property --tw-blur { syntax: "*"; inherits: false; }
1568
+ @property --tw-brightness { syntax: "*"; inherits: false; }
1569
+ @property --tw-contrast { syntax: "*"; inherits: false; }
1570
+ @property --tw-grayscale { syntax: "*"; inherits: false; }
1571
+ @property --tw-hue-rotate { syntax: "*"; inherits: false; }
1572
+ @property --tw-invert { syntax: "*"; inherits: false; }
1573
+ @property --tw-opacity { syntax: "*"; inherits: false; }
1574
+ @property --tw-saturate { syntax: "*"; inherits: false; }
1575
+ @property --tw-sepia { syntax: "*"; inherits: false; }
1576
+ @property --tw-drop-shadow { syntax: "*"; inherits: false; }
1577
+ @property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
1578
+ @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1579
+ @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
1580
+ @property --tw-duration { syntax: "*"; inherits: false; }
1581
+ @keyframes spin {
1582
+ to {
1583
+ transform: rotate(360deg);
1584
+ }
1585
+ }
1586
+ @keyframes ping {
1587
+ 75%, 100% {
1588
+ transform: scale(2);
1589
+ opacity: 0;
1590
+ }
1591
+ }
1592
+ @keyframes pulse {
1593
+ 50% {
1594
+ opacity: 0.5;
1595
+ }
1596
+ }
1597
+ @layer properties {
1598
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1599
+ *,
1600
+ ::before,
1601
+ ::after,
1602
+ ::backdrop {
1603
+ --tw-rotate-x: initial;
1604
+ --tw-rotate-y: initial;
1605
+ --tw-rotate-z: initial;
1606
+ --tw-skew-x: initial;
1607
+ --tw-skew-y: initial;
1608
+ --tw-space-y-reverse: 0;
1609
+ --tw-divide-y-reverse: 0;
1610
+ --tw-border-style: solid;
1611
+ --tw-leading: initial;
1612
+ --tw-font-weight: initial;
1613
+ --tw-tracking: initial;
1614
+ --tw-shadow: 0 0 #0000;
1615
+ --tw-shadow-color: initial;
1616
+ --tw-shadow-alpha: 100%;
1617
+ --tw-inset-shadow: 0 0 #0000;
1618
+ --tw-inset-shadow-color: initial;
1619
+ --tw-inset-shadow-alpha: 100%;
1620
+ --tw-ring-color: initial;
1621
+ --tw-ring-shadow: 0 0 #0000;
1622
+ --tw-inset-ring-color: initial;
1623
+ --tw-inset-ring-shadow: 0 0 #0000;
1624
+ --tw-ring-inset: initial;
1625
+ --tw-ring-offset-width: 0px;
1626
+ --tw-ring-offset-color: #fff;
1627
+ --tw-ring-offset-shadow: 0 0 #0000;
1628
+ --tw-outline-style: solid;
1629
+ --tw-blur: initial;
1630
+ --tw-brightness: initial;
1631
+ --tw-contrast: initial;
1632
+ --tw-grayscale: initial;
1633
+ --tw-hue-rotate: initial;
1634
+ --tw-invert: initial;
1635
+ --tw-opacity: initial;
1636
+ --tw-saturate: initial;
1637
+ --tw-sepia: initial;
1638
+ --tw-drop-shadow: initial;
1639
+ --tw-drop-shadow-color: initial;
1640
+ --tw-drop-shadow-alpha: 100%;
1641
+ --tw-drop-shadow-size: initial;
1642
+ --tw-duration: initial;
1643
+ }
1644
+ }
1645
+ }
1646
+ /*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
1647
+ /*# sourceMappingURL=index.css.map */