@sidekick-coder/zenith-kit 0.0.12 → 0.0.14

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