@ivao/atmosphere-react 2.0.0-next.4 → 2.0.0-next.6

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.
@@ -20,6 +20,7 @@ import { CollapsibleContent } from '@radix-ui/react-collapsible';
20
20
  import { Root as CollapsibleRoot } from '@radix-ui/react-collapsible';
21
21
  import { CollapsibleTrigger } from '@radix-ui/react-collapsible';
22
22
  import { Column } from '@tanstack/react-table';
23
+ import { Component } from 'react';
23
24
  import { ComponentProps } from 'react';
24
25
  import { ComponentPropsWithoutRef } from 'react';
25
26
  import { ComponentType } from 'react';
@@ -129,6 +130,7 @@ import { TabsTriggerProps } from '@radix-ui/react-tabs';
129
130
  import { TdHTMLAttributes } from 'react';
130
131
  import { TextareaHTMLAttributes } from 'react';
131
132
  import { ThHTMLAttributes } from 'react';
133
+ import { ToastProps as ToastProps_2 } from '@radix-ui/react-toast';
132
134
  import { ToggleGroupItemProps as ToggleGroupItemProps_2 } from '@radix-ui/react-toggle-group';
133
135
  import { ToggleProps } from '@radix-ui/react-toggle';
134
136
  import { TooltipContentProps } from '@radix-ui/react-tooltip';
@@ -206,7 +208,7 @@ export declare interface AlertProps extends Omit<ComponentProps<typeof AlertRoot
206
208
  className?: string;
207
209
  }>;
208
210
  title: string;
209
- description?: string;
211
+ description?: ReactNode;
210
212
  }
211
213
 
212
214
  export declare const AlertRoot: ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
@@ -672,6 +674,13 @@ inset?: boolean;
672
674
 
673
675
  export { DropdownMenuTrigger }
674
676
 
677
+ export declare class ErrorBoundary extends Component<Props, State> {
678
+ state: State;
679
+ static getDerivedStateFromError(error: Error): State;
680
+ componentDidCatch(error: Error, errorInfo: React.ErrorInfo): void;
681
+ render(): string | number | boolean | Iterable<ReactNode> | JSX_2.Element | null | undefined;
682
+ }
683
+
675
684
  export declare const H1: ForwardRefExoticComponent<HTMLAttributes<HTMLHeadingElement> & RefAttributes<HTMLHeadingElement>>;
676
685
 
677
686
  export declare const H2: ForwardRefExoticComponent<HTMLAttributes<HTMLHeadingElement> & RefAttributes<HTMLHeadingElement>>;
@@ -912,6 +921,11 @@ export { Portal as SheetPortal }
912
921
 
913
922
  export declare const Progress: ForwardRefExoticComponent<Omit<ProgressProps & RefAttributes<HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>;
914
923
 
924
+ declare interface Props {
925
+ debugMode: boolean;
926
+ children: ReactNode;
927
+ }
928
+
915
929
  export declare const RadioGroup: ForwardRefExoticComponent<RadioGroupProps & RefAttributes<HTMLDivElement>>;
916
930
 
917
931
  export declare const RadioGroupItem: ForwardRefExoticComponent<Omit<RadioGroupItemProps_2 & RefAttributes<HTMLButtonElement>, "ref"> & RefAttributes<HTMLButtonElement>>;
@@ -1109,6 +1123,11 @@ export declare const SliderTrack: ForwardRefExoticComponent<Omit<SliderTrackProp
1109
1123
 
1110
1124
  export declare const Small: ForwardRefExoticComponent<HTMLAttributes<HTMLElement> & RefAttributes<HTMLElement>>;
1111
1125
 
1126
+ declare interface State {
1127
+ hasError: boolean;
1128
+ error?: Error;
1129
+ }
1130
+
1112
1131
  export declare const Subtle: ForwardRefExoticComponent<HTMLAttributes<HTMLParagraphElement> & RefAttributes<HTMLParagraphElement>>;
1113
1132
 
1114
1133
  export declare const Switch: ForwardRefExoticComponent<Omit<Omit<SwitchProps & RefAttributes<HTMLButtonElement>, "ref"> & RefAttributes<HTMLButtonElement>, "ref"> & RefAttributes<HTMLButtonElement>>;
@@ -1190,14 +1209,18 @@ export declare const ThemeProvider: ComponentType<PropsWithChildren>;
1190
1209
 
1191
1210
  export declare const Toast: ComponentType<ToastProps>;
1192
1211
 
1193
- declare interface ToastProps {
1212
+ declare type ToastProps = {
1194
1213
  title: string;
1195
1214
  description?: string;
1196
1215
  duration?: number;
1197
- toastProps?: ToastProps;
1216
+ toastProps?: ComponentProps<typeof ToastRoot>;
1217
+ } & ({
1198
1218
  actionAltText: string;
1199
- action?: ReactNode;
1200
- }
1219
+ action: ReactNode;
1220
+ } | {
1221
+ actionAltText?: never;
1222
+ action?: never;
1223
+ });
1201
1224
 
1202
1225
  export declare const ToastProvider: ComponentType<PropsWithChildren<ToastProviderProps>>;
1203
1226
 
@@ -1205,6 +1228,10 @@ declare interface ToastProviderProps {
1205
1228
  swipeDirection?: ComponentPropsWithoutRef<typeof Provider>['swipeDirection'];
1206
1229
  }
1207
1230
 
1231
+ declare const ToastRoot: ForwardRefExoticComponent<Omit<ToastProps_2 & RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
1232
+ variant?: "default" | "destructive" | null | undefined;
1233
+ } & ClassProp) | undefined) => string> & RefAttributes<HTMLLIElement>>;
1234
+
1208
1235
  export declare const Toggle: ForwardRefExoticComponent<Omit<ToggleProps & RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
1209
1236
  variant?: "default" | "outline" | null | undefined;
1210
1237
  size?: "default" | "sm" | "lg" | null | undefined;
@@ -1,3 +1,3 @@
1
1
  @tailwind base;*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }
2
2
 
3
- /*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Nunito Sans,sans-serif,ui-sans-serif,system-ui,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:IBM Plex Mono,monospace,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}:root{--atmos-50:182 197 249;--atmos-100:164 182 247;--atmos-200:126 152 244;--atmos-300:88 122 241;--atmos-400:51 92 238;--atmos-500:19 66 228;--atmos-600:16 55 191;--atmos-700:13 44 153;--atmos-800:9 29 101;--atmos-900:4 14 50;--atmos:13 44 153;--ocean-50:215 221 241;--ocean-100:200 208 236;--ocean-200:170 182 225;--ocean-300:140 156 215;--ocean-400:109 131 204;--ocean-500:79 105 194;--ocean-600:60 85 172;--ocean-700:45 64 130;--ocean-800:31 44 89;--ocean-900:16 23 47;--ocean:60 85 172;--fuselage-50:249 250 255;--fuselage-100:238 239 245;--fuselage-150:224 225 236;--fuselage-200:210 211 224;--fuselage-250:186 187 204;--fuselage-300:167 168 187;--fuselage-400:139 140 169;--fuselage-450:116 117 152;--fuselage-500:96 98 130;--fuselage-550:79 80 107;--fuselage-600:61 63 84;--fuselage-700:44 45 60;--fuselage-800:33 33 46;--fuselage-900:25 26 35;--fuselage-950:18 19 27;--semantic-red-50:251 218 218;--semantic-red-100:249 199 199;--semantic-red-200:245 162 162;--semantic-red-300:241 126 126;--semantic-red-400:237 89 89;--semantic-red-500:233 52 52;--semantic-red-600:207 22 22;--semantic-red-700:156 17 17;--semantic-red-800:105 11 11;--semantic-red-900:55 6 6;--semantic-red:233 52 52;--semantic-green-50:188 239 206;--semantic-green-100:172 236 193;--semantic-green-200:138 228 169;--semantic-green-300:105 220 145;--semantic-green-400:72 213 120;--semantic-green-500:46 198 98;--semantic-green-600:35 152 75;--semantic-green-700:25 107 53;--semantic-green-800:14 61 30;--semantic-green-900:4 16 8;--semantic-green:46 198 98;--semantic-yellow-50:254 247 223;--semantic-yellow-100:254 242 203;--semantic-yellow-200:252 233 163;--semantic-yellow-300:251 223 123;--semantic-yellow-400:250 214 84;--semantic-yellow-500:249 204 44;--semantic-yellow-600:230 181 7;--semantic-yellow-700:176 138 5;--semantic-yellow-800:121 95 3;--semantic-yellow-900:67 52 2;--semantic-yellow:249 204 44;--semantic-blue-50:250 251 253;--semantic-blue-100:237 242 250;--semantic-blue-200:219 229 244;--semantic-blue-300:188 207 234;--semantic-blue-400:157 184 224;--semantic-blue-500:126 162 214;--semantic-blue-600:83 131 200;--semantic-blue-700:55 103 173;--semantic-blue-800:41 78 130;--semantic-blue-900:28 52 88;--semantic-blue:126 162 214;--product-creators:139 92 246;--product-aurora-light:75 127 126;--product-aurora-mid:49 91 90;--product-aurora-dark:8 38 40;--product-altitude-light:98 123 160;--product-altitude-mid:1 16 35;--product-altitude-dark:0 3 7;--product-artifice-light:234 152 78;--product-artifice-mid:229 128 46;--product-artifice-dark:226 110 23;--product-artifice-low:168 103 0;--background:var(--fuselage-50);--foreground:var(--fuselage-800);--card:var(--fuselage-100);--card-foreground:var(--fuselage-800);--popover:var(--fuselage-50);--popover-foreground:var(--fuselage-800);--primary:var(--atmos-700);--primary-foreground:var(--atmos-50);--secondary:var(--fuselage-100);--secondary-foreground:var(--fuselage-800);--muted:var(--fuselage-200);--muted-foreground:var(--fuselage-500);--accent:var(--fuselage-250);--accent-foreground:var(--fuselage-500);--destructive:var(--semantic-red-600);--destructive-foreground:var(--semantic-red-50);--border:var(--fuselage-150);--input:var(--fuselage-150);--ring:var(--fuselage-200);--radius:0.6rem}.dark{--background:var(--fuselage-950);--foreground:var(--fuselage-100);--card:var(--fuselage-900);--card-foreground:var(--fuselage-200);--popover:var(--fuselage-950);--popover-foreground:var(--fuselage-200);--primary:var(--fuselage-50);--primary-foreground:var(--fuselage-800);--secondary:var(--fuselage-800);--secondary-foreground:var(--fuselage-100);--muted:var(--fuselage-700);--muted-foreground:var(--fuselage-500);--accent:var(--fuselage-700);--accent-foreground:var(--fuselage-300);--destructive:var(--semantic-red-600);--destructive-foreground:var(--semantic-red-50);--border:var(--fuselage-700);--input:var(--fuselage-900);--ring:var(--fuselage-800)}body{--tw-bg-opacity:1;background-color:rgb(var(--background)/var(--tw-bg-opacity,1));color:rgb(var(--foreground)/var(--tw-text-opacity,1))}body,h1{--tw-text-opacity:1}h1{font-size:2.25rem;line-height:2.5rem;font-weight:700;color:rgb(var(--fuselage-800)/var(--tw-text-opacity,1))}h1:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-50)/var(--tw-text-opacity,1))}h2,h3,h4,h5,h6{font-weight:600;--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}h2:is(.dark *),h3:is(.dark *),h4:is(.dark *),h5:is(.dark *),h6:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-300)/var(--tw-text-opacity,1))}h2{font-size:1.875rem;line-height:2.25rem}h3{font-size:1.5rem;line-height:2rem}h4{font-size:1.25rem}h4,h5{line-height:1.75rem}h5{font-size:1.125rem}h6{font-size:1rem;line-height:1.5rem}.border,.border-color-default{--tw-border-opacity:1;border-color:rgb(var(--fuselage-150)/var(--tw-border-opacity,1))}.border-color-default:is(.dark *),.border:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-700)/var(--tw-border-opacity,1))}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.visible{visibility:visible}.invisible{visibility:hidden}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.-inset-1{inset:-.25rem}.inset-0{inset:0}.inset-x-0{left:0;right:0}.inset-y-0{top:0;bottom:0}.-bottom-12{bottom:-3rem}.-left-12{left:-3rem}.-right-12{right:-3rem}.-top-12{top:-3rem}.bottom-0{bottom:0}.left-0{left:0}.left-1\/2{left:50%}.left-2{left:.5rem}.left-\[50\%\]{left:50%}.right-0{right:0}.right-1{right:.25rem}.right-2{right:.5rem}.right-4{right:1rem}.top-0{top:0}.top-1{top:.25rem}.top-1\.5{top:.375rem}.top-1\/2{top:50%}.top-4{top:1rem}.top-6{top:1.5rem}.top-\[50\%\]{top:50%}.top-\[60\%\]{top:60%}.top-full{top:100%}.top-px{top:1px}.z-10{z-index:10}.z-50{z-index:50}.z-\[100\]{z-index:100}.z-\[1\]{z-index:1}.m-0{margin:0}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-top:.25rem;margin-bottom:.25rem}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.-ml-3{margin-left:-.75rem}.-ml-4{margin-left:-1rem}.-mr-0\.5{margin-right:-.125rem}.-mt-4{margin-top:-1rem}.mb-2{margin-bottom:.5rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-4{margin-left:1rem}.ml-6{margin-left:1.5rem}.ml-8{margin-left:2rem}.ml-auto{margin-left:auto}.mr-2{margin-right:.5rem}.mt-1{margin-top:.25rem}.mt-1\.5{margin-top:.375rem}.mt-10{margin-top:2.5rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.\!flex{display:flex!important}.flex{display:flex}.inline-flex{display:inline-flex}.\!table{display:table!important}.table{display:table}.grid{display:grid}.hidden{display:none}.aspect-square{aspect-ratio:1/1}.size-1\.5{width:.375rem;height:.375rem}.size-10{width:2.5rem;height:2.5rem}.size-2{width:.5rem;height:.5rem}.size-2\.5{width:.625rem;height:.625rem}.size-3{width:.75rem;height:.75rem}.size-3\.5{width:.875rem;height:.875rem}.size-4{width:1rem;height:1rem}.size-8{width:2rem;height:2rem}.size-9{width:2.25rem;height:2.25rem}.size-\[--cell-size\]{width:var(--cell-size);height:var(--cell-size)}.size-full{width:100%;height:100%}.h-1\.5{height:.375rem}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-2\.5{height:.625rem}.h-24{height:6rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[--cell-size\]{height:var(--cell-size)}.h-\[125px\]{height:125px}.h-\[1px\]{height:1px}.h-\[200px\]{height:200px}.h-\[20px\]{height:20px}.h-\[var\(--radix-navigation-menu-viewport-height\)\]{height:var(--radix-navigation-menu-viewport-height)}.h-\[var\(--radix-select-trigger-height\)\]{height:var(--radix-select-trigger-height)}.h-auto{height:auto}.h-full{height:100%}.h-px{height:1px}.h-screen{height:100vh}.max-h-96{max-height:24rem}.max-h-\[300px\]{max-height:300px}.max-h-screen{max-height:100vh}.min-h-9{min-height:2.25rem}.min-h-96{min-height:24rem}.min-h-\[350px\]{min-height:350px}.min-h-\[80px\]{min-height:80px}.w-0{width:0}.w-12{width:3rem}.w-2\.5{width:.625rem}.w-32{width:8rem}.w-36{width:9rem}.w-4{width:1rem}.w-48{width:12rem}.w-64{width:16rem}.w-72{width:18rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-\[--cell-size\]{width:var(--cell-size)}.w-\[100px\]{width:100px}.w-\[150px\]{width:150px}.w-\[160px\]{width:160px}.w-\[1px\]{width:1px}.w-\[250px\]{width:250px}.w-\[280px\]{width:280px}.w-\[350px\]{width:350px}.w-\[400px\]{width:400px}.w-\[70px\]{width:70px}.w-\[80px\]{width:80px}.w-auto{width:auto}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.w-max{width:-moz-max-content;width:max-content}.w-px{width:1px}.min-w-0{min-width:0}.min-w-9{min-width:2.25rem}.min-w-\[--cell-size\]{min-width:var(--cell-size)}.min-w-\[8rem\]{min-width:8rem}.min-w-\[var\(--radix-select-trigger-width\)\]{min-width:var(--radix-select-trigger-width)}.max-w-\[500px\]{max-width:500px}.max-w-lg{max-width:32rem}.max-w-max{max-width:-moz-max-content;max-width:max-content}.flex-1{flex:1 1 0%}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.grow-0{flex-grow:0}.basis-full{flex-basis:100%}.caption-bottom{caption-side:bottom}.border-collapse{border-collapse:collapse}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-x-1\/2,.-translate-y-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2{--tw-translate-y:-50%}.translate-x-\[-50\%\]{--tw-translate-x:-50%}.translate-x-\[-50\%\],.translate-y-\[-50\%\]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-\[-50\%\]{--tw-translate-y:-50%}.translate-y-\[2px\]{--tw-translate-y:2px}.rotate-180,.translate-y-\[2px\]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-180{--tw-rotate:180deg}.rotate-45{--tw-rotate:45deg}.rotate-45,.rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-90{--tw-rotate:90deg}.scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.scale-95,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.touch-none{touch-action:none}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.scroll-m-20{scroll-margin:5rem}.list-decimal{list-style-type:decimal}.list-disc{list-style-type:disc}.list-none{list-style-type:none}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-stretch{align-items:stretch}.justify-start{justify-content:flex-start}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-stretch{justify-content:stretch}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.25rem*var(--tw-space-x-reverse));margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1.5rem*var(--tw-space-x-reverse));margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem*var(--tw-space-y-reverse))}.space-y-1\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.375rem*var(--tw-space-y-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.whitespace-pre{white-space:pre}.rounded{border-radius:.25rem}.rounded-\[4px\]{border-radius:4px}.rounded-\[inherit\]{border-radius:inherit}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-none{border-radius:0}.rounded-sm{border-radius:calc(var(--radius) - 4px)}.rounded-xl{border-radius:.75rem}.rounded-l-md{border-top-left-radius:calc(var(--radius) - 2px);border-bottom-left-radius:calc(var(--radius) - 2px)}.rounded-r-md{border-top-right-radius:calc(var(--radius) - 2px);border-bottom-right-radius:calc(var(--radius) - 2px)}.rounded-tl-sm{border-top-left-radius:calc(var(--radius) - 4px)}.border{border-width:1px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-l{border-left-width:1px}.border-l-2{border-left-width:2px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-atmos-700{--tw-border-opacity:1;border-color:rgb(var(--atmos-700)/var(--tw-border-opacity,1))}.border-destructive{--tw-border-opacity:1;border-color:rgb(var(--destructive)/var(--tw-border-opacity,1))}.border-fuselage-100{--tw-border-opacity:1;border-color:rgb(var(--fuselage-100)/var(--tw-border-opacity,1))}.border-fuselage-200{--tw-border-opacity:1;border-color:rgb(var(--fuselage-200)/var(--tw-border-opacity,1))}.border-fuselage-300{--tw-border-opacity:1;border-color:rgb(var(--fuselage-300)/var(--tw-border-opacity,1))}.border-fuselage-450\/50{border-color:rgb(var(--fuselage-450)/.5)}.border-green-600{--tw-border-opacity:1;border-color:rgb(22 163 74/var(--tw-border-opacity,1))}.border-input{--tw-border-opacity:1;border-color:rgb(var(--input)/var(--tw-border-opacity,1))}.border-primary{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity,1))}.border-primary\/50{border-color:rgb(var(--primary)/.5)}.border-semantic-red-600{--tw-border-opacity:1;border-color:rgb(var(--semantic-red-600)/var(--tw-border-opacity,1))}.border-transparent{border-color:transparent}.border-l-transparent{border-left-color:transparent}.border-t-transparent{border-top-color:transparent}.\!bg-transparent{background-color:transparent!important}.bg-accent{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.bg-atmos-700{--tw-bg-opacity:1;background-color:rgb(var(--atmos-700)/var(--tw-bg-opacity,1))}.bg-background{--tw-bg-opacity:1;background-color:rgb(var(--background)/var(--tw-bg-opacity,1))}.bg-black\/80{background-color:rgba(0,0,0,.8)}.bg-blue-50{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity,1))}.bg-border{--tw-bg-opacity:1;background-color:rgb(var(--border)/var(--tw-bg-opacity,1))}.bg-card{--tw-bg-opacity:1;background-color:rgb(var(--card)/var(--tw-bg-opacity,1))}.bg-destructive{--tw-bg-opacity:1;background-color:rgb(var(--destructive)/var(--tw-bg-opacity,1))}.bg-fuselage-100{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-100)/var(--tw-bg-opacity,1))}.bg-fuselage-150{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-150)/var(--tw-bg-opacity,1))}.bg-fuselage-200\/10{background-color:rgb(var(--fuselage-200)/.1)}.bg-fuselage-200\/20{background-color:rgb(var(--fuselage-200)/.2)}.bg-fuselage-50{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-50)/var(--tw-bg-opacity,1))}.bg-fuselage-950\/80{background-color:rgb(var(--fuselage-950)/.8)}.bg-green-50{--tw-bg-opacity:1;background-color:rgb(240 253 244/var(--tw-bg-opacity,1))}.bg-indigo-50{--tw-bg-opacity:1;background-color:rgb(238 242 255/var(--tw-bg-opacity,1))}.bg-muted{--tw-bg-opacity:1;background-color:rgb(var(--muted)/var(--tw-bg-opacity,1))}.bg-muted\/50{background-color:rgb(var(--muted)/.5)}.bg-ocean-400{--tw-bg-opacity:1;background-color:rgb(var(--ocean-400)/var(--tw-bg-opacity,1))}.bg-orange-50{--tw-bg-opacity:1;background-color:rgb(255 247 237/var(--tw-bg-opacity,1))}.bg-pink-50{--tw-bg-opacity:1;background-color:rgb(253 242 248/var(--tw-bg-opacity,1))}.bg-popover{--tw-bg-opacity:1;background-color:rgb(var(--popover)/var(--tw-bg-opacity,1))}.bg-primary{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity,1))}.bg-primary\/20{background-color:rgb(var(--primary)/.2)}.bg-purple-50{--tw-bg-opacity:1;background-color:rgb(250 245 255/var(--tw-bg-opacity,1))}.bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity,1))}.bg-red-600{--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity,1))}.bg-secondary{--tw-bg-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity,1))}.bg-semantic-green-500{--tw-bg-opacity:1;background-color:rgb(var(--semantic-green-500)/var(--tw-bg-opacity,1))}.bg-semantic-red-600{--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-600)/var(--tw-bg-opacity,1))}.bg-transparent{background-color:transparent}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity,1))}.fill-blue-700{fill:#1d4ed8}.fill-current{fill:currentColor}.fill-fuselage-500{fill:rgb(var(--fuselage-500)/1)}.fill-green-500{fill:#22c55e}.fill-indigo-700{fill:#4338ca}.fill-orange-800{fill:#9a3412}.fill-pink-700{fill:#be185d}.fill-purple-700{fill:#7e22ce}.fill-red-700{fill:#b91c1c}.fill-yellow-500{fill:#eab308}.stroke-fuselage-450\/50{stroke:rgb(var(--fuselage-450)/.5)}.p-0{padding:0}.p-1{padding:.25rem}.p-10{padding:2.5rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-\[1px\]{padding:1px}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-8{padding-left:2rem;padding-right:2rem}.px-\[--cell-size\]{padding-left:var(--cell-size);padding-right:var(--cell-size)}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pe-12{padding-inline-end:3rem}.pl-2{padding-left:.5rem}.pl-2\.5{padding-left:.625rem}.pl-4{padding-left:1rem}.pl-6{padding-left:1.5rem}.pl-8{padding-left:2rem}.pr-1{padding-right:.25rem}.pr-2{padding-right:.5rem}.pr-2\.5{padding-right:.625rem}.pr-6{padding-right:1.5rem}.pt-0{padding-top:0}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.align-middle{vertical-align:middle}.align-text-top{vertical-align:text-top}.font-head{font-family:Poppins,sans-serif}.font-mono{font-family:IBM Plex Mono,monospace,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:Nunito Sans,sans-serif,ui-sans-serif,system-ui,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-\[0\.8rem\]{font-size:.8rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.capitalize{text-transform:capitalize}.italic{font-style:italic}.leading-7{line-height:1.75rem}.leading-none{line-height:1}.leading-snug{line-height:1.375}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.tracking-widest{letter-spacing:.1em}.\!text-fuselage-550{--tw-text-opacity:1!important;color:rgb(var(--fuselage-550)/var(--tw-text-opacity,1))!important}.text-accent-foreground{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.text-atmos-50{--tw-text-opacity:1;color:rgb(var(--atmos-50)/var(--tw-text-opacity,1))}.text-atmos-700{--tw-text-opacity:1;color:rgb(var(--atmos-700)/var(--tw-text-opacity,1))}.text-blue-700{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity,1))}.text-card-foreground{--tw-text-opacity:1;color:rgb(var(--card-foreground)/var(--tw-text-opacity,1))}.text-current{color:currentColor}.text-destructive{--tw-text-opacity:1;color:rgb(var(--destructive)/var(--tw-text-opacity,1))}.text-destructive-foreground{--tw-text-opacity:1;color:rgb(var(--destructive-foreground)/var(--tw-text-opacity,1))}.text-foreground{--tw-text-opacity:1;color:rgb(var(--foreground)/var(--tw-text-opacity,1))}.text-foreground\/50{color:rgb(var(--foreground)/.5)}.text-fuselage-250{--tw-text-opacity:1;color:rgb(var(--fuselage-250)/var(--tw-text-opacity,1))}.text-fuselage-300{--tw-text-opacity:1;color:rgb(var(--fuselage-300)/var(--tw-text-opacity,1))}.text-fuselage-400{--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}.text-fuselage-450{--tw-text-opacity:1;color:rgb(var(--fuselage-450)/var(--tw-text-opacity,1))}.text-fuselage-50{--tw-text-opacity:1;color:rgb(var(--fuselage-50)/var(--tw-text-opacity,1))}.text-fuselage-500{--tw-text-opacity:1;color:rgb(var(--fuselage-500)/var(--tw-text-opacity,1))}.text-fuselage-550{--tw-text-opacity:1;color:rgb(var(--fuselage-550)/var(--tw-text-opacity,1))}.text-fuselage-600{--tw-text-opacity:1;color:rgb(var(--fuselage-600)/var(--tw-text-opacity,1))}.text-fuselage-700{--tw-text-opacity:1;color:rgb(var(--fuselage-700)/var(--tw-text-opacity,1))}.text-fuselage-800{--tw-text-opacity:1;color:rgb(var(--fuselage-800)/var(--tw-text-opacity,1))}.text-green-700{--tw-text-opacity:1;color:rgb(21 128 61/var(--tw-text-opacity,1))}.text-indigo-700{--tw-text-opacity:1;color:rgb(67 56 202/var(--tw-text-opacity,1))}.text-inherit{color:inherit}.text-muted-foreground{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.text-muted-foreground\/70{color:rgb(var(--muted-foreground)/.7)}.text-orange-700{--tw-text-opacity:1;color:rgb(194 65 12/var(--tw-text-opacity,1))}.text-pink-700{--tw-text-opacity:1;color:rgb(190 24 93/var(--tw-text-opacity,1))}.text-popover-foreground{--tw-text-opacity:1;color:rgb(var(--popover-foreground)/var(--tw-text-opacity,1))}.text-primary{--tw-text-opacity:1;color:rgb(var(--primary)/var(--tw-text-opacity,1))}.text-purple-700{--tw-text-opacity:1;color:rgb(126 34 206/var(--tw-text-opacity,1))}.text-red-700{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity,1))}.text-semantic-green-700{--tw-text-opacity:1;color:rgb(var(--semantic-green-700)/var(--tw-text-opacity,1))}.text-semantic-red-50{--tw-text-opacity:1;color:rgb(var(--semantic-red-50)/var(--tw-text-opacity,1))}.text-semantic-red-600{--tw-text-opacity:1;color:rgb(var(--semantic-red-600)/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.text-yellow-700{--tw-text-opacity:1;color:rgb(161 98 7/var(--tw-text-opacity,1))}.no-underline{text-decoration-line:none}.underline-offset-4{text-underline-offset:4px}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.opacity-90{opacity:.9}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-md,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-0,.ring-1{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-inset{--tw-ring-inset:inset}.\!ring-fuselage-600\/10{--tw-ring-color:rgb(var(--fuselage-600)/0.1)!important}.ring-blue-700\/10{--tw-ring-color:rgba(29,78,216,.1)}.ring-fuselage-600\/10{--tw-ring-color:rgb(var(--fuselage-600)/0.1)}.ring-green-600\/20{--tw-ring-color:rgba(22,163,74,.2)}.ring-indigo-700\/10{--tw-ring-color:rgba(67,56,202,.1)}.ring-orange-600\/20{--tw-ring-color:rgba(234,88,12,.2)}.ring-pink-700\/10{--tw-ring-color:rgba(190,24,93,.1)}.ring-purple-700\/10{--tw-ring-color:rgba(126,34,206,.1)}.ring-red-600\/10{--tw-ring-color:rgba(220,38,38,.1)}.ring-yellow-600\/20{--tw-ring-color:rgba(202,138,4,.2)}.ring-offset-background{--tw-ring-offset-color:rgb(var(--background)/1)}.filter{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)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);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))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);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))}}.animate-in{animation-name:enter;animation-duration:.15s;--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial}.fade-in-0{--tw-enter-opacity:0}.zoom-in-95{--tw-enter-scale:.95}.duration-200{animation-duration:.2s}.duration-300{animation-duration:.3s}.ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)}.\[--cell-size\:2rem\]{--cell-size:2rem}.file\:border-0::file-selector-button{border-width:0}.file\:bg-transparent::file-selector-button{background-color:transparent}.file\:text-sm::file-selector-button{font-size:.875rem;line-height:1.25rem}.file\:font-medium::file-selector-button{font-weight:500}.placeholder\:text-muted-foreground::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.placeholder\:text-muted-foreground::placeholder{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.first\:mt-0:first-child{margin-top:0}.even\:bg-semantic-blue-100:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(var(--semantic-blue-100)/var(--tw-bg-opacity,1))}.focus-within\:ring-2:focus-within{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-within\:ring-fuselage-400:focus-within{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-400)/var(--tw-ring-opacity,1))}.focus-within\:ring-offset-2:focus-within{--tw-ring-offset-width:2px}.hover\:border-fuselage-500:hover{--tw-border-opacity:1;border-color:rgb(var(--fuselage-500)/var(--tw-border-opacity,1))}.hover\:bg-accent:hover{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.hover\:bg-atmos-800:hover{--tw-bg-opacity:1;background-color:rgb(var(--atmos-800)/var(--tw-bg-opacity,1))}.hover\:bg-fuselage-100:hover{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-100)/var(--tw-bg-opacity,1))}.hover\:bg-fuselage-200:hover{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-200)/var(--tw-bg-opacity,1))}.hover\:bg-fuselage-200\/75:hover{background-color:rgb(var(--fuselage-200)/.75)}.hover\:bg-fuselage-500\/10:hover{background-color:rgb(var(--fuselage-500)/.1)}.hover\:bg-muted:hover{--tw-bg-opacity:1;background-color:rgb(var(--muted)/var(--tw-bg-opacity,1))}.hover\:bg-muted\/10:hover{background-color:rgb(var(--muted)/.1)}.hover\:bg-semantic-red-700:hover{--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-700)/var(--tw-bg-opacity,1))}.hover\:text-accent-foreground:hover{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.hover\:text-atmos-800:hover{--tw-text-opacity:1;color:rgb(var(--atmos-800)/var(--tw-text-opacity,1))}.hover\:text-foreground:hover{--tw-text-opacity:1;color:rgb(var(--foreground)/var(--tw-text-opacity,1))}.hover\:text-fuselage-400:hover{--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}.hover\:text-fuselage-500:hover{--tw-text-opacity:1;color:rgb(var(--fuselage-500)/var(--tw-text-opacity,1))}.hover\:text-fuselage-700:hover{--tw-text-opacity:1;color:rgb(var(--fuselage-700)/var(--tw-text-opacity,1))}.hover\:text-fuselage-800:hover{--tw-text-opacity:1;color:rgb(var(--fuselage-800)/var(--tw-text-opacity,1))}.hover\:text-muted-foreground:hover{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}.focus\:bg-accent:focus{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.focus\:bg-fuselage-100:focus{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-100)/var(--tw-bg-opacity,1))}.focus\:text-accent-foreground:focus{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.focus\:text-fuselage-800:focus{--tw-text-opacity:1;color:rgb(var(--fuselage-800)/var(--tw-text-opacity,1))}.focus\:opacity-100:focus{opacity:1}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-fuselage-400:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-400)/var(--tw-ring-opacity,1))}.focus\:ring-ring:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--ring)/var(--tw-ring-opacity,1))}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:ring-1:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\:ring-fuselage-700:focus-visible{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-700)/var(--tw-ring-opacity,1))}.focus-visible\:ring-ring:focus-visible{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--ring)/var(--tw-ring-opacity,1))}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.focus-visible\:ring-offset-background:focus-visible{--tw-ring-offset-color:rgb(var(--background)/1)}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:border-fuselage-300:disabled{--tw-border-opacity:1;border-color:rgb(var(--fuselage-300)/var(--tw-border-opacity,1))}.disabled\:bg-semantic-red-700:disabled{--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-700)/var(--tw-bg-opacity,1))}.disabled\:text-atmos-100:disabled{--tw-text-opacity:1;color:rgb(var(--atmos-100)/var(--tw-text-opacity,1))}.disabled\:text-atmos-300:disabled{--tw-text-opacity:1;color:rgb(var(--atmos-300)/var(--tw-text-opacity,1))}.disabled\:text-fuselage-300:disabled{--tw-text-opacity:1;color:rgb(var(--fuselage-300)/var(--tw-text-opacity,1))}.disabled\:text-semantic-red-300:disabled{--tw-text-opacity:1;color:rgb(var(--semantic-red-300)/var(--tw-text-opacity,1))}.disabled\:opacity-50:disabled{opacity:.5}.group:hover .group-hover\:bg-atmos-600{--tw-bg-opacity:1;background-color:rgb(var(--atmos-600)/var(--tw-bg-opacity,1))}.group:hover .group-hover\:bg-fuselage-200\/50{background-color:rgb(var(--fuselage-200)/.5)}.group:hover .group-hover\:stroke-fuselage-450{stroke:rgb(var(--fuselage-450)/1)}.group:hover .group-hover\:text-atmos-100{--tw-text-opacity:1;color:rgb(var(--atmos-100)/var(--tw-text-opacity,1))}.group:hover .group-hover\:text-fuselage-600{--tw-text-opacity:1;color:rgb(var(--fuselage-600)/var(--tw-text-opacity,1))}.group:hover .group-hover\:opacity-100{opacity:1}.group.destructive .group-\[\.destructive\]\:border-muted\/40{border-color:rgb(var(--muted)/.4)}.group.destructive .group-\[\.destructive\]\:text-semantic-red-300{--tw-text-opacity:1;color:rgb(var(--semantic-red-300)/var(--tw-text-opacity,1))}.group.destructive .group-\[\.destructive\]\:hover\:border-destructive\/30:hover{border-color:rgb(var(--destructive)/.3)}.group.destructive .group-\[\.destructive\]\:hover\:bg-destructive:hover{--tw-bg-opacity:1;background-color:rgb(var(--destructive)/var(--tw-bg-opacity,1))}.group.destructive .group-\[\.destructive\]\:hover\:text-destructive-foreground:hover{--tw-text-opacity:1;color:rgb(var(--destructive-foreground)/var(--tw-text-opacity,1))}.group.destructive .group-\[\.destructive\]\:hover\:text-semantic-red-50:hover{--tw-text-opacity:1;color:rgb(var(--semantic-red-50)/var(--tw-text-opacity,1))}.group.destructive .group-\[\.destructive\]\:focus\:ring-destructive:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--destructive)/var(--tw-ring-opacity,1))}.group.destructive .group-\[\.destructive\]\:focus\:ring-red-400:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(248 113 113/var(--tw-ring-opacity,1))}.group.destructive .group-\[\.destructive\]\:focus\:ring-offset-red-600:focus{--tw-ring-offset-color:#dc2626}.peer:disabled~.peer-disabled\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\:opacity-70{opacity:.7}.aria-disabled\:opacity-50[aria-disabled=true]{opacity:.5}.aria-selected\:text-muted-foreground[aria-selected=true]{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.data-\[disabled\=true\]\:pointer-events-none[data-disabled=true],.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]{--tw-translate-y:0.25rem}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom],.data-\[side\=left\]\:-translate-x-1[data-side=left]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[side\=left\]\:-translate-x-1[data-side=left]{--tw-translate-x:-0.25rem}.data-\[side\=right\]\:translate-x-1[data-side=right]{--tw-translate-x:0.25rem}.data-\[side\=right\]\:translate-x-1[data-side=right],.data-\[side\=top\]\:-translate-y-1[data-side=top]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[side\=top\]\:-translate-y-1[data-side=top]{--tw-translate-y:-0.25rem}.data-\[state\=checked\]\:translate-x-4[data-state=checked]{--tw-translate-x:1rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked],.data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel]{--tw-translate-x:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end]{--tw-translate-x:var(--radix-toast-swipe-end-x)}.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end],.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move]{--tw-translate-x:var(--radix-toast-swipe-move-x)}@keyframes accordion-up{0%{height:var(--radix-accordion-content-height)}to{height:0}}.data-\[state\=closed\]\:animate-accordion-up[data-state=closed]{animation:accordion-up .2s ease-out}@keyframes accordion-down{0%{height:0}to{height:var(--radix-accordion-content-height)}}.data-\[state\=open\]\:animate-accordion-down[data-state=open]{animation:accordion-down .2s ease-out}.data-\[range-end\=true\]\:rounded-md[data-range-end=true]{border-radius:calc(var(--radius) - 2px)}.data-\[range-middle\=true\]\:rounded-none[data-range-middle=true]{border-radius:0}.data-\[range-start\=true\]\:rounded-md[data-range-start=true]{border-radius:calc(var(--radius) - 2px)}.data-\[selected\=true\]\:rounded-none[data-selected=true]{border-radius:0}.data-\[active\]\:bg-accent\/50[data-active]{background-color:rgb(var(--accent)/.5)}.data-\[range-end\=true\]\:bg-primary[data-range-end=true]{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity,1))}.data-\[range-middle\=true\]\:bg-accent[data-range-middle=true]{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.data-\[range-start\=true\]\:bg-primary[data-range-start=true],.data-\[selected-single\=true\]\:bg-primary[data-selected-single=true]{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity,1))}.data-\[selected\=true\]\:bg-accent[data-selected=true]{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.data-\[state\=active\]\:bg-primary[data-state=active],.data-\[state\=checked\]\:bg-primary[data-state=checked]{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity,1))}.data-\[state\=on\]\:bg-accent[data-state=on],.data-\[state\=open\]\:bg-accent[data-state=open]{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.data-\[state\=open\]\:bg-accent\/50[data-state=open]{background-color:rgb(var(--accent)/.5)}.data-\[state\=open\]\:bg-fuselage-100[data-state=open]{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-100)/var(--tw-bg-opacity,1))}.data-\[state\=open\]\:bg-muted[data-state=open]{--tw-bg-opacity:1;background-color:rgb(var(--muted)/var(--tw-bg-opacity,1))}.data-\[state\=open\]\:bg-secondary[data-state=open]{--tw-bg-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity,1))}.data-\[state\=selected\]\:bg-muted\/30[data-state=selected]{background-color:rgb(var(--muted)/.3)}.data-\[state\=unchecked\]\:bg-input[data-state=unchecked]{--tw-bg-opacity:1;background-color:rgb(var(--input)/var(--tw-bg-opacity,1))}.data-\[range-end\=true\]\:text-primary-foreground[data-range-end=true]{--tw-text-opacity:1;color:rgb(var(--primary-foreground)/var(--tw-text-opacity,1))}.data-\[range-middle\=true\]\:text-accent-foreground[data-range-middle=true]{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.data-\[range-start\=true\]\:text-primary-foreground[data-range-start=true],.data-\[selected-single\=true\]\:text-primary-foreground[data-selected-single=true]{--tw-text-opacity:1;color:rgb(var(--primary-foreground)/var(--tw-text-opacity,1))}.data-\[selected\=true\]\:text-accent-foreground[data-selected=true]{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.data-\[state\=active\]\:text-primary-foreground[data-state=active],.data-\[state\=checked\]\:text-primary-foreground[data-state=checked]{--tw-text-opacity:1;color:rgb(var(--primary-foreground)/var(--tw-text-opacity,1))}.data-\[state\=on\]\:text-accent-foreground[data-state=on]{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.data-\[state\=open\]\:text-muted-foreground[data-state=open]{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.data-\[disabled\=true\]\:opacity-50[data-disabled=true],.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[state\=active\]\:shadow-sm[data-state=active]{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.data-\[swipe\=move\]\:transition-none[data-swipe=move]{transition-property:none}.data-\[state\=closed\]\:duration-300[data-state=closed]{transition-duration:.3s}.data-\[state\=open\]\:duration-500[data-state=open]{transition-duration:.5s}.data-\[motion\^\=from-\]\:animate-in[data-motion^=from-],.data-\[state\=open\]\:animate-in[data-state=open],.data-\[state\=visible\]\:animate-in[data-state=visible]{animation-name:enter;animation-duration:.15s;--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial}.data-\[motion\^\=to-\]\:animate-out[data-motion^=to-],.data-\[state\=closed\]\:animate-out[data-state=closed],.data-\[state\=hidden\]\:animate-out[data-state=hidden],.data-\[swipe\=end\]\:animate-out[data-swipe=end]{animation-name:exit;animation-duration:.15s;--tw-exit-opacity:initial;--tw-exit-scale:initial;--tw-exit-rotate:initial;--tw-exit-translate-x:initial;--tw-exit-translate-y:initial}.data-\[motion\^\=from-\]\:fade-in[data-motion^=from-]{--tw-enter-opacity:0}.data-\[motion\^\=to-\]\:fade-out[data-motion^=to-],.data-\[state\=closed\]\:fade-out-0[data-state=closed]{--tw-exit-opacity:0}.data-\[state\=closed\]\:fade-out-80[data-state=closed]{--tw-exit-opacity:0.8}.data-\[state\=hidden\]\:fade-out[data-state=hidden]{--tw-exit-opacity:0}.data-\[state\=open\]\:fade-in-0[data-state=open],.data-\[state\=visible\]\:fade-in[data-state=visible]{--tw-enter-opacity:0}.data-\[state\=closed\]\:zoom-out-95[data-state=closed]{--tw-exit-scale:.95}.data-\[state\=open\]\:zoom-in-90[data-state=open]{--tw-enter-scale:.9}.data-\[state\=open\]\:zoom-in-95[data-state=open]{--tw-enter-scale:.95}.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion=from-end]{--tw-enter-translate-x:13rem}.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion=from-start]{--tw-enter-translate-x:-13rem}.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion=to-end]{--tw-exit-translate-x:13rem}.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion=to-start]{--tw-exit-translate-x:-13rem}.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom]{--tw-enter-translate-y:-0.5rem}.data-\[side\=left\]\:slide-in-from-right-2[data-side=left]{--tw-enter-translate-x:0.5rem}.data-\[side\=right\]\:slide-in-from-left-2[data-side=right]{--tw-enter-translate-x:-0.5rem}.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top]{--tw-enter-translate-y:0.5rem}.data-\[state\=closed\]\:slide-out-to-bottom[data-state=closed]{--tw-exit-translate-y:100%}.data-\[state\=closed\]\:slide-out-to-left[data-state=closed]{--tw-exit-translate-x:-100%}.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state=closed]{--tw-exit-translate-x:-50%}.data-\[state\=closed\]\:slide-out-to-right-full[data-state=closed],.data-\[state\=closed\]\:slide-out-to-right[data-state=closed]{--tw-exit-translate-x:100%}.data-\[state\=closed\]\:slide-out-to-top[data-state=closed]{--tw-exit-translate-y:-100%}.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state=closed]{--tw-exit-translate-y:-48%}.data-\[state\=open\]\:slide-in-from-bottom[data-state=open]{--tw-enter-translate-y:100%}.data-\[state\=open\]\:slide-in-from-left[data-state=open]{--tw-enter-translate-x:-100%}.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state=open]{--tw-enter-translate-x:-50%}.data-\[state\=open\]\:slide-in-from-right[data-state=open]{--tw-enter-translate-x:100%}.data-\[state\=open\]\:slide-in-from-top[data-state=open]{--tw-enter-translate-y:-100%}.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state=open]{--tw-enter-translate-y:-48%}.data-\[state\=open\]\:slide-in-from-top-full[data-state=open]{--tw-enter-translate-y:-100%}.data-\[state\=closed\]\:duration-300[data-state=closed]{animation-duration:.3s}.data-\[state\=open\]\:duration-500[data-state=open]{animation-duration:.5s}.group\/day[data-focused=true] .group-data-\[focused\=true\]\/day\:relative{position:relative}.group\/day[data-focused=true] .group-data-\[focused\=true\]\/day\:z-10{z-index:10}.group[data-state=open] .group-data-\[state\=open\]\:rotate-180{--tw-rotate:180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group\/day[data-focused=true] .group-data-\[focused\=true\]\/day\:border-ring{--tw-border-opacity:1;border-color:rgb(var(--ring)/var(--tw-border-opacity,1))}.group\/day[data-focused=true] .group-data-\[focused\=true\]\/day\:ring-\[3px\]{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.group\/day[data-focused=true] .group-data-\[focused\=true\]\/day\:ring-ring\/50{--tw-ring-color:rgb(var(--ring)/0.5)}@keyframes toast-hide{0%{opacity:1}to{opacity:0}}.radix-state-closed\:animate-toast-hide[data-state=closed]{animation:toast-hide .1s ease-in forwards}@keyframes toast-slide-in-bottom{0%{transform:translateY(calc(100% + 1rem))}to{transform:translateY(0)}}.radix-state-open\:animate-toast-slide-in-bottom[data-state=open]{animation:toast-slide-in-bottom .15s cubic-bezier(.16,1,.3,1)}.radix-swipe-cancel\:translate-x-0[data-swipe=cancel]{--tw-translate-x:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.radix-swipe-cancel\:duration-200[data-swipe=cancel]{transition-duration:.2s;animation-duration:.2s}.radix-swipe-direction-down\:translate-y-radix-toast-swipe-move-y[data-swipe-direction=down]{transform:translateY(var(--radix-toast-swipe-move-y))}@keyframes toast-swipe-out-y{0%{transform:translateY(var(--radix-toast-swipe-end-y))}to{transform:translateY(calc(100% + 1rem))}}.radix-swipe-direction-down\:radix-swipe-end\:animate-toast-swipe-out-y[data-swipe=end][data-swipe-direction=down]{animation:toast-swipe-out-y .1s ease-out forwards}.radix-swipe-direction-right\:translate-x-radix-toast-swipe-move-x[data-swipe-direction=right]{transform:translateX(var(--radix-toast-swipe-move-x))}@keyframes toast-swipe-out-x{0%{transform:translateX(var(--radix-toast-swipe-end-x))}to{transform:translateX(calc(100% + 1rem))}}.radix-swipe-direction-right\:radix-swipe-end\:animate-toast-swipe-out-x[data-swipe=end][data-swipe-direction=right]{animation:toast-swipe-out-x .1s ease-out forwards}.dark\:border-destructive:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--destructive)/var(--tw-border-opacity,1))}.dark\:border-fuselage-400:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-400)/var(--tw-border-opacity,1))}.dark\:border-fuselage-50:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-50)/var(--tw-border-opacity,1))}.dark\:border-fuselage-500:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-500)/var(--tw-border-opacity,1))}.dark\:border-fuselage-600:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-600)/var(--tw-border-opacity,1))}.dark\:border-fuselage-700:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-700)/var(--tw-border-opacity,1))}.dark\:border-fuselage-800\/50:is(.dark *){border-color:rgb(var(--fuselage-800)/.5)}.dark\:border-fuselage-900:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-900)/var(--tw-border-opacity,1))}.dark\:border-green-500:is(.dark *){--tw-border-opacity:1;border-color:rgb(34 197 94/var(--tw-border-opacity,1))}.dark\:border-primary:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity,1))}.dark\:border-transparent:is(.dark *){border-color:transparent}.dark\:bg-atmos-500:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--atmos-500)/var(--tw-bg-opacity,1))}.dark\:bg-blue-400\/10:is(.dark *){background-color:rgba(96,165,250,.1)}.dark\:bg-fuselage-400:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-400)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-50:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-50)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-500:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-500)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-500\/10:is(.dark *){background-color:rgb(var(--fuselage-500)/.1)}.dark\:bg-fuselage-700:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-800:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-800)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-800\/80:is(.dark *){background-color:rgb(var(--fuselage-800)/.8)}.dark\:bg-fuselage-900:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-900)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-950:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-950)/var(--tw-bg-opacity,1))}.dark\:bg-green-500\/10:is(.dark *){background-color:rgba(34,197,94,.1)}.dark\:bg-indigo-400\/10:is(.dark *){background-color:rgba(129,140,248,.1)}.dark\:bg-muted-foreground:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--muted-foreground)/var(--tw-bg-opacity,1))}.dark\:bg-orange-400\/10:is(.dark *){background-color:rgba(251,146,60,.1)}.dark\:bg-pink-400\/10:is(.dark *){background-color:rgba(244,114,182,.1)}.dark\:bg-purple-400\/10:is(.dark *){background-color:rgba(192,132,252,.1)}.dark\:bg-red-400\/10:is(.dark *){background-color:hsla(0,91%,71%,.1)}.dark\:bg-semantic-green-500\/10:is(.dark *){background-color:rgb(var(--semantic-green-500)/.1)}.dark\:bg-semantic-red-600:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-600)/var(--tw-bg-opacity,1))}.dark\:bg-yellow-400\/10:is(.dark *){background-color:rgba(250,204,21,.1)}.dark\:fill-blue-400:is(.dark *){fill:#60a5fa}.dark\:fill-fuselage-500:is(.dark *){fill:rgb(var(--fuselage-500)/1)}.dark\:fill-indigo-400:is(.dark *){fill:#818cf8}.dark\:fill-orange-400:is(.dark *){fill:#fb923c}.dark\:fill-pink-400:is(.dark *){fill:#f472b6}.dark\:fill-purple-400:is(.dark *){fill:#c084fc}.dark\:fill-red-400:is(.dark *){fill:#f87171}.dark\:fill-yellow-500:is(.dark *){fill:#eab308}.dark\:stroke-white\/20:is(.dark *){stroke:hsla(0,0%,100%,.2)}.dark\:\!text-fuselage-450:is(.dark *){--tw-text-opacity:1!important;color:rgb(var(--fuselage-450)/var(--tw-text-opacity,1))!important}.dark\:text-atmos-50:is(.dark *){--tw-text-opacity:1;color:rgb(var(--atmos-50)/var(--tw-text-opacity,1))}.dark\:text-blue-400:is(.dark *){--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity,1))}.dark\:text-destructive-foreground:is(.dark *){--tw-text-opacity:1;color:rgb(var(--destructive-foreground)/var(--tw-text-opacity,1))}.dark\:text-fuselage-100:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-100)/var(--tw-text-opacity,1))}.dark\:text-fuselage-200:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-200)/var(--tw-text-opacity,1))}.dark\:text-fuselage-250:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-250)/var(--tw-text-opacity,1))}.dark\:text-fuselage-300:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-300)/var(--tw-text-opacity,1))}.dark\:text-fuselage-400:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}.dark\:text-fuselage-450:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-450)/var(--tw-text-opacity,1))}.dark\:text-fuselage-50:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-50)/var(--tw-text-opacity,1))}.dark\:text-fuselage-500:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-500)/var(--tw-text-opacity,1))}.dark\:text-fuselage-600:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-600)/var(--tw-text-opacity,1))}.dark\:text-fuselage-800:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-800)/var(--tw-text-opacity,1))}.dark\:text-green-500:is(.dark *){--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity,1))}.dark\:text-indigo-400:is(.dark *){--tw-text-opacity:1;color:rgb(129 140 248/var(--tw-text-opacity,1))}.dark\:text-orange-400:is(.dark *){--tw-text-opacity:1;color:rgb(251 146 60/var(--tw-text-opacity,1))}.dark\:text-pink-400:is(.dark *){--tw-text-opacity:1;color:rgb(244 114 182/var(--tw-text-opacity,1))}.dark\:text-primary:is(.dark *){--tw-text-opacity:1;color:rgb(var(--primary)/var(--tw-text-opacity,1))}.dark\:text-purple-400:is(.dark *){--tw-text-opacity:1;color:rgb(192 132 252/var(--tw-text-opacity,1))}.dark\:text-red-400:is(.dark *){--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity,1))}.dark\:text-semantic-green-300:is(.dark *){--tw-text-opacity:1;color:rgb(var(--semantic-green-300)/var(--tw-text-opacity,1))}.dark\:text-semantic-green-500:is(.dark *){--tw-text-opacity:1;color:rgb(var(--semantic-green-500)/var(--tw-text-opacity,1))}.dark\:text-semantic-red-50:is(.dark *){--tw-text-opacity:1;color:rgb(var(--semantic-red-50)/var(--tw-text-opacity,1))}.dark\:text-white:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.dark\:text-yellow-500:is(.dark *){--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity,1))}.dark\:\!ring-fuselage-500\/20:is(.dark *){--tw-ring-color:rgb(var(--fuselage-500)/0.2)!important}.dark\:ring-blue-400\/30:is(.dark *){--tw-ring-color:rgba(96,165,250,.3)}.dark\:ring-fuselage-500\/20:is(.dark *){--tw-ring-color:rgb(var(--fuselage-500)/0.2)}.dark\:ring-green-500\/20:is(.dark *){--tw-ring-color:rgba(34,197,94,.2)}.dark\:ring-indigo-400\/30:is(.dark *){--tw-ring-color:rgba(129,140,248,.3)}.dark\:ring-orange-400\/20:is(.dark *){--tw-ring-color:rgba(251,146,60,.2)}.dark\:ring-pink-400\/20:is(.dark *){--tw-ring-color:rgba(244,114,182,.2)}.dark\:ring-purple-400\/30:is(.dark *){--tw-ring-color:rgba(192,132,252,.3)}.dark\:ring-red-400\/20:is(.dark *){--tw-ring-color:hsla(0,91%,71%,.2)}.dark\:ring-yellow-400\/20:is(.dark *){--tw-ring-color:rgba(250,204,21,.2)}.dark\:even\:bg-fuselage-900:nth-child(2n):is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-900)/var(--tw-bg-opacity,1))}.dark\:focus-within\:ring-fuselage-200:focus-within:is(.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-200)/var(--tw-ring-opacity,1))}.dark\:hover\:bg-fuselage-600:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-600)/var(--tw-bg-opacity,1))}.dark\:hover\:bg-fuselage-700:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}.dark\:hover\:bg-fuselage-800:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-800)/var(--tw-bg-opacity,1))}.dark\:hover\:bg-muted\/30:hover:is(.dark *){background-color:rgb(var(--muted)/.3)}.dark\:hover\:bg-semantic-red-700:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-700)/var(--tw-bg-opacity,1))}.dark\:hover\:bg-white\/5:hover:is(.dark *){background-color:hsla(0,0%,100%,.05)}.hover\:dark\:bg-fuselage-150:is(.dark *):hover{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-150)/var(--tw-bg-opacity,1))}.hover\:dark\:bg-fuselage-700:is(.dark *):hover{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}.dark\:hover\:text-fuselage-100:hover:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-100)/var(--tw-text-opacity,1))}.dark\:hover\:text-fuselage-200:hover:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-200)/var(--tw-text-opacity,1))}.dark\:hover\:text-fuselage-400:hover:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}.hover\:dark\:text-fuselage-250:is(.dark *):hover{--tw-text-opacity:1;color:rgb(var(--fuselage-250)/var(--tw-text-opacity,1))}.dark\:focus\:bg-fuselage-700:focus:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}.dark\:focus\:focus\:bg-fuselage-700:focus:focus:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}.dark\:focus\:text-fuselage-50:focus:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-50)/var(--tw-text-opacity,1))}.dark\:focus\:ring-fuselage-200:focus:is(.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-200)/var(--tw-ring-opacity,1))}.dark\:focus-visible\:ring-fuselage-550:focus-visible:is(.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-550)/var(--tw-ring-opacity,1))}.dark\:disabled\:border-fuselage-150:disabled:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-150)/var(--tw-border-opacity,1))}.dark\:disabled\:border-fuselage-500:disabled:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-500)/var(--tw-border-opacity,1))}.dark\:disabled\:bg-fuselage-150:disabled:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-150)/var(--tw-bg-opacity,1))}.dark\:disabled\:bg-fuselage-600:disabled:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-600)/var(--tw-bg-opacity,1))}.dark\:disabled\:bg-semantic-red-700:disabled:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-700)/var(--tw-bg-opacity,1))}.dark\:disabled\:text-fuselage-300:disabled:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-300)/var(--tw-text-opacity,1))}.dark\:disabled\:text-fuselage-400:disabled:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}.dark\:disabled\:text-fuselage-500:disabled:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-500)/var(--tw-text-opacity,1))}.dark\:disabled\:text-semantic-red-300:disabled:is(.dark *){--tw-text-opacity:1;color:rgb(var(--semantic-red-300)/var(--tw-text-opacity,1))}.group:hover .dark\:group-hover\:bg-fuselage-600:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-600)/var(--tw-bg-opacity,1))}.group:hover .group-hover\:dark\:stroke-fuselage-200:is(.dark *){stroke:rgb(var(--fuselage-200)/1)}.group:hover .dark\:group-hover\:text-fuselage-100:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-100)/var(--tw-text-opacity,1))}.dark\:data-\[state\=selected\]\:bg-muted[data-state=selected]:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--muted)/var(--tw-bg-opacity,1))}.data-\[state\=open\]\:dark\:bg-fuselage-700:is(.dark *)[data-state=open]{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}@media (min-width:400px){.xs\:flex-row{flex-direction:row}.xs\:items-center{align-items:center}}@media (min-width:640px){.sm\:bottom-0{bottom:0}.sm\:right-0{right:0}.sm\:top-auto{top:auto}.sm\:mt-0{margin-top:0}.sm\:max-w-md{max-width:28rem}.sm\:max-w-sm{max-width:24rem}.sm\:flex-row{flex-direction:row}.sm\:flex-col{flex-direction:column}.sm\:justify-end{justify-content:flex-end}.sm\:space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.sm\:rounded-lg{border-radius:var(--radius)}.sm\:text-left{text-align:left}.data-\[state\=open\]\:sm\:slide-in-from-bottom-full[data-state=open]{--tw-enter-translate-y:100%}}@media (min-width:768px){.md\:absolute{position:absolute}.md\:block{display:block}.md\:hidden{display:none}.md\:size-12{width:3rem;height:3rem}.md\:min-h-20{min-height:5rem}.md\:w-28{width:7rem}.md\:w-3\/4{width:75%}.md\:w-40{width:10rem}.md\:w-48{width:12rem}.md\:w-\[400px\]{width:400px}.md\:w-\[var\(--radix-navigation-menu-viewport-width\)\]{width:var(--radix-navigation-menu-viewport-width)}.md\:w-auto{width:auto}.md\:w-fit{width:-moz-fit-content;width:fit-content}.md\:max-w-\[420px\]{max-width:420px}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:gap-4{gap:1rem}.md\:p-3{padding:.75rem}.md\:text-base{font-size:1rem;line-height:1.5rem}.md\:text-xl{font-size:1.25rem;line-height:1.75rem}.md\:font-bold{font-weight:700}@keyframes toast-slide-in-right{0%{transform:translateX(calc(100% + 1rem))}to{transform:translateX(0)}}.md\:radix-state-open\:animate-toast-slide-in-right[data-state=open]{animation:toast-slide-in-right .15s cubic-bezier(.16,1,.3,1)}}@media (min-width:1024px){.lg\:flex{display:flex}.lg\:w-\[250px\]{width:250px}.lg\:w-\[500px\]{width:500px}.lg\:grid-cols-\[\.75fr_1fr\]{grid-template-columns:.75fr 1fr}.lg\:space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(2rem*var(--tw-space-x-reverse));margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)))}.lg\:text-5xl{font-size:3rem;line-height:1}}.\[\&\+div\]\:text-xs+div{font-size:.75rem;line-height:1rem}.\[\&\:first-child\[data-selected\=true\]_button\]\:rounded-l-md:first-child[data-selected=true] button{border-top-left-radius:calc(var(--radius) - 2px);border-bottom-left-radius:calc(var(--radius) - 2px)}.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){padding-right:0}.\[\&\:last-child\[data-selected\=true\]_button\]\:rounded-r-md:last-child[data-selected=true] button{border-top-right-radius:calc(var(--radius) - 2px);border-bottom-right-radius:calc(var(--radius) - 2px)}.\[\&\:not\(\:first-child\)\]\:mt-6:not(:first-child){margin-top:1.5rem}.dark\:\[\&\>h5\]\:text-destructive>h5:is(.dark *){--tw-text-opacity:1;color:rgb(var(--destructive)/var(--tw-text-opacity,1))}.dark\:\[\&\>h5\]\:text-fuselage-50>h5:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-50)/var(--tw-text-opacity,1))}.dark\:\[\&\>h5\]\:text-semantic-green-500>h5:is(.dark *){--tw-text-opacity:1;color:rgb(var(--semantic-green-500)/var(--tw-text-opacity,1))}.\[\&\>li\]\:mt-2>li{margin-top:.5rem}.\[\&\>span\]\:line-clamp-1>span{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.\[\&\>span\]\:text-xs>span{font-size:.75rem;line-height:1rem}.\[\&\>span\]\:opacity-70>span{opacity:.7}.\[\&\>svg\+div\]\:translate-y-\[-3px\]>svg+div{--tw-translate-y:-3px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\[\&\>svg\]\:absolute>svg{position:absolute}.\[\&\>svg\]\:left-4>svg{left:1rem}.\[\&\>svg\]\:top-4>svg{top:1rem}.\[\&\>svg\]\:size-3\.5>svg{width:.875rem;height:.875rem}.\[\&\>svg\]\:text-destructive>svg{--tw-text-opacity:1;color:rgb(var(--destructive)/var(--tw-text-opacity,1))}.\[\&\>svg\]\:text-foreground>svg{--tw-text-opacity:1;color:rgb(var(--foreground)/var(--tw-text-opacity,1))}.\[\&\>svg\]\:text-muted-foreground>svg{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.\[\&\>svg\]\:text-semantic-green-500>svg{--tw-text-opacity:1;color:rgb(var(--semantic-green-500)/var(--tw-text-opacity,1))}.\[\&\>svg\~\*\]\:pl-7>svg~*{padding-left:1.75rem}.\[\&\>tr\]\:last\:border-b-0:last-child>tr{border-bottom-width:0}.\[\&\[align\=center\]\]\:text-center[align=center]{text-align:center}.\[\&\[align\=right\]\]\:text-right[align=right]{text-align:right}.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg{--tw-rotate:180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading]{padding-left:.5rem;padding-right:.5rem}.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading]{padding-top:.375rem;padding-bottom:.375rem}.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading]{font-size:.75rem;line-height:1rem}.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading]{font-weight:500}.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading]{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden])~[cmdk-group]{padding-top:0}.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group]{padding-left:.5rem;padding-right:.5rem}.\[\&_\[cmdk-input-wrapper\]_svg\]\:size-5 [cmdk-input-wrapper] svg{width:1.25rem;height:1.25rem}.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input]{height:3rem}.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item]{padding-left:.5rem;padding-right:.5rem}.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item]{padding-top:.75rem;padding-bottom:.75rem}.\[\&_\[cmdk-item\]_svg\]\:size-5 [cmdk-item] svg{width:1.25rem;height:1.25rem}.\[\&_p\]\:leading-relaxed p{line-height:1.625}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:size-4 svg{width:1rem;height:1rem}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&_tr\:last-child\]\:border-0 tr:last-child{border-width:0}.\[\&_tr\]\:border-b tr{border-bottom-width:1px}[data-slot=card-content] .\[\[data-slot\=card-content\]_\&\]\:bg-transparent,[data-slot=popover-content] .\[\[data-slot\=popover-content\]_\&\]\:bg-transparent{background-color:transparent}
3
+ /*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Nunito Sans,sans-serif,ui-sans-serif,system-ui,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:IBM Plex Mono,monospace,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}:root{--atmos-50:182 197 249;--atmos-100:164 182 247;--atmos-200:126 152 244;--atmos-300:88 122 241;--atmos-400:51 92 238;--atmos-500:19 66 228;--atmos-600:16 55 191;--atmos-700:13 44 153;--atmos-800:9 29 101;--atmos-900:4 14 50;--atmos:13 44 153;--ocean-50:215 221 241;--ocean-100:200 208 236;--ocean-200:170 182 225;--ocean-300:140 156 215;--ocean-400:109 131 204;--ocean-500:79 105 194;--ocean-600:60 85 172;--ocean-700:45 64 130;--ocean-800:31 44 89;--ocean-900:16 23 47;--ocean:60 85 172;--fuselage-50:249 250 255;--fuselage-100:238 239 245;--fuselage-150:224 225 236;--fuselage-200:210 211 224;--fuselage-250:186 187 204;--fuselage-300:167 168 187;--fuselage-400:139 140 169;--fuselage-450:116 117 152;--fuselage-500:96 98 130;--fuselage-550:79 80 107;--fuselage-600:61 63 84;--fuselage-700:44 45 60;--fuselage-800:33 33 46;--fuselage-900:25 26 35;--fuselage-950:18 19 27;--semantic-red-50:251 218 218;--semantic-red-100:249 199 199;--semantic-red-200:245 162 162;--semantic-red-300:241 126 126;--semantic-red-400:237 89 89;--semantic-red-500:233 52 52;--semantic-red-600:207 22 22;--semantic-red-700:156 17 17;--semantic-red-800:105 11 11;--semantic-red-900:55 6 6;--semantic-red:233 52 52;--semantic-green-50:188 239 206;--semantic-green-100:172 236 193;--semantic-green-200:138 228 169;--semantic-green-300:105 220 145;--semantic-green-400:72 213 120;--semantic-green-500:46 198 98;--semantic-green-600:35 152 75;--semantic-green-700:25 107 53;--semantic-green-800:14 61 30;--semantic-green-900:4 16 8;--semantic-green:46 198 98;--semantic-yellow-50:254 247 223;--semantic-yellow-100:254 242 203;--semantic-yellow-200:252 233 163;--semantic-yellow-300:251 223 123;--semantic-yellow-400:250 214 84;--semantic-yellow-500:249 204 44;--semantic-yellow-600:230 181 7;--semantic-yellow-700:176 138 5;--semantic-yellow-800:121 95 3;--semantic-yellow-900:67 52 2;--semantic-yellow:249 204 44;--semantic-blue-50:250 251 253;--semantic-blue-100:237 242 250;--semantic-blue-200:219 229 244;--semantic-blue-300:188 207 234;--semantic-blue-400:157 184 224;--semantic-blue-500:126 162 214;--semantic-blue-600:83 131 200;--semantic-blue-700:55 103 173;--semantic-blue-800:41 78 130;--semantic-blue-900:28 52 88;--semantic-blue:126 162 214;--product-creators:139 92 246;--product-aurora-light:75 127 126;--product-aurora-mid:49 91 90;--product-aurora-dark:8 38 40;--product-altitude-light:98 123 160;--product-altitude-mid:1 16 35;--product-altitude-dark:0 3 7;--product-artifice-light:234 152 78;--product-artifice-mid:229 128 46;--product-artifice-dark:226 110 23;--product-artifice-low:168 103 0;--body:255 255 255;--background:var(--fuselage-50);--foreground:var(--fuselage-800);--card:var(--fuselage-100);--card-foreground:var(--fuselage-800);--popover:var(--fuselage-50);--popover-foreground:var(--fuselage-800);--primary:var(--atmos-700);--primary-foreground:var(--atmos-50);--secondary:var(--fuselage-100);--secondary-foreground:var(--fuselage-800);--muted:var(--fuselage-200);--muted-foreground:var(--fuselage-500);--accent:var(--fuselage-250);--accent-foreground:var(--fuselage-500);--destructive:var(--semantic-red-600);--destructive-foreground:var(--semantic-red-50);--border:var(--fuselage-150);--input:var(--fuselage-150);--ring:var(--fuselage-200);--radius:0.6rem}.dark{--body:var(--fuselage-950);--background:var(--fuselage-900);--foreground:var(--fuselage-100);--card:var(--fuselage-900);--card-foreground:var(--fuselage-200);--popover:var(--fuselage-900);--popover-foreground:var(--fuselage-200);--primary:var(--fuselage-50);--primary-foreground:var(--fuselage-800);--secondary:var(--fuselage-800);--secondary-foreground:var(--fuselage-100);--muted:var(--fuselage-700);--muted-foreground:var(--fuselage-500);--accent:var(--fuselage-700);--accent-foreground:var(--fuselage-300);--destructive:var(--semantic-red-600);--destructive-foreground:var(--semantic-red-50);--border:var(--fuselage-700);--input:var(--fuselage-900);--ring:var(--fuselage-800)}body{--tw-bg-opacity:1;background-color:rgb(var(--body)/var(--tw-bg-opacity,1));color:rgb(var(--foreground)/var(--tw-text-opacity,1))}body,h1{--tw-text-opacity:1}h1{font-size:2.25rem;line-height:2.5rem;font-weight:700;color:rgb(var(--fuselage-800)/var(--tw-text-opacity,1))}h1:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-50)/var(--tw-text-opacity,1))}h2,h3,h4,h5,h6{font-weight:600;--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}h2:is(.dark *),h3:is(.dark *),h4:is(.dark *),h5:is(.dark *),h6:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-300)/var(--tw-text-opacity,1))}h2{font-size:1.875rem;line-height:2.25rem}h3{font-size:1.5rem;line-height:2rem}h4{font-size:1.25rem}h4,h5{line-height:1.75rem}h5{font-size:1.125rem}h6{font-size:1rem;line-height:1.5rem}.border,.border-color-default{--tw-border-opacity:1;border-color:rgb(var(--fuselage-150)/var(--tw-border-opacity,1))}.border-color-default:is(.dark *),.border:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-700)/var(--tw-border-opacity,1))}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.visible{visibility:visible}.invisible{visibility:hidden}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.-inset-1{inset:-.25rem}.inset-0{inset:0}.inset-x-0{left:0;right:0}.inset-y-0{top:0;bottom:0}.-bottom-12{bottom:-3rem}.-left-12{left:-3rem}.-right-12{right:-3rem}.-top-12{top:-3rem}.bottom-0{bottom:0}.left-0{left:0}.left-1\/2{left:50%}.left-2{left:.5rem}.left-\[50\%\]{left:50%}.right-0{right:0}.right-1{right:.25rem}.right-2{right:.5rem}.right-4{right:1rem}.top-0{top:0}.top-1{top:.25rem}.top-1\.5{top:.375rem}.top-1\/2{top:50%}.top-4{top:1rem}.top-6{top:1.5rem}.top-\[50\%\]{top:50%}.top-\[60\%\]{top:60%}.top-full{top:100%}.top-px{top:1px}.z-10{z-index:10}.z-50{z-index:50}.z-\[100\]{z-index:100}.z-\[1\]{z-index:1}.m-0{margin:0}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-top:.25rem;margin-bottom:.25rem}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.-ml-3{margin-left:-.75rem}.-ml-4{margin-left:-1rem}.-mr-0\.5{margin-right:-.125rem}.-mt-4{margin-top:-1rem}.mb-2{margin-bottom:.5rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-4{margin-left:1rem}.ml-6{margin-left:1.5rem}.ml-8{margin-left:2rem}.ml-auto{margin-left:auto}.mr-2{margin-right:.5rem}.mt-1{margin-top:.25rem}.mt-1\.5{margin-top:.375rem}.mt-10{margin-top:2.5rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.\!flex{display:flex!important}.flex{display:flex}.inline-flex{display:inline-flex}.\!table{display:table!important}.table{display:table}.grid{display:grid}.hidden{display:none}.aspect-square{aspect-ratio:1/1}.size-1\.5{width:.375rem;height:.375rem}.size-10{width:2.5rem;height:2.5rem}.size-2{width:.5rem;height:.5rem}.size-2\.5{width:.625rem;height:.625rem}.size-3{width:.75rem;height:.75rem}.size-3\.5{width:.875rem;height:.875rem}.size-4{width:1rem;height:1rem}.size-8{width:2rem;height:2rem}.size-9{width:2.25rem;height:2.25rem}.size-\[--cell-size\]{width:var(--cell-size);height:var(--cell-size)}.size-full{width:100%;height:100%}.h-1\.5{height:.375rem}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-2\.5{height:.625rem}.h-24{height:6rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[--cell-size\]{height:var(--cell-size)}.h-\[125px\]{height:125px}.h-\[1px\]{height:1px}.h-\[200px\]{height:200px}.h-\[20px\]{height:20px}.h-\[var\(--radix-navigation-menu-viewport-height\)\]{height:var(--radix-navigation-menu-viewport-height)}.h-\[var\(--radix-select-trigger-height\)\]{height:var(--radix-select-trigger-height)}.h-auto{height:auto}.h-full{height:100%}.h-px{height:1px}.h-screen{height:100vh}.max-h-64{max-height:16rem}.max-h-96{max-height:24rem}.max-h-\[300px\]{max-height:300px}.max-h-screen{max-height:100vh}.min-h-9{min-height:2.25rem}.min-h-96{min-height:24rem}.min-h-\[350px\]{min-height:350px}.min-h-\[80px\]{min-height:80px}.min-h-screen{min-height:100vh}.w-0{width:0}.w-12{width:3rem}.w-14{width:3.5rem}.w-2\.5{width:.625rem}.w-32{width:8rem}.w-36{width:9rem}.w-4{width:1rem}.w-48{width:12rem}.w-64{width:16rem}.w-72{width:18rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-\[--cell-size\]{width:var(--cell-size)}.w-\[100px\]{width:100px}.w-\[150px\]{width:150px}.w-\[160px\]{width:160px}.w-\[1px\]{width:1px}.w-\[250px\]{width:250px}.w-\[280px\]{width:280px}.w-\[350px\]{width:350px}.w-\[400px\]{width:400px}.w-\[70px\]{width:70px}.w-\[80px\]{width:80px}.w-auto{width:auto}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.w-max{width:-moz-max-content;width:max-content}.w-px{width:1px}.min-w-0{min-width:0}.min-w-9{min-width:2.25rem}.min-w-\[--cell-size\]{min-width:var(--cell-size)}.min-w-\[8rem\]{min-width:8rem}.min-w-\[var\(--radix-select-trigger-width\)\]{min-width:var(--radix-select-trigger-width)}.max-w-\[500px\]{max-width:500px}.max-w-lg{max-width:32rem}.max-w-max{max-width:-moz-max-content;max-width:max-content}.max-w-md{max-width:28rem}.flex-1{flex:1 1 0%}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.grow-0{flex-grow:0}.basis-full{flex-basis:100%}.caption-bottom{caption-side:bottom}.border-collapse{border-collapse:collapse}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-x-1\/2,.-translate-y-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2{--tw-translate-y:-50%}.translate-x-\[-50\%\]{--tw-translate-x:-50%}.translate-x-\[-50\%\],.translate-y-\[-50\%\]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-\[-50\%\]{--tw-translate-y:-50%}.translate-y-\[2px\]{--tw-translate-y:2px}.rotate-180,.translate-y-\[2px\]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-180{--tw-rotate:180deg}.rotate-45{--tw-rotate:45deg}.rotate-45,.rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-90{--tw-rotate:90deg}.scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.scale-95,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.touch-none{touch-action:none}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.scroll-m-20{scroll-margin:5rem}.list-decimal{list-style-type:decimal}.list-disc{list-style-type:disc}.list-none{list-style-type:none}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-stretch{align-items:stretch}.justify-start{justify-content:flex-start}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-stretch{justify-content:stretch}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.25rem*var(--tw-space-x-reverse));margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1.5rem*var(--tw-space-x-reverse));margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem*var(--tw-space-y-reverse))}.space-y-1\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.375rem*var(--tw-space-y-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem*var(--tw-space-y-reverse))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.whitespace-pre{white-space:pre}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-\[4px\]{border-radius:4px}.rounded-\[inherit\]{border-radius:inherit}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-none{border-radius:0}.rounded-sm{border-radius:calc(var(--radius) - 4px)}.rounded-xl{border-radius:.75rem}.rounded-l-md{border-top-left-radius:calc(var(--radius) - 2px);border-bottom-left-radius:calc(var(--radius) - 2px)}.rounded-r-md{border-top-right-radius:calc(var(--radius) - 2px);border-bottom-right-radius:calc(var(--radius) - 2px)}.rounded-tl-sm{border-top-left-radius:calc(var(--radius) - 4px)}.border{border-width:1px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-l{border-left-width:1px}.border-l-2{border-left-width:2px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-atmos-700{--tw-border-opacity:1;border-color:rgb(var(--atmos-700)/var(--tw-border-opacity,1))}.border-destructive{--tw-border-opacity:1;border-color:rgb(var(--destructive)/var(--tw-border-opacity,1))}.border-fuselage-100{--tw-border-opacity:1;border-color:rgb(var(--fuselage-100)/var(--tw-border-opacity,1))}.border-fuselage-200{--tw-border-opacity:1;border-color:rgb(var(--fuselage-200)/var(--tw-border-opacity,1))}.border-fuselage-300{--tw-border-opacity:1;border-color:rgb(var(--fuselage-300)/var(--tw-border-opacity,1))}.border-fuselage-450\/50{border-color:rgb(var(--fuselage-450)/.5)}.border-green-600{--tw-border-opacity:1;border-color:rgb(22 163 74/var(--tw-border-opacity,1))}.border-input{--tw-border-opacity:1;border-color:rgb(var(--input)/var(--tw-border-opacity,1))}.border-primary{--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity,1))}.border-primary\/50{border-color:rgb(var(--primary)/.5)}.border-semantic-red-600{--tw-border-opacity:1;border-color:rgb(var(--semantic-red-600)/var(--tw-border-opacity,1))}.border-transparent{border-color:transparent}.border-l-transparent{border-left-color:transparent}.border-t-transparent{border-top-color:transparent}.\!bg-transparent{background-color:transparent!important}.bg-accent{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.bg-atmos-700{--tw-bg-opacity:1;background-color:rgb(var(--atmos-700)/var(--tw-bg-opacity,1))}.bg-background{--tw-bg-opacity:1;background-color:rgb(var(--background)/var(--tw-bg-opacity,1))}.bg-black\/80{background-color:rgba(0,0,0,.8)}.bg-blue-50{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity,1))}.bg-border{--tw-bg-opacity:1;background-color:rgb(var(--border)/var(--tw-bg-opacity,1))}.bg-card{--tw-bg-opacity:1;background-color:rgb(var(--card)/var(--tw-bg-opacity,1))}.bg-destructive{--tw-bg-opacity:1;background-color:rgb(var(--destructive)/var(--tw-bg-opacity,1))}.bg-fuselage-100{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-100)/var(--tw-bg-opacity,1))}.bg-fuselage-150{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-150)/var(--tw-bg-opacity,1))}.bg-fuselage-200\/10{background-color:rgb(var(--fuselage-200)/.1)}.bg-fuselage-200\/20{background-color:rgb(var(--fuselage-200)/.2)}.bg-fuselage-50{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-50)/var(--tw-bg-opacity,1))}.bg-fuselage-950\/80{background-color:rgb(var(--fuselage-950)/.8)}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1))}.bg-green-50{--tw-bg-opacity:1;background-color:rgb(240 253 244/var(--tw-bg-opacity,1))}.bg-indigo-50{--tw-bg-opacity:1;background-color:rgb(238 242 255/var(--tw-bg-opacity,1))}.bg-muted{--tw-bg-opacity:1;background-color:rgb(var(--muted)/var(--tw-bg-opacity,1))}.bg-muted\/50{background-color:rgb(var(--muted)/.5)}.bg-ocean-400{--tw-bg-opacity:1;background-color:rgb(var(--ocean-400)/var(--tw-bg-opacity,1))}.bg-orange-50{--tw-bg-opacity:1;background-color:rgb(255 247 237/var(--tw-bg-opacity,1))}.bg-pink-50{--tw-bg-opacity:1;background-color:rgb(253 242 248/var(--tw-bg-opacity,1))}.bg-popover{--tw-bg-opacity:1;background-color:rgb(var(--popover)/var(--tw-bg-opacity,1))}.bg-primary{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity,1))}.bg-primary\/20{background-color:rgb(var(--primary)/.2)}.bg-purple-50{--tw-bg-opacity:1;background-color:rgb(250 245 255/var(--tw-bg-opacity,1))}.bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity,1))}.bg-red-600{--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity,1))}.bg-secondary{--tw-bg-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity,1))}.bg-semantic-green-500{--tw-bg-opacity:1;background-color:rgb(var(--semantic-green-500)/var(--tw-bg-opacity,1))}.bg-semantic-red-600{--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-600)/var(--tw-bg-opacity,1))}.bg-transparent{background-color:transparent}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity,1))}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.from-fuselage-50{--tw-gradient-from:rgb(var(--fuselage-50)/1) var(--tw-gradient-from-position);--tw-gradient-to:rgb(var(--fuselage-50)/0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.to-fuselage-100{--tw-gradient-to:rgb(var(--fuselage-100)/1) var(--tw-gradient-to-position)}.fill-blue-700{fill:#1d4ed8}.fill-current{fill:currentColor}.fill-fuselage-500{fill:rgb(var(--fuselage-500)/1)}.fill-green-500{fill:#22c55e}.fill-indigo-700{fill:#4338ca}.fill-orange-800{fill:#9a3412}.fill-pink-700{fill:#be185d}.fill-purple-700{fill:#7e22ce}.fill-red-700{fill:#b91c1c}.fill-yellow-500{fill:#eab308}.stroke-fuselage-450\/50{stroke:rgb(var(--fuselage-450)/.5)}.p-0{padding:0}.p-1{padding:.25rem}.p-10{padding:2.5rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.p-\[1px\]{padding:1px}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-8{padding-left:2rem;padding-right:2rem}.px-\[--cell-size\]{padding-left:var(--cell-size);padding-right:var(--cell-size)}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pe-12{padding-inline-end:3rem}.pl-2{padding-left:.5rem}.pl-2\.5{padding-left:.625rem}.pl-4{padding-left:1rem}.pl-6{padding-left:1.5rem}.pl-8{padding-left:2rem}.pr-1{padding-right:.25rem}.pr-2{padding-right:.5rem}.pr-2\.5{padding-right:.625rem}.pr-6{padding-right:1.5rem}.pt-0{padding-top:0}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.align-middle{vertical-align:middle}.align-text-top{vertical-align:text-top}.font-head{font-family:Poppins,sans-serif}.font-mono{font-family:IBM Plex Mono,monospace,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:Nunito Sans,sans-serif,ui-sans-serif,system-ui,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-\[0\.8rem\]{font-size:.8rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.capitalize{text-transform:capitalize}.italic{font-style:italic}.leading-7{line-height:1.75rem}.leading-none{line-height:1}.leading-snug{line-height:1.375}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.tracking-widest{letter-spacing:.1em}.\!text-fuselage-550{--tw-text-opacity:1!important;color:rgb(var(--fuselage-550)/var(--tw-text-opacity,1))!important}.text-accent-foreground{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.text-atmos-50{--tw-text-opacity:1;color:rgb(var(--atmos-50)/var(--tw-text-opacity,1))}.text-atmos-700{--tw-text-opacity:1;color:rgb(var(--atmos-700)/var(--tw-text-opacity,1))}.text-blue-700{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity,1))}.text-card-foreground{--tw-text-opacity:1;color:rgb(var(--card-foreground)/var(--tw-text-opacity,1))}.text-current{color:currentColor}.text-destructive{--tw-text-opacity:1;color:rgb(var(--destructive)/var(--tw-text-opacity,1))}.text-destructive-foreground{--tw-text-opacity:1;color:rgb(var(--destructive-foreground)/var(--tw-text-opacity,1))}.text-foreground{--tw-text-opacity:1;color:rgb(var(--foreground)/var(--tw-text-opacity,1))}.text-foreground\/50{color:rgb(var(--foreground)/.5)}.text-fuselage-250{--tw-text-opacity:1;color:rgb(var(--fuselage-250)/var(--tw-text-opacity,1))}.text-fuselage-300{--tw-text-opacity:1;color:rgb(var(--fuselage-300)/var(--tw-text-opacity,1))}.text-fuselage-400{--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}.text-fuselage-450{--tw-text-opacity:1;color:rgb(var(--fuselage-450)/var(--tw-text-opacity,1))}.text-fuselage-50{--tw-text-opacity:1;color:rgb(var(--fuselage-50)/var(--tw-text-opacity,1))}.text-fuselage-500{--tw-text-opacity:1;color:rgb(var(--fuselage-500)/var(--tw-text-opacity,1))}.text-fuselage-550{--tw-text-opacity:1;color:rgb(var(--fuselage-550)/var(--tw-text-opacity,1))}.text-fuselage-600{--tw-text-opacity:1;color:rgb(var(--fuselage-600)/var(--tw-text-opacity,1))}.text-fuselage-700{--tw-text-opacity:1;color:rgb(var(--fuselage-700)/var(--tw-text-opacity,1))}.text-fuselage-800{--tw-text-opacity:1;color:rgb(var(--fuselage-800)/var(--tw-text-opacity,1))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity,1))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity,1))}.text-green-700{--tw-text-opacity:1;color:rgb(21 128 61/var(--tw-text-opacity,1))}.text-indigo-700{--tw-text-opacity:1;color:rgb(67 56 202/var(--tw-text-opacity,1))}.text-inherit{color:inherit}.text-muted-foreground{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.text-muted-foreground\/70{color:rgb(var(--muted-foreground)/.7)}.text-orange-700{--tw-text-opacity:1;color:rgb(194 65 12/var(--tw-text-opacity,1))}.text-pink-700{--tw-text-opacity:1;color:rgb(190 24 93/var(--tw-text-opacity,1))}.text-popover-foreground{--tw-text-opacity:1;color:rgb(var(--popover-foreground)/var(--tw-text-opacity,1))}.text-primary{--tw-text-opacity:1;color:rgb(var(--primary)/var(--tw-text-opacity,1))}.text-purple-700{--tw-text-opacity:1;color:rgb(126 34 206/var(--tw-text-opacity,1))}.text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity,1))}.text-red-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity,1))}.text-red-700{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity,1))}.text-semantic-green-700{--tw-text-opacity:1;color:rgb(var(--semantic-green-700)/var(--tw-text-opacity,1))}.text-semantic-red-50{--tw-text-opacity:1;color:rgb(var(--semantic-red-50)/var(--tw-text-opacity,1))}.text-semantic-red-600{--tw-text-opacity:1;color:rgb(var(--semantic-red-600)/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.text-yellow-700{--tw-text-opacity:1;color:rgb(161 98 7/var(--tw-text-opacity,1))}.no-underline{text-decoration-line:none}.underline-offset-4{text-underline-offset:4px}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.opacity-90{opacity:.9}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-md,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-0,.ring-1{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-inset{--tw-ring-inset:inset}.\!ring-fuselage-600\/10{--tw-ring-color:rgb(var(--fuselage-600)/0.1)!important}.ring-blue-700\/10{--tw-ring-color:rgba(29,78,216,.1)}.ring-fuselage-600\/10{--tw-ring-color:rgb(var(--fuselage-600)/0.1)}.ring-green-600\/20{--tw-ring-color:rgba(22,163,74,.2)}.ring-indigo-700\/10{--tw-ring-color:rgba(67,56,202,.1)}.ring-orange-600\/20{--tw-ring-color:rgba(234,88,12,.2)}.ring-pink-700\/10{--tw-ring-color:rgba(190,24,93,.1)}.ring-purple-700\/10{--tw-ring-color:rgba(126,34,206,.1)}.ring-red-600\/10{--tw-ring-color:rgba(220,38,38,.1)}.ring-yellow-600\/20{--tw-ring-color:rgba(202,138,4,.2)}.ring-offset-background{--tw-ring-offset-color:rgb(var(--background)/1)}.filter{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)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);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))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);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))}}.animate-in{animation-name:enter;animation-duration:.15s;--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial}.fade-in-0{--tw-enter-opacity:0}.zoom-in-95{--tw-enter-scale:.95}.duration-200{animation-duration:.2s}.duration-300{animation-duration:.3s}.ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)}.\[--cell-size\:2rem\]{--cell-size:2rem}.file\:border-0::file-selector-button{border-width:0}.file\:bg-transparent::file-selector-button{background-color:transparent}.file\:text-sm::file-selector-button{font-size:.875rem;line-height:1.25rem}.file\:font-medium::file-selector-button{font-weight:500}.placeholder\:text-muted-foreground::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.placeholder\:text-muted-foreground::placeholder{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.first\:mt-0:first-child{margin-top:0}.even\:bg-semantic-blue-100:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(var(--semantic-blue-100)/var(--tw-bg-opacity,1))}.focus-within\:ring-2:focus-within{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-within\:ring-fuselage-400:focus-within{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-400)/var(--tw-ring-opacity,1))}.focus-within\:ring-offset-2:focus-within{--tw-ring-offset-width:2px}.hover\:border-fuselage-500:hover{--tw-border-opacity:1;border-color:rgb(var(--fuselage-500)/var(--tw-border-opacity,1))}.hover\:bg-accent:hover{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.hover\:bg-atmos-800:hover{--tw-bg-opacity:1;background-color:rgb(var(--atmos-800)/var(--tw-bg-opacity,1))}.hover\:bg-fuselage-100:hover{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-100)/var(--tw-bg-opacity,1))}.hover\:bg-fuselage-200:hover{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-200)/var(--tw-bg-opacity,1))}.hover\:bg-fuselage-200\/75:hover{background-color:rgb(var(--fuselage-200)/.75)}.hover\:bg-fuselage-500\/10:hover{background-color:rgb(var(--fuselage-500)/.1)}.hover\:bg-muted:hover{--tw-bg-opacity:1;background-color:rgb(var(--muted)/var(--tw-bg-opacity,1))}.hover\:bg-muted\/10:hover{background-color:rgb(var(--muted)/.1)}.hover\:bg-semantic-red-700:hover{--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-700)/var(--tw-bg-opacity,1))}.hover\:text-accent-foreground:hover{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.hover\:text-atmos-800:hover{--tw-text-opacity:1;color:rgb(var(--atmos-800)/var(--tw-text-opacity,1))}.hover\:text-foreground:hover{--tw-text-opacity:1;color:rgb(var(--foreground)/var(--tw-text-opacity,1))}.hover\:text-fuselage-400:hover{--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}.hover\:text-fuselage-500:hover{--tw-text-opacity:1;color:rgb(var(--fuselage-500)/var(--tw-text-opacity,1))}.hover\:text-fuselage-700:hover{--tw-text-opacity:1;color:rgb(var(--fuselage-700)/var(--tw-text-opacity,1))}.hover\:text-fuselage-800:hover{--tw-text-opacity:1;color:rgb(var(--fuselage-800)/var(--tw-text-opacity,1))}.hover\:text-muted-foreground:hover{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}.focus\:bg-accent:focus{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.focus\:bg-fuselage-100:focus{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-100)/var(--tw-bg-opacity,1))}.focus\:text-accent-foreground:focus{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.focus\:text-fuselage-800:focus{--tw-text-opacity:1;color:rgb(var(--fuselage-800)/var(--tw-text-opacity,1))}.focus\:opacity-100:focus{opacity:1}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-fuselage-400:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-400)/var(--tw-ring-opacity,1))}.focus\:ring-ring:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--ring)/var(--tw-ring-opacity,1))}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:ring-1:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\:ring-fuselage-700:focus-visible{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-700)/var(--tw-ring-opacity,1))}.focus-visible\:ring-ring:focus-visible{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--ring)/var(--tw-ring-opacity,1))}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.focus-visible\:ring-offset-background:focus-visible{--tw-ring-offset-color:rgb(var(--background)/1)}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:border-fuselage-300:disabled{--tw-border-opacity:1;border-color:rgb(var(--fuselage-300)/var(--tw-border-opacity,1))}.disabled\:bg-semantic-red-700:disabled{--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-700)/var(--tw-bg-opacity,1))}.disabled\:text-atmos-100:disabled{--tw-text-opacity:1;color:rgb(var(--atmos-100)/var(--tw-text-opacity,1))}.disabled\:text-atmos-300:disabled{--tw-text-opacity:1;color:rgb(var(--atmos-300)/var(--tw-text-opacity,1))}.disabled\:text-fuselage-300:disabled{--tw-text-opacity:1;color:rgb(var(--fuselage-300)/var(--tw-text-opacity,1))}.disabled\:text-semantic-red-300:disabled{--tw-text-opacity:1;color:rgb(var(--semantic-red-300)/var(--tw-text-opacity,1))}.disabled\:opacity-50:disabled{opacity:.5}.group:hover .group-hover\:bg-atmos-600{--tw-bg-opacity:1;background-color:rgb(var(--atmos-600)/var(--tw-bg-opacity,1))}.group:hover .group-hover\:bg-fuselage-200\/50{background-color:rgb(var(--fuselage-200)/.5)}.group:hover .group-hover\:stroke-fuselage-450{stroke:rgb(var(--fuselage-450)/1)}.group:hover .group-hover\:text-atmos-100{--tw-text-opacity:1;color:rgb(var(--atmos-100)/var(--tw-text-opacity,1))}.group:hover .group-hover\:text-fuselage-600{--tw-text-opacity:1;color:rgb(var(--fuselage-600)/var(--tw-text-opacity,1))}.group:hover .group-hover\:opacity-100{opacity:1}.group.destructive .group-\[\.destructive\]\:border-muted\/40{border-color:rgb(var(--muted)/.4)}.group.destructive .group-\[\.destructive\]\:text-semantic-red-300{--tw-text-opacity:1;color:rgb(var(--semantic-red-300)/var(--tw-text-opacity,1))}.group.destructive .group-\[\.destructive\]\:hover\:border-destructive\/30:hover{border-color:rgb(var(--destructive)/.3)}.group.destructive .group-\[\.destructive\]\:hover\:bg-destructive:hover{--tw-bg-opacity:1;background-color:rgb(var(--destructive)/var(--tw-bg-opacity,1))}.group.destructive .group-\[\.destructive\]\:hover\:text-destructive-foreground:hover{--tw-text-opacity:1;color:rgb(var(--destructive-foreground)/var(--tw-text-opacity,1))}.group.destructive .group-\[\.destructive\]\:hover\:text-semantic-red-50:hover{--tw-text-opacity:1;color:rgb(var(--semantic-red-50)/var(--tw-text-opacity,1))}.group.destructive .group-\[\.destructive\]\:focus\:ring-destructive:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(var(--destructive)/var(--tw-ring-opacity,1))}.group.destructive .group-\[\.destructive\]\:focus\:ring-red-400:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(248 113 113/var(--tw-ring-opacity,1))}.group.destructive .group-\[\.destructive\]\:focus\:ring-offset-red-600:focus{--tw-ring-offset-color:#dc2626}.peer:disabled~.peer-disabled\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\:opacity-70{opacity:.7}.aria-disabled\:opacity-50[aria-disabled=true]{opacity:.5}.aria-selected\:text-muted-foreground[aria-selected=true]{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.data-\[disabled\=true\]\:pointer-events-none[data-disabled=true],.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]{--tw-translate-y:0.25rem}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom],.data-\[side\=left\]\:-translate-x-1[data-side=left]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[side\=left\]\:-translate-x-1[data-side=left]{--tw-translate-x:-0.25rem}.data-\[side\=right\]\:translate-x-1[data-side=right]{--tw-translate-x:0.25rem}.data-\[side\=right\]\:translate-x-1[data-side=right],.data-\[side\=top\]\:-translate-y-1[data-side=top]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[side\=top\]\:-translate-y-1[data-side=top]{--tw-translate-y:-0.25rem}.data-\[state\=checked\]\:translate-x-4[data-state=checked]{--tw-translate-x:1rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked],.data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel]{--tw-translate-x:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end]{--tw-translate-x:var(--radix-toast-swipe-end-x)}.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end],.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move]{--tw-translate-x:var(--radix-toast-swipe-move-x)}@keyframes accordion-up{0%{height:var(--radix-accordion-content-height)}to{height:0}}.data-\[state\=closed\]\:animate-accordion-up[data-state=closed]{animation:accordion-up .2s ease-out}@keyframes accordion-down{0%{height:0}to{height:var(--radix-accordion-content-height)}}.data-\[state\=open\]\:animate-accordion-down[data-state=open]{animation:accordion-down .2s ease-out}.data-\[range-end\=true\]\:rounded-md[data-range-end=true]{border-radius:calc(var(--radius) - 2px)}.data-\[range-middle\=true\]\:rounded-none[data-range-middle=true]{border-radius:0}.data-\[range-start\=true\]\:rounded-md[data-range-start=true]{border-radius:calc(var(--radius) - 2px)}.data-\[selected\=true\]\:rounded-none[data-selected=true]{border-radius:0}.data-\[active\]\:bg-accent\/50[data-active]{background-color:rgb(var(--accent)/.5)}.data-\[range-end\=true\]\:bg-primary[data-range-end=true]{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity,1))}.data-\[range-middle\=true\]\:bg-accent[data-range-middle=true]{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.data-\[range-start\=true\]\:bg-primary[data-range-start=true],.data-\[selected-single\=true\]\:bg-primary[data-selected-single=true]{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity,1))}.data-\[selected\=true\]\:bg-accent[data-selected=true]{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.data-\[state\=active\]\:bg-primary[data-state=active],.data-\[state\=checked\]\:bg-primary[data-state=checked]{--tw-bg-opacity:1;background-color:rgb(var(--primary)/var(--tw-bg-opacity,1))}.data-\[state\=on\]\:bg-accent[data-state=on],.data-\[state\=open\]\:bg-accent[data-state=open]{--tw-bg-opacity:1;background-color:rgb(var(--accent)/var(--tw-bg-opacity,1))}.data-\[state\=open\]\:bg-accent\/50[data-state=open]{background-color:rgb(var(--accent)/.5)}.data-\[state\=open\]\:bg-fuselage-100[data-state=open]{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-100)/var(--tw-bg-opacity,1))}.data-\[state\=open\]\:bg-muted[data-state=open]{--tw-bg-opacity:1;background-color:rgb(var(--muted)/var(--tw-bg-opacity,1))}.data-\[state\=open\]\:bg-secondary[data-state=open]{--tw-bg-opacity:1;background-color:rgb(var(--secondary)/var(--tw-bg-opacity,1))}.data-\[state\=selected\]\:bg-muted\/30[data-state=selected]{background-color:rgb(var(--muted)/.3)}.data-\[state\=unchecked\]\:bg-input[data-state=unchecked]{--tw-bg-opacity:1;background-color:rgb(var(--input)/var(--tw-bg-opacity,1))}.data-\[range-end\=true\]\:text-primary-foreground[data-range-end=true]{--tw-text-opacity:1;color:rgb(var(--primary-foreground)/var(--tw-text-opacity,1))}.data-\[range-middle\=true\]\:text-accent-foreground[data-range-middle=true]{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.data-\[range-start\=true\]\:text-primary-foreground[data-range-start=true],.data-\[selected-single\=true\]\:text-primary-foreground[data-selected-single=true]{--tw-text-opacity:1;color:rgb(var(--primary-foreground)/var(--tw-text-opacity,1))}.data-\[selected\=true\]\:text-accent-foreground[data-selected=true]{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.data-\[state\=active\]\:text-primary-foreground[data-state=active],.data-\[state\=checked\]\:text-primary-foreground[data-state=checked]{--tw-text-opacity:1;color:rgb(var(--primary-foreground)/var(--tw-text-opacity,1))}.data-\[state\=on\]\:text-accent-foreground[data-state=on]{--tw-text-opacity:1;color:rgb(var(--accent-foreground)/var(--tw-text-opacity,1))}.data-\[state\=open\]\:text-muted-foreground[data-state=open]{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.data-\[disabled\=true\]\:opacity-50[data-disabled=true],.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[state\=active\]\:shadow-sm[data-state=active]{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.data-\[swipe\=move\]\:transition-none[data-swipe=move]{transition-property:none}.data-\[state\=closed\]\:duration-300[data-state=closed]{transition-duration:.3s}.data-\[state\=open\]\:duration-500[data-state=open]{transition-duration:.5s}.data-\[motion\^\=from-\]\:animate-in[data-motion^=from-],.data-\[state\=open\]\:animate-in[data-state=open],.data-\[state\=visible\]\:animate-in[data-state=visible]{animation-name:enter;animation-duration:.15s;--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial}.data-\[motion\^\=to-\]\:animate-out[data-motion^=to-],.data-\[state\=closed\]\:animate-out[data-state=closed],.data-\[state\=hidden\]\:animate-out[data-state=hidden],.data-\[swipe\=end\]\:animate-out[data-swipe=end]{animation-name:exit;animation-duration:.15s;--tw-exit-opacity:initial;--tw-exit-scale:initial;--tw-exit-rotate:initial;--tw-exit-translate-x:initial;--tw-exit-translate-y:initial}.data-\[motion\^\=from-\]\:fade-in[data-motion^=from-]{--tw-enter-opacity:0}.data-\[motion\^\=to-\]\:fade-out[data-motion^=to-],.data-\[state\=closed\]\:fade-out-0[data-state=closed]{--tw-exit-opacity:0}.data-\[state\=closed\]\:fade-out-80[data-state=closed]{--tw-exit-opacity:0.8}.data-\[state\=hidden\]\:fade-out[data-state=hidden]{--tw-exit-opacity:0}.data-\[state\=open\]\:fade-in-0[data-state=open],.data-\[state\=visible\]\:fade-in[data-state=visible]{--tw-enter-opacity:0}.data-\[state\=closed\]\:zoom-out-95[data-state=closed]{--tw-exit-scale:.95}.data-\[state\=open\]\:zoom-in-90[data-state=open]{--tw-enter-scale:.9}.data-\[state\=open\]\:zoom-in-95[data-state=open]{--tw-enter-scale:.95}.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion=from-end]{--tw-enter-translate-x:13rem}.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion=from-start]{--tw-enter-translate-x:-13rem}.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion=to-end]{--tw-exit-translate-x:13rem}.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion=to-start]{--tw-exit-translate-x:-13rem}.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom]{--tw-enter-translate-y:-0.5rem}.data-\[side\=left\]\:slide-in-from-right-2[data-side=left]{--tw-enter-translate-x:0.5rem}.data-\[side\=right\]\:slide-in-from-left-2[data-side=right]{--tw-enter-translate-x:-0.5rem}.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top]{--tw-enter-translate-y:0.5rem}.data-\[state\=closed\]\:slide-out-to-bottom[data-state=closed]{--tw-exit-translate-y:100%}.data-\[state\=closed\]\:slide-out-to-left[data-state=closed]{--tw-exit-translate-x:-100%}.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state=closed]{--tw-exit-translate-x:-50%}.data-\[state\=closed\]\:slide-out-to-right-full[data-state=closed],.data-\[state\=closed\]\:slide-out-to-right[data-state=closed]{--tw-exit-translate-x:100%}.data-\[state\=closed\]\:slide-out-to-top[data-state=closed]{--tw-exit-translate-y:-100%}.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state=closed]{--tw-exit-translate-y:-48%}.data-\[state\=open\]\:slide-in-from-bottom[data-state=open]{--tw-enter-translate-y:100%}.data-\[state\=open\]\:slide-in-from-left[data-state=open]{--tw-enter-translate-x:-100%}.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state=open]{--tw-enter-translate-x:-50%}.data-\[state\=open\]\:slide-in-from-right[data-state=open]{--tw-enter-translate-x:100%}.data-\[state\=open\]\:slide-in-from-top[data-state=open]{--tw-enter-translate-y:-100%}.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state=open]{--tw-enter-translate-y:-48%}.data-\[state\=open\]\:slide-in-from-top-full[data-state=open]{--tw-enter-translate-y:-100%}.data-\[state\=closed\]\:duration-300[data-state=closed]{animation-duration:.3s}.data-\[state\=open\]\:duration-500[data-state=open]{animation-duration:.5s}.group\/day[data-focused=true] .group-data-\[focused\=true\]\/day\:relative{position:relative}.group\/day[data-focused=true] .group-data-\[focused\=true\]\/day\:z-10{z-index:10}.group[data-state=open] .group-data-\[state\=open\]\:rotate-180{--tw-rotate:180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group\/day[data-focused=true] .group-data-\[focused\=true\]\/day\:border-ring{--tw-border-opacity:1;border-color:rgb(var(--ring)/var(--tw-border-opacity,1))}.group\/day[data-focused=true] .group-data-\[focused\=true\]\/day\:ring-\[3px\]{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.group\/day[data-focused=true] .group-data-\[focused\=true\]\/day\:ring-ring\/50{--tw-ring-color:rgb(var(--ring)/0.5)}@keyframes toast-hide{0%{opacity:1}to{opacity:0}}.radix-state-closed\:animate-toast-hide[data-state=closed]{animation:toast-hide .1s ease-in forwards}@keyframes toast-slide-in-bottom{0%{transform:translateY(calc(100% + 1rem))}to{transform:translateY(0)}}.radix-state-open\:animate-toast-slide-in-bottom[data-state=open]{animation:toast-slide-in-bottom .15s cubic-bezier(.16,1,.3,1)}.radix-swipe-cancel\:translate-x-0[data-swipe=cancel]{--tw-translate-x:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.radix-swipe-cancel\:duration-200[data-swipe=cancel]{transition-duration:.2s;animation-duration:.2s}.radix-swipe-direction-down\:translate-y-radix-toast-swipe-move-y[data-swipe-direction=down]{transform:translateY(var(--radix-toast-swipe-move-y))}@keyframes toast-swipe-out-y{0%{transform:translateY(var(--radix-toast-swipe-end-y))}to{transform:translateY(calc(100% + 1rem))}}.radix-swipe-direction-down\:radix-swipe-end\:animate-toast-swipe-out-y[data-swipe=end][data-swipe-direction=down]{animation:toast-swipe-out-y .1s ease-out forwards}.radix-swipe-direction-right\:translate-x-radix-toast-swipe-move-x[data-swipe-direction=right]{transform:translateX(var(--radix-toast-swipe-move-x))}@keyframes toast-swipe-out-x{0%{transform:translateX(var(--radix-toast-swipe-end-x))}to{transform:translateX(calc(100% + 1rem))}}.radix-swipe-direction-right\:radix-swipe-end\:animate-toast-swipe-out-x[data-swipe=end][data-swipe-direction=right]{animation:toast-swipe-out-x .1s ease-out forwards}.dark\:border-destructive:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--destructive)/var(--tw-border-opacity,1))}.dark\:border-fuselage-400:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-400)/var(--tw-border-opacity,1))}.dark\:border-fuselage-50:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-50)/var(--tw-border-opacity,1))}.dark\:border-fuselage-500:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-500)/var(--tw-border-opacity,1))}.dark\:border-fuselage-600:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-600)/var(--tw-border-opacity,1))}.dark\:border-fuselage-700:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-700)/var(--tw-border-opacity,1))}.dark\:border-fuselage-800\/50:is(.dark *){border-color:rgb(var(--fuselage-800)/.5)}.dark\:border-fuselage-900:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-900)/var(--tw-border-opacity,1))}.dark\:border-green-500:is(.dark *){--tw-border-opacity:1;border-color:rgb(34 197 94/var(--tw-border-opacity,1))}.dark\:border-primary:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--primary)/var(--tw-border-opacity,1))}.dark\:border-transparent:is(.dark *){border-color:transparent}.dark\:bg-atmos-500:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--atmos-500)/var(--tw-bg-opacity,1))}.dark\:bg-blue-400\/10:is(.dark *){background-color:rgba(96,165,250,.1)}.dark\:bg-fuselage-400:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-400)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-50:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-50)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-500:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-500)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-500\/10:is(.dark *){background-color:rgb(var(--fuselage-500)/.1)}.dark\:bg-fuselage-700:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-800:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-800)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-800\/80:is(.dark *){background-color:rgb(var(--fuselage-800)/.8)}.dark\:bg-fuselage-900:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-900)/var(--tw-bg-opacity,1))}.dark\:bg-fuselage-950:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-950)/var(--tw-bg-opacity,1))}.dark\:bg-green-500\/10:is(.dark *){background-color:rgba(34,197,94,.1)}.dark\:bg-indigo-400\/10:is(.dark *){background-color:rgba(129,140,248,.1)}.dark\:bg-muted-foreground:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--muted-foreground)/var(--tw-bg-opacity,1))}.dark\:bg-orange-400\/10:is(.dark *){background-color:rgba(251,146,60,.1)}.dark\:bg-pink-400\/10:is(.dark *){background-color:rgba(244,114,182,.1)}.dark\:bg-purple-400\/10:is(.dark *){background-color:rgba(192,132,252,.1)}.dark\:bg-red-400\/10:is(.dark *){background-color:hsla(0,91%,71%,.1)}.dark\:bg-semantic-green-500\/10:is(.dark *){background-color:rgb(var(--semantic-green-500)/.1)}.dark\:bg-semantic-red-600:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-600)/var(--tw-bg-opacity,1))}.dark\:bg-yellow-400\/10:is(.dark *){background-color:rgba(250,204,21,.1)}.dark\:fill-blue-400:is(.dark *){fill:#60a5fa}.dark\:fill-fuselage-500:is(.dark *){fill:rgb(var(--fuselage-500)/1)}.dark\:fill-indigo-400:is(.dark *){fill:#818cf8}.dark\:fill-orange-400:is(.dark *){fill:#fb923c}.dark\:fill-pink-400:is(.dark *){fill:#f472b6}.dark\:fill-purple-400:is(.dark *){fill:#c084fc}.dark\:fill-red-400:is(.dark *){fill:#f87171}.dark\:fill-yellow-500:is(.dark *){fill:#eab308}.dark\:stroke-white\/20:is(.dark *){stroke:hsla(0,0%,100%,.2)}.dark\:\!text-fuselage-450:is(.dark *){--tw-text-opacity:1!important;color:rgb(var(--fuselage-450)/var(--tw-text-opacity,1))!important}.dark\:text-atmos-50:is(.dark *){--tw-text-opacity:1;color:rgb(var(--atmos-50)/var(--tw-text-opacity,1))}.dark\:text-blue-400:is(.dark *){--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity,1))}.dark\:text-destructive-foreground:is(.dark *){--tw-text-opacity:1;color:rgb(var(--destructive-foreground)/var(--tw-text-opacity,1))}.dark\:text-fuselage-100:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-100)/var(--tw-text-opacity,1))}.dark\:text-fuselage-200:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-200)/var(--tw-text-opacity,1))}.dark\:text-fuselage-250:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-250)/var(--tw-text-opacity,1))}.dark\:text-fuselage-300:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-300)/var(--tw-text-opacity,1))}.dark\:text-fuselage-400:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}.dark\:text-fuselage-450:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-450)/var(--tw-text-opacity,1))}.dark\:text-fuselage-50:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-50)/var(--tw-text-opacity,1))}.dark\:text-fuselage-500:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-500)/var(--tw-text-opacity,1))}.dark\:text-fuselage-600:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-600)/var(--tw-text-opacity,1))}.dark\:text-fuselage-800:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-800)/var(--tw-text-opacity,1))}.dark\:text-green-500:is(.dark *){--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity,1))}.dark\:text-indigo-400:is(.dark *){--tw-text-opacity:1;color:rgb(129 140 248/var(--tw-text-opacity,1))}.dark\:text-orange-400:is(.dark *){--tw-text-opacity:1;color:rgb(251 146 60/var(--tw-text-opacity,1))}.dark\:text-pink-400:is(.dark *){--tw-text-opacity:1;color:rgb(244 114 182/var(--tw-text-opacity,1))}.dark\:text-primary:is(.dark *){--tw-text-opacity:1;color:rgb(var(--primary)/var(--tw-text-opacity,1))}.dark\:text-purple-400:is(.dark *){--tw-text-opacity:1;color:rgb(192 132 252/var(--tw-text-opacity,1))}.dark\:text-red-400:is(.dark *){--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity,1))}.dark\:text-semantic-green-300:is(.dark *){--tw-text-opacity:1;color:rgb(var(--semantic-green-300)/var(--tw-text-opacity,1))}.dark\:text-semantic-green-500:is(.dark *){--tw-text-opacity:1;color:rgb(var(--semantic-green-500)/var(--tw-text-opacity,1))}.dark\:text-semantic-red-50:is(.dark *){--tw-text-opacity:1;color:rgb(var(--semantic-red-50)/var(--tw-text-opacity,1))}.dark\:text-white:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.dark\:text-yellow-500:is(.dark *){--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity,1))}.dark\:\!ring-fuselage-500\/20:is(.dark *){--tw-ring-color:rgb(var(--fuselage-500)/0.2)!important}.dark\:ring-blue-400\/30:is(.dark *){--tw-ring-color:rgba(96,165,250,.3)}.dark\:ring-fuselage-500\/20:is(.dark *){--tw-ring-color:rgb(var(--fuselage-500)/0.2)}.dark\:ring-green-500\/20:is(.dark *){--tw-ring-color:rgba(34,197,94,.2)}.dark\:ring-indigo-400\/30:is(.dark *){--tw-ring-color:rgba(129,140,248,.3)}.dark\:ring-orange-400\/20:is(.dark *){--tw-ring-color:rgba(251,146,60,.2)}.dark\:ring-pink-400\/20:is(.dark *){--tw-ring-color:rgba(244,114,182,.2)}.dark\:ring-purple-400\/30:is(.dark *){--tw-ring-color:rgba(192,132,252,.3)}.dark\:ring-red-400\/20:is(.dark *){--tw-ring-color:hsla(0,91%,71%,.2)}.dark\:ring-yellow-400\/20:is(.dark *){--tw-ring-color:rgba(250,204,21,.2)}.dark\:even\:bg-fuselage-900:nth-child(2n):is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-900)/var(--tw-bg-opacity,1))}.dark\:focus-within\:ring-fuselage-200:focus-within:is(.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-200)/var(--tw-ring-opacity,1))}.dark\:hover\:bg-fuselage-600:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-600)/var(--tw-bg-opacity,1))}.dark\:hover\:bg-fuselage-700:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}.dark\:hover\:bg-fuselage-800:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-800)/var(--tw-bg-opacity,1))}.dark\:hover\:bg-muted\/30:hover:is(.dark *){background-color:rgb(var(--muted)/.3)}.dark\:hover\:bg-semantic-red-700:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-700)/var(--tw-bg-opacity,1))}.dark\:hover\:bg-white\/5:hover:is(.dark *){background-color:hsla(0,0%,100%,.05)}.hover\:dark\:bg-fuselage-150:is(.dark *):hover{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-150)/var(--tw-bg-opacity,1))}.hover\:dark\:bg-fuselage-700:is(.dark *):hover{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}.dark\:hover\:text-fuselage-100:hover:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-100)/var(--tw-text-opacity,1))}.dark\:hover\:text-fuselage-200:hover:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-200)/var(--tw-text-opacity,1))}.dark\:hover\:text-fuselage-400:hover:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}.hover\:dark\:text-fuselage-250:is(.dark *):hover{--tw-text-opacity:1;color:rgb(var(--fuselage-250)/var(--tw-text-opacity,1))}.dark\:focus\:bg-fuselage-700:focus:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}.dark\:focus\:focus\:bg-fuselage-700:focus:focus:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}.dark\:focus\:text-fuselage-50:focus:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-50)/var(--tw-text-opacity,1))}.dark\:focus\:ring-fuselage-200:focus:is(.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-200)/var(--tw-ring-opacity,1))}.dark\:focus-visible\:ring-fuselage-550:focus-visible:is(.dark *){--tw-ring-opacity:1;--tw-ring-color:rgb(var(--fuselage-550)/var(--tw-ring-opacity,1))}.dark\:disabled\:border-fuselage-150:disabled:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-150)/var(--tw-border-opacity,1))}.dark\:disabled\:border-fuselage-500:disabled:is(.dark *){--tw-border-opacity:1;border-color:rgb(var(--fuselage-500)/var(--tw-border-opacity,1))}.dark\:disabled\:bg-fuselage-150:disabled:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-150)/var(--tw-bg-opacity,1))}.dark\:disabled\:bg-fuselage-600:disabled:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-600)/var(--tw-bg-opacity,1))}.dark\:disabled\:bg-semantic-red-700:disabled:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--semantic-red-700)/var(--tw-bg-opacity,1))}.dark\:disabled\:text-fuselage-300:disabled:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-300)/var(--tw-text-opacity,1))}.dark\:disabled\:text-fuselage-400:disabled:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-400)/var(--tw-text-opacity,1))}.dark\:disabled\:text-fuselage-500:disabled:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-500)/var(--tw-text-opacity,1))}.dark\:disabled\:text-semantic-red-300:disabled:is(.dark *){--tw-text-opacity:1;color:rgb(var(--semantic-red-300)/var(--tw-text-opacity,1))}.group:hover .dark\:group-hover\:bg-fuselage-600:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--fuselage-600)/var(--tw-bg-opacity,1))}.group:hover .group-hover\:dark\:stroke-fuselage-200:is(.dark *){stroke:rgb(var(--fuselage-200)/1)}.group:hover .dark\:group-hover\:text-fuselage-100:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-100)/var(--tw-text-opacity,1))}.dark\:data-\[state\=selected\]\:bg-muted[data-state=selected]:is(.dark *){--tw-bg-opacity:1;background-color:rgb(var(--muted)/var(--tw-bg-opacity,1))}.data-\[state\=open\]\:dark\:bg-fuselage-700:is(.dark *)[data-state=open]{--tw-bg-opacity:1;background-color:rgb(var(--fuselage-700)/var(--tw-bg-opacity,1))}@media (min-width:400px){.xs\:flex-row{flex-direction:row}.xs\:items-center{align-items:center}}@media (min-width:640px){.sm\:bottom-0{bottom:0}.sm\:right-0{right:0}.sm\:top-auto{top:auto}.sm\:mt-0{margin-top:0}.sm\:w-full{width:100%}.sm\:max-w-md{max-width:28rem}.sm\:max-w-sm{max-width:24rem}.sm\:flex-row{flex-direction:row}.sm\:flex-col{flex-direction:column}.sm\:justify-end{justify-content:flex-end}.sm\:space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.sm\:rounded-lg{border-radius:var(--radius)}.sm\:text-left{text-align:left}.sm\:text-base{font-size:1rem;line-height:1.5rem}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.data-\[state\=open\]\:sm\:slide-in-from-bottom-full[data-state=open]{--tw-enter-translate-y:100%}}@media (min-width:768px){.md\:absolute{position:absolute}.md\:block{display:block}.md\:hidden{display:none}.md\:size-12{width:3rem;height:3rem}.md\:min-h-20{min-height:5rem}.md\:w-28{width:7rem}.md\:w-3\/4{width:75%}.md\:w-40{width:10rem}.md\:w-48{width:12rem}.md\:w-\[400px\]{width:400px}.md\:w-\[var\(--radix-navigation-menu-viewport-width\)\]{width:var(--radix-navigation-menu-viewport-width)}.md\:w-auto{width:auto}.md\:w-fit{width:-moz-fit-content;width:fit-content}.md\:max-w-\[420px\]{max-width:420px}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:gap-4{gap:1rem}.md\:p-3{padding:.75rem}.md\:text-base{font-size:1rem;line-height:1.5rem}.md\:text-xl{font-size:1.25rem;line-height:1.75rem}.md\:font-bold{font-weight:700}@keyframes toast-slide-in-right{0%{transform:translateX(calc(100% + 1rem))}to{transform:translateX(0)}}.md\:radix-state-open\:animate-toast-slide-in-right[data-state=open]{animation:toast-slide-in-right .15s cubic-bezier(.16,1,.3,1)}}@media (min-width:1024px){.lg\:flex{display:flex}.lg\:w-\[250px\]{width:250px}.lg\:w-\[500px\]{width:500px}.lg\:grid-cols-\[\.75fr_1fr\]{grid-template-columns:.75fr 1fr}.lg\:space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(2rem*var(--tw-space-x-reverse));margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)))}.lg\:text-5xl{font-size:3rem;line-height:1}}.\[\&\+div\]\:text-xs+div{font-size:.75rem;line-height:1rem}.\[\&\:first-child\[data-selected\=true\]_button\]\:rounded-l-md:first-child[data-selected=true] button{border-top-left-radius:calc(var(--radius) - 2px);border-bottom-left-radius:calc(var(--radius) - 2px)}.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){padding-right:0}.\[\&\:last-child\[data-selected\=true\]_button\]\:rounded-r-md:last-child[data-selected=true] button{border-top-right-radius:calc(var(--radius) - 2px);border-bottom-right-radius:calc(var(--radius) - 2px)}.\[\&\:not\(\:first-child\)\]\:mt-6:not(:first-child){margin-top:1.5rem}.dark\:\[\&\>h5\]\:text-destructive>h5:is(.dark *){--tw-text-opacity:1;color:rgb(var(--destructive)/var(--tw-text-opacity,1))}.dark\:\[\&\>h5\]\:text-fuselage-50>h5:is(.dark *){--tw-text-opacity:1;color:rgb(var(--fuselage-50)/var(--tw-text-opacity,1))}.dark\:\[\&\>h5\]\:text-semantic-green-500>h5:is(.dark *){--tw-text-opacity:1;color:rgb(var(--semantic-green-500)/var(--tw-text-opacity,1))}.\[\&\>li\]\:mt-2>li{margin-top:.5rem}.\[\&\>span\]\:line-clamp-1>span{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.\[\&\>span\]\:text-xs>span{font-size:.75rem;line-height:1rem}.\[\&\>span\]\:opacity-70>span{opacity:.7}.\[\&\>svg\+div\]\:translate-y-\[-3px\]>svg+div{--tw-translate-y:-3px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\[\&\>svg\]\:absolute>svg{position:absolute}.\[\&\>svg\]\:left-4>svg{left:1rem}.\[\&\>svg\]\:top-4>svg{top:1rem}.\[\&\>svg\]\:size-3\.5>svg{width:.875rem;height:.875rem}.\[\&\>svg\]\:text-destructive>svg{--tw-text-opacity:1;color:rgb(var(--destructive)/var(--tw-text-opacity,1))}.\[\&\>svg\]\:text-foreground>svg{--tw-text-opacity:1;color:rgb(var(--foreground)/var(--tw-text-opacity,1))}.\[\&\>svg\]\:text-muted-foreground>svg{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.\[\&\>svg\]\:text-semantic-green-500>svg{--tw-text-opacity:1;color:rgb(var(--semantic-green-500)/var(--tw-text-opacity,1))}.\[\&\>svg\~\*\]\:pl-7>svg~*{padding-left:1.75rem}.\[\&\>tr\]\:last\:border-b-0:last-child>tr{border-bottom-width:0}.\[\&\[align\=center\]\]\:text-center[align=center]{text-align:center}.\[\&\[align\=right\]\]\:text-right[align=right]{text-align:right}.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg{--tw-rotate:180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading]{padding-left:.5rem;padding-right:.5rem}.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading]{padding-top:.375rem;padding-bottom:.375rem}.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading]{font-size:.75rem;line-height:1rem}.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading]{font-weight:500}.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading]{--tw-text-opacity:1;color:rgb(var(--muted-foreground)/var(--tw-text-opacity,1))}.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden])~[cmdk-group]{padding-top:0}.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group]{padding-left:.5rem;padding-right:.5rem}.\[\&_\[cmdk-input-wrapper\]_svg\]\:size-5 [cmdk-input-wrapper] svg{width:1.25rem;height:1.25rem}.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input]{height:3rem}.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item]{padding-left:.5rem;padding-right:.5rem}.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item]{padding-top:.75rem;padding-bottom:.75rem}.\[\&_\[cmdk-item\]_svg\]\:size-5 [cmdk-item] svg{width:1.25rem;height:1.25rem}.\[\&_p\]\:leading-relaxed p{line-height:1.625}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:size-4 svg{width:1rem;height:1rem}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&_tr\:last-child\]\:border-0 tr:last-child{border-width:0}.\[\&_tr\]\:border-b tr{border-bottom-width:1px}[data-slot=card-content] .\[\[data-slot\=card-content\]_\&\]\:bg-transparent,[data-slot=popover-content] .\[\[data-slot\=popover-content\]_\&\]\:bg-transparent{background-color:transparent}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ivao/atmosphere-react",
3
3
  "description": "React component library for the IVAO Atmosphere design system.",
4
- "version": "2.0.0-next.4",
4
+ "version": "2.0.0-next.6",
5
5
  "type": "module",
6
6
  "main": "./dist/atmosphere-react.js",
7
7
  "types": "./dist/react-components.d.ts",
@@ -6,6 +6,8 @@
6
6
 
7
7
  @layer base {
8
8
  :root {
9
+ --body: 255 255 255;
10
+
9
11
  --background: var(--fuselage-50);
10
12
  --foreground: var(--fuselage-800);
11
13
 
@@ -38,13 +40,15 @@
38
40
  }
39
41
 
40
42
  .dark {
41
- --background: var(--fuselage-950);
43
+ --body: var(--fuselage-950);
44
+
45
+ --background: var(--fuselage-900);
42
46
  --foreground: var(--fuselage-100);
43
47
 
44
48
  --card: var(--fuselage-900);
45
49
  --card-foreground: var(--fuselage-200);
46
50
 
47
- --popover: var(--fuselage-950);
51
+ --popover: var(--fuselage-900);
48
52
  --popover-foreground: var(--fuselage-200);
49
53
 
50
54
  --primary: var(--fuselage-50);
@@ -68,7 +72,7 @@
68
72
  }
69
73
 
70
74
  body {
71
- @apply bg-background text-foreground;
75
+ @apply bg-body text-foreground;
72
76
  }
73
77
 
74
78
  h1 {
@@ -58,6 +58,7 @@ export default {
58
58
  * Shadcn UI Color Palette for components
59
59
  * @see ui.shadcn.com
60
60
  */
61
+ body: 'rgb(var(--body) / <alpha-value>)',
61
62
  border: 'rgb(var(--border) / <alpha-value>)',
62
63
  input: 'rgb(var(--input) / <alpha-value>)',
63
64
  ring: 'rgb(var(--ring) / <alpha-value>)',