/* AUTO-GENERATED by scripts/generate-extend-css.cjs from src/styles/*.css. Do not edit by hand. */
/*
 * Tailwind CSS v4 entry for the utility classes Harmonia does not ship.
 *
 * Import it from your own stylesheet, declare what you need, and compile with
 * the Tailwind CLI:
 *
 *   @import "@codbex/harmonia/dist/harmonia-extend.css";
 *   @source inline("md:size-6");        -- an explicit list of classes, or
 *   @source "./src";                   -- scan a folder for the classes it uses
 *
 *   npx @tailwindcss/cli -m -i extend.css -o extend.css
 *
 * Load the result AFTER harmonia.css - both land in the same cascade layer, so
 * a generated `md:size-6` only wins over Harmonia's `size-6` when it comes
 * later. The output holds only the missing classes; everything harmonia.css
 * already ships is blocklisted at the bottom of this file.
 *
 * Do not `@apply` a class Harmonia ships (`p-4`, `flex`, ...) in that
 * stylesheet: a blocklisted class cannot be applied and Tailwind will fail with
 * "explicitly disabled". Use the class in your markup instead.
 */

@layer theme, base, components, utilities;

/* Tailwind's default theme has to be the first `@theme` in the file. Tailwind
   emits one consolidated `:root` rule where it finds it, so this keeps every
   emitted token inside `@layer theme`, where harmonia.css's unlayered `:root`
   still wins - no duplicated tokens, no self-referential `var()` cycles and no
   overriding of `.dark`.

   That rule is expected to hold a few tokens: Tailwind emits every default-theme
   key a generated utility actually reads. `--spacing` is the one a consumer sees
   most often, since any spacing-derived class (`h-80`, `gap-20`, `md:pt-12`)
   compiles to `calc(var(--spacing) * n)` and marks the key used. Seeing it in the
   output is not a duplicate of Harmonia's own token - it is Tailwind's value, in
   the weakest layer, losing to harmonia.css at runtime.

   The import is deliberately NOT `reference`. Suppressing the emission would
   also suppress the default-theme vars Harmonia does not ship, and a consumer's
   `bg-lime-500` would then reference a `--color-lime-500` that nothing defines.

   `source(none)` turns off automatic source detection, which would otherwise
   scan the whole working directory: the output then holds exactly what the
   importing stylesheet asks for, and nothing else. */
@import "tailwindcss/theme.css" layer(theme);
@import "tailwindcss/utilities.css" layer(utilities) source(none);

@custom-variant dark (&:where(.dark, .dark *));

@theme inline reference {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-primary-hover: var(--primary-hover);
  --color-primary-active: var(--primary-active);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-secondary-hover: var(--secondary-hover);
  --color-secondary-active: var(--secondary-active);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);

  --color-border: var(--border);
  --color-ring: var(--ring);
  --color-input: var(--input-border);
  --color-input-inner: var(--input-background);

  --color-split-handle: var(--split-handle);

  --color-negative: var(--negative);
  --color-negative-foreground: var(--negative-foreground);
  --color-negative-hover: var(--negative-hover);
  --color-negative-active: var(--negative-active);
  --color-positive: var(--positive);
  --color-positive-foreground: var(--positive-foreground);
  --color-positive-hover: var(--positive-hover);
  --color-positive-active: var(--positive-active);
  --color-warning: var(--warning);
  --color-warning-foreground: var(--warning-foreground);
  --color-warning-hover: var(--warning-hover);
  --color-warning-active: var(--warning-active);
  --color-information: var(--information);
  --color-information-foreground: var(--information-foreground);
  --color-information-hover: var(--information-hover);
  --color-information-active: var(--information-active);

  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-secondary: var(--sidebar-secondary);
  --color-sidebar-secondary-foreground: var(--sidebar-secondary-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);

  --color-object-header: var(--object-header);
  --color-object-header-foreground: var(--object-header-foreground);

  --color-table-header: var(--table-header);
  --color-table-header-foreground: var(--table-header-foreground);
  --color-table-hover: var(--table-hover);
  --color-table-hover-foreground: var(--table-hover-foreground);
  --color-table-active: var(--table-active);
  --color-table-active-foreground: var(--table-active-foreground);

  --font-sans: var(--font-sans);
  --font-mono: var(--font-mono);
  --font-serif: var(--font-serif);

  --shadow-xs: var(--shadow-xs);
  --shadow-sm: var(--shadow-sm);
  --shadow-md: var(--shadow-md);
  --shadow-lg: var(--shadow-lg);
  --shadow-xl: var(--shadow-xl);

  --shadow-button: var(--shadow-button);
  --shadow-input: var(--shadow-input);

  --radius-control: var(--radius-control);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);

  --tracking-tighter: calc(var(--tracking-normal) - 0.05em);
  --tracking-tight: calc(var(--tracking-normal) - 0.025em);
  --tracking-normal: var(--tracking-normal);
  --tracking-wide: calc(var(--tracking-normal) + 0.025em);
  --tracking-wider: calc(var(--tracking-normal) + 0.05em);
  --tracking-widest: calc(var(--tracking-normal) + 0.1em);
}

@theme {
  --text-2xs: 0.625rem;
  --text-2xs--line-height: calc(1 / 0.625);

  --container-8xl: 90rem;
  --container-9xl: 96rem;
  --container-10xl: 100rem;

  --animate-progress-loading: progress-loading 1.5s ease-in-out infinite;
  @keyframes progress-loading {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(350%);
    }
  }
}

/* Harmonia's public utility subset, copied verbatim from the safelist so
   Tailwind's own expander covers exactly the same classes. A blocklist entry is
   an exact class name, so `md:p-4` is still generated even though `p-4` is
   listed. */
@source not inline("{m,p}{x,y,t,b,l,r,}-{0..12}{!,}");
@source not inline("{m,p}{l,r}-auto{!,}");
@source not inline("{sm:,md:,lg:,xl:}{m,p}{x,y,}-{0..12}");
@source not inline("mx-auto");
@source not inline("flex");
@source not inline("flex-{col,row,col-reverse,row-reverse,wrap,0,1,auto,none}");
@source not inline("{sm:,md:,lg:,xl:}flex-{col-reverse,row-reverse}");
@source not inline("shrink-0");
@source not inline("{sm:,md:,lg:,xl:}{vbox,hbox}");
@source not inline("justify-{start,center,end,between,around,evenly,stretch}");
@source not inline("justify-end-safe");
@source not inline("justify-items-{start,center,end,stretch}");
@source not inline("content-{start,center,end,between,around,evenly,stretch}");
@source not inline("place-content-{start,center,end,between,around,evenly,stretch}");
@source not inline("items-{start,center,end,baseline,stretch}");
@source not inline("place-items-{start,center,end,stretch}");
@source not inline("self-{start,center,end,stretch}");
@source not inline("gap-{x,y}-{1..12}");
@source not inline("gap-{1..12}{!,}");
@source not inline("{sm:,md:,lg:,xl:,}gap-{1..12}");
@source not inline("grid");
@source not inline("{sm:,md:,lg:,xl:,}grid-cols-{1..12}");
@source not inline("{sm:,md:,lg:,xl:,}col-span-{1..12}");
@source not inline("{sm:,md:,lg:,xl:,}col-{start,end}-{1..12}");
@source not inline("row-span-{1..12}");
@source not inline("w-{auto,full,max,min,fit,screen,1/10,1/2,1/3,1/4,1/5,2/3,2/5,3/4,3/5,4/5,9/10}{!,}");
@source not inline("w-{dvw,svw,lvw}");
@source not inline("{sm:,md:,lg:,xl:}w-{full,1/10,1/2,1/3,1/4,1/5,2/3,2/5,3/4,3/5,4/5,9/10}");
@source not inline("min-{w,h}-0");
@source not inline("max-{w}-{screen,dvw}");
@source not inline("h-{auto,full,max,min,fit,screen,1/2}{!,}");
@source not inline("size-{1..12}{!,}");
@source not inline("h-{1..12}{!,}");
@source not inline("h-{dvh,lvh,svh}");
@source not inline("min-h-{1..12}");
@source not inline("max-h-{1..12}");
@source not inline("w-{1..12}{!,}");
@source not inline("w-{3xs,2xs,xs,sm,md,lg,xl,2xl,3xl,4xl,5xl,6xl,7xl,8xl,9xl,10xl}");
@source not inline("min-w-{1..12}");
@source not inline("min-w-{3xs,2xs,xs,sm,md,lg,xl,2xl,3xl,4xl,5xl,6xl,7xl,8xl,9xl,10xl,auto}");
@source not inline("max-w-{1..12}");
@source not inline("max-w-{3xs,2xs,xs,sm,md,lg,xl,2xl,3xl,4xl,5xl,6xl,7xl,8xl,9xl,10xl,auto}");
@source not inline("size-{full,fit}{!,}");
@source not inline("underline");
@source not inline("no-underline");
@source not inline("line-through");
@source not inline("text-{left,right,center,justify,ellipsis,wrap,nowrap}");
@source not inline("text-{2xs,xs,sm,base,lg,xl,2xl,3xl,4xl,5xl,6xl,7xl,8xl,9xl}{!,}");
@source not inline("{sm:,md:,lg:,xl:}text-{2xs,xs,sm,base,lg,xl,2xl,3xl,4xl,5xl,6xl,7xl,8xl,9xl}");
@source not inline("tabular-nums");
@source not inline("font-{extrabold,bold,semibold,medium,normal,light}{!,}");
@source not inline("font-{sans,serif,mono}{!,}");
@source not inline("leading-{none,normal,snug,relaxed}{!,}");
@source not inline("leading-{4..8}{!,}");
@source not inline("line-clamp-{1..6}");
@source not inline("tracking-tight");
@source not inline("italic");
@source not inline("uppercase");
@source not inline("lowercase");
@source not inline("capitalize");
@source not inline("truncate");
@source not inline("align-middle");
@source not inline("whitespace-{nowrap,pre,pre-wrap,pre-line}");
@source not inline("wrap-{break-word,anywhere}");
@source not inline("rotate-{90,180,270}");
@source not inline("resize-none");
@source not inline("select-none");
@source not inline("overflow-{auto,hidden,visible,scroll,x-scroll,y-scroll,x-visible,y-visible,x-auto,y-auto,x-hidden,y-hidden}");
@source not inline("object-{contain,cover,fill}");
@source not inline("bg-{auto,contain,cover,repeat,repeat-x,repeat-y,no-repeat}");
@source not inline("float-right");
@source not inline("hidden");
@source not inline("hidden!");
@source not inline("block");
@source not inline("inline");
@source not inline("inline-block");
@source not inline("inline-flex");
@source not inline("cursor-{pointer,text,crosshair,wait,not-allowed,grab,grabbing,none}");
@source not inline("{sm:,md:,lg:,xl:}{hidden,block,flex}");
@source not inline("sr-only");
@source not inline("box-border");
@source not inline("border");
@source not inline("border-{x,y,l,r,t,b,solid,dashed,dotted}");
@source not inline("border-0");
@source not inline("border-{2..12}");
@source not inline("divide-{x,y,x-reverse,y-reverse,solid,dashed,dotted}");
@source not inline("divide-{x,y}-0");
@source not inline("divide-{x,y}-{2..12}");
@source not inline("rounded-{s,e,t,b,tl,tr,bl,br}-{xs,sm,md,lg,xl,2xl,3xl,4xl,none,full}");
@source not inline("rounded-{xs,sm,md,lg,xl,2xl,3xl,4xl,none,none!,full}");
@source not inline("rounded-control");
@source not inline("{max-sm:,max-md:,max-lg:,max-xl:}rounded-none");
@source not inline("shadow-{xs,sm,md,lg,xl,none,none!}");
@source not inline("{max-sm:,max-md:,max-lg:,max-xl:}shadow-none");
@source not inline("aspect-{square,video,3/2}");
@source not inline("absolute");
@source not inline("relative");
@source not inline("fixed");
@source not inline("sticky");
@source not inline("{top,left,right,bottom}-0");
@source not inline("inset-0");
@source not inline("opacity-{0,25,50,75,100}");
@source not inline("group-hover:opacity-100");
@source not inline("group-focus-within:opacity-100");
@source not inline("hover:bg-muted");
@source not inline("backdrop-blur-{xs,sm,md}");
@source not inline("scale-{95,105}");
@source not inline("*:scale-95");
@source not inline("{-,}translate-{x,y}-{full,4}");
@source not inline("duration-{100,200,300}");
@source not inline("transition-{all,colors,opacity,transform,shadow,[opacity,scale]}");
@source not inline("animate-{pulse,ping,spin}");
@source not inline("motion-reduce:transition-none");
@source not inline("ease-{out,linear}");
@source not inline("z-{1,10,50,60}");
@source not inline("fill-none");
@source not inline("ring-{0,1,2,4}");
@source not inline("bg-{card,background,primary,primary-foreground,secondary,secondary-foreground,muted,muted-foreground,negative,negative-foreground,positive,positive-foreground,warning,warning-foreground,information,information-foreground,sidebar}");
@source not inline("fill-{current,primary,primary-foreground,secondary,secondary-foreground,muted,muted-foreground,negative,negative-foreground,positive,positive-foreground,warning,warning-foreground,information,information-foreground}");
@source not inline("text-{background,foreground,primary,primary-foreground,secondary,secondary-foreground,muted,muted-foreground,negative,negative-foreground,positive,positive-foreground,warning,warning-foreground,information,information-foreground,sidebar-foreground}");
@source not inline("border-{border,background,foreground,primary,primary/50,primary-foreground,secondary,secondary-foreground,muted,muted-foreground,negative,negative-foreground,positive,positive-foreground,warning,warning-foreground,information,information-foreground}");
@source not inline("{bg,text}-{white,black}");
@source not inline("{bg,text}-{red,orange,yellow,green,blue,purple,pink,indigo,gray,teal}-500");
@source not inline("{fill,stroke}-{white,black}");
@source not inline("{fill,stroke}-{red,orange,yellow,green,blue,purple,pink,indigo,gray,teal}-500");
@source not inline("fade-{x,y,t,b,l,r}-{2,4,8}");

/* The classes the components themselves use. The safelist above is the public
   subset, not everything harmonia.css contains: the build also scans src/ and
   emits whatever it finds there, so those classes have to be excluded too. This
   list is the scan of src/ filtered down to the candidates that really compile,
   which is by definition what harmonia.css ships. */
@source not inline("*:scale-95 -bottom-0.75 -bottom-3 -end-0.75 -ml-1.5 -mx-1 -mx-2 -start-0.75 -top-0.75 -top-2 -translate-x-1/2 -translate-x-full -translate-x-px -translate-y-1/2");
@source not inline("-translate-y-full @container/card-header @container/field-group @md/field-group:[&>*]:w-auto @md/field-group:[&>[data-slot=field-description]]:col-start-2");
@source not inline("@md/field-group:[&>[data-slot=field-error]]:col-start-2 @md/field-group:[&>[data-slot=field-label]]:flex-auto @md/field-group:flex-row");
@source not inline("@md/field-group:has-[>[data-slot=field-content]]:[&>[role=checkbox],[role=radio]]:mt-px @md/field-group:has-[>[data-slot=field-content]]:items-start");
@source not inline("@md/field-group:has-[>[data-slot=field-description]]:grid @md/field-group:has-[>[data-slot=field-description]]:grid-cols-[auto_1fr]");
@source not inline("@md/field-group:has-[>[data-slot=field-error]]:grid @md/field-group:has-[>[data-slot=field-error]]:grid-cols-[auto_1fr] @md/field-group:items-center");
@source not inline("[&+[data-slot=tile-content]]:flex-none [&::-moz-color-swatch]:border-0 [&::-webkit-color-swatch-wrapper]:p-0 [&::-webkit-color-swatch]:border-0");
@source not inline("[&:active:not(:has([data-slot=chip-close]:active))]:bg-information/20 [&:active:not(:has([data-slot=chip-close]:active))]:bg-negative/20");
@source not inline("[&:active:not(:has([data-slot=chip-close]:active))]:bg-positive/20 [&:active:not(:has([data-slot=chip-close]:active))]:bg-primary/20");
@source not inline("[&:active:not(:has([data-slot=chip-close]:active))]:bg-secondary-active [&:active:not(:has([data-slot=chip-close]:active))]:bg-warning/20");
@source not inline("[&:has([data-slot|=cell-input])]:p-0 [&:has([role=checkbox])]:pr-0 [&:has(input:disabled)~label]:cursor-not-allowed");
@source not inline("[&:has(input:disabled)~label]:opacity-disabled [&:hover:not(:has([data-slot=chip-close]:hover)):not(:active)]:bg-information/15");
@source not inline("[&:hover:not(:has([data-slot=chip-close]:hover)):not(:active)]:bg-negative/15 [&:hover:not(:has([data-slot=chip-close]:hover)):not(:active)]:bg-positive/15");
@source not inline("[&:hover:not(:has([data-slot=chip-close]:hover)):not(:active)]:bg-primary/15 [&:hover:not(:has([data-slot=chip-close]:hover)):not(:active)]:bg-secondary-hover");
@source not inline("[&:hover:not(:has([data-slot=chip-close]:hover)):not(:active)]:bg-warning/15 [&:hover>svg]:text-secondary-foreground [&:not([data-floating=true])]:border-t");
@source not inline("[&:not([type='color'])]:px-3 [&:not([type='color'])]:py-1 [&>*:not(:first-child)]:border-l-0 [&>*:not(:first-child)]:border-t-0");
@source not inline("[&>*:not(:first-child)]:rounded-l-none [&>*:not(:first-child)]:rounded-t-none [&>*:not(:last-child)]:rounded-b-none [&>*:not(:last-child)]:rounded-r-none");
@source not inline("[&>*:not([data-slot=field-label])]:w-full [&>*]:focus-visible:relative [&>*]:focus-visible:z-10 [&>*]:w-full [&>.sr-only]:w-auto");
@source not inline("[&>:is(div,span:not([data-slot=chip-close]),p)]:py-1 [&>:is(div,span:not([data-slot=chip-close]),p)]:truncate");
@source not inline('[&>[data-slot="select-input"]]:active:bg-secondary-active [&>[data-slot="select-input"]]:active:bg-table-active!');
@source not inline('[&>[data-slot="select-input"]]:active:text-secondary-foreground [&>[data-slot="select-input"]]:active:text-table-active-foreground!');
@source not inline('[&>[data-slot="select-input"]]:hover:bg-secondary-hover [&>[data-slot="select-input"]]:hover:bg-table-hover');
@source not inline('[&>[data-slot="select-input"]]:hover:text-secondary-foreground [&>[data-slot="select-input"]]:hover:text-table-hover-foreground');
@source not inline('[&>[data-slot="select-input"]]:rounded-control [&>[data-slot="time-picker-input"]]:active:text-secondary-foreground');
@source not inline('[&>[data-slot="time-picker-input"]]:hover:text-secondary-foreground [&>[data-slot=avatar]:first-child]:rounded-control');
@source not inline("[&>[data-slot=avatar]:first-child]:size-10! [&>[data-slot=avatar]:first-child]:size-5.5! [&>[data-slot=avatar]:first-child]:size-6!");
@source not inline("[&>[data-slot=avatar]:first-child]:text-xs [&>[data-slot=checkbox]]:size-4 [&>[data-slot=field-description]]:col-start-2 [&>[data-slot=field-error]]:col-start-2");
@source not inline("[&>[data-slot=field-group]]:gap-4 [&>[data-slot=field-label]]:flex-auto [&>[data-slot=field]]:p-4 [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit");
@source not inline("[&>[data-slot=tag]]:rounded-[calc(var(--radius)-5px)] [&>[role=checkbox]]:flex [&>[role=checkbox]]:items-center [&>a:hover]:text-primary [&>a]:no-underline");
@source not inline('[&>a]:size-full [&>a]:text-inherit [&>a]:underline [&>a]:underline-offset-4 [&>div]:min-w-0 [&>img:not([class*="size-"])]:size-4 [&>img]:order-first');
@source not inline("[&>img]:pointer-events-none [&>img]:shrink-0 [&>input]:absolute [&>input]:appearance-none [&>input]:bg-transparent [&>input]:border-0 [&>input]:cursor-pointer");
@source not inline("[&>input]:flex-1 [&>input]:focus-visible:border-ring [&>input]:focus-visible:ring-[calc(var(--spacing)*0.75)] [&>input]:focus-visible:ring-ring/50");
@source not inline("[&>input]:left-0 [&>input]:outline-none [&>input]:rounded-[0.35rem] [&>input]:rounded-[0.438rem] [&>input]:rounded-full [&>input]:size-full [&>input]:top-0");
@source not inline("[&>li:first-of-type>[data-slot=menubar-trigger]]:rounded-l-control [&>li:last-of-type>[data-slot=menubar-trigger]]:rounded-r-control [&>span]:align-middle");
@source not inline("[&>span]:truncate [&>svg:first-child]:rounded-control [&>svg:first-child]:size-10! [&>svg:first-child]:size-5.5! [&>svg:first-child]:size-6!");
@source not inline("[&>svg:not(:first-child):last-child]:ml-auto [&>svg:not([class*='size-'])]:size-3.5 [&>svg:not([class*='size-'])]:size-4 [&>svg:not([class*='size-'])]:size-5");
@source not inline("[&>svg:not([class*='size-'])]:size-6 [&>svg:not([class*='size-'])]:size-8 [&>svg]:order-first [&>svg]:pointer-events-none [&>svg]:shrink-0 [&>svg]:size-3");
@source not inline("[&>svg]:size-4 [&>svg]:size-5 [&>svg]:text-current [&>svg]:text-information [&>svg]:text-inherit [&>svg]:text-negative [&>svg]:text-positive");
@source not inline("[&>svg]:text-primary [&>svg]:text-secondary-foreground [&>svg]:text-warning [&>svg]:transition-transform [&>ul:last-of-type]:border-r-0 [&>ul]:border-r");
@source not inline("[&[aria-expanded=true]>svg:not(:first-child):last-child]:rotate-180 [&[aria-expanded=true]>svg]:rotate-180 [&[data-activable=true]:active]:bg-table-active!");
@source not inline("[&[data-activable=true]:active]:text-table-active-foreground! [&[data-hoverable=true]:hover]:bg-table-hover");
@source not inline("[&[data-hoverable=true]:hover]:text-table-hover-foreground [&[data-orientation=vertical]]:justify-center");
@source not inline("[&[data-state=open]>svg:not(:first-child):last-child]:rotate-180 [&[data-state=open]>svg:only-child]:rotate-180 [&[readonly]]:bg-muted");
@source not inline("[&[readonly]]:cursor-default [&[type='color']]:overflow-hidden [&_img]:object-cover [&_img]:size-full [&_p]:leading-relaxed [&_svg:not([class*='size-'])]:size-3");
@source not inline("[&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='size-'])]:size-6 [&_svg:not([class*='text-'])]:text-muted-foreground [&_svg]:duration-200");
@source not inline("[&_svg]:opacity-70 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg]:text-foreground [&_svg]:transition-transform [&_tbody_tr_th[data-slot|=table]]:left-0");
@source not inline("[&_tbody_tr_th[data-slot|=table]]:sticky [&_tbody_tr_th[data-slot|=table]]:z-1 [&_tfoot[data-slot|=table]]:bottom-0 [&_tfoot[data-slot|=table]]:sticky");
@source not inline("[&_tfoot[data-slot|=table]]:z-2 [&_thead[data-slot|=table]]:sticky [&_thead[data-slot|=table]]:top-0 [&_thead[data-slot|=table]]:z-2");
@source not inline("[&_tr:last-of-type_td[data-slot|=table]]:border-b-0 [&_tr:last-of-type_th[data-slot|=table]]:border-b-0");
@source not inline("[&_tr[data-activable=true]:active_th[data-slot|=table]]:bg-table-active! [&_tr[data-activable=true]:active_th[data-slot|=table]]:text-table-active-foreground!");
@source not inline("[&_tr[data-hoverable=true]:hover_th[data-slot|=table]]:bg-table-hover [&_tr[data-hoverable=true]:hover_th[data-slot|=table]]:text-table-hover-foreground");
@source not inline("[&_tr[data-slot|=table]]:divide-x [&_tr_td[data-slot|=table]]:border-b [&_tr_th[data-slot|=table]]:bg-table-header [&_tr_th[data-slot|=table]]:border-b");
@source not inline("[--badge-ring:var(--card)] [--badge-ring:var(--muted)] [--badge-ring:var(--object-header)] [--badge-ring:var(--popover)] [--badge-ring:var(--sidebar)]");
@source not inline("[.border-b]:pb-3 [.border-b]:pb-6 [.border-t]:pt-3 [.border-t]:pt-6 [.rounded-full>&]:-bottom-0.25 [.rounded-full>&]:-end-0.25 [.rounded-full>&]:-start-0.25");
@source not inline("[.rounded-full>&]:-top-0.25 [[aria-current]:focus-visible]:bg-primary-hover [[aria-expanded=true]>&]:rotate-90");
@source not inline("[[aria-selected=true]>&]:text-primary-foreground/80 [[data-expanded=true]>&]:rotate-90 [[data-floating=true]_&]:border [[data-floating=true]_&]:border-b!");
@source not inline("[[data-floating=true]_&]:border-b-0 [[data-floating=true]_&]:overflow-visible [[data-floating=true]_&]:rounded-lg [[data-floating=true]_&]:shadow-xs");
@source not inline("[[data-loading=true]>&]:animate-progress-loading [[data-loading=true]>&]:flex-none [[data-loading=true]>&]:w-[30%]");
@source not inline("[[data-orientation=horizontal]>&[data-edge=end]]:before:-translate-x-1 [[data-orientation=horizontal]>&[data-edge=start]]:before:translate-x-0");
@source not inline("[[data-orientation=horizontal]>&]:after:h-5 [[data-orientation=horizontal]>&]:after:w-2.5 [[data-orientation=horizontal]>&]:before:-translate-x-1/2");
@source not inline("[[data-orientation=horizontal]>&]:before:bg-gradient-to-b [[data-orientation=horizontal]>&]:before:h-full [[data-orientation=horizontal]>&]:before:left-1/2");
@source not inline("[[data-orientation=horizontal]>&]:before:w-0.5 [[data-orientation=horizontal]>&]:before:w-[calc(var(--spacing)*1)]");
@source not inline("[[data-orientation=horizontal]>&]:cursor-col-resize [[data-orientation=horizontal]>&]:w-4! [[data-orientation=horizontal]>&]:w-px!");
@source not inline("[[data-orientation=horizontal]_&]:max-w-(--h-split-panel-max) [[data-orientation=horizontal]_&]:min-h-0");
@source not inline("[[data-orientation=horizontal]_&]:min-w-(--h-split-panel-min) [[data-orientation=vertical]>&[data-edge=end]]:before:-translate-y-1");
@source not inline("[[data-orientation=vertical]>&[data-edge=start]]:before:translate-y-0 [[data-orientation=vertical]>&]:after:h-2.5 [[data-orientation=vertical]>&]:after:w-5");
@source not inline("[[data-orientation=vertical]>&]:before:-translate-y-1/2 [[data-orientation=vertical]>&]:before:bg-gradient-to-r [[data-orientation=vertical]>&]:before:h-0.5");
@source not inline("[[data-orientation=vertical]>&]:before:h-[calc(var(--spacing)*1)] [[data-orientation=vertical]>&]:before:top-1/2 [[data-orientation=vertical]>&]:before:w-full");
@source not inline("[[data-orientation=vertical]>&]:cursor-row-resize [[data-orientation=vertical]>&]:h-4! [[data-orientation=vertical]>&]:h-px!");
@source not inline("[[data-orientation=vertical]_&]:h-px [[data-orientation=vertical]_&]:max-h-(--h-split-panel-max) [[data-orientation=vertical]_&]:min-h-(--h-split-panel-min)");
@source not inline("[[data-orientation=vertical]_&]:min-w-0 [[data-orientation=vertical]_&]:w-full [[data-size=md]_&,[data-size=sm]_&]:h-6 [[data-size=md]_&]:h-10");
@source not inline("[[data-size=md]_&]:min-h-10 [[data-size=md]_&]:pb-3 [[data-size=md]_&]:px-3 [[data-size=md]_&]:size-7 [[data-size=sm]_&,[data-size=md]_&]:flex-row");
@source not inline("[[data-size=sm]_&,[data-size=md]_&]:gap-1 [[data-size=sm]_&,[data-size=md]_&]:items-baseline [[data-size=sm]_&]:h-8 [[data-size=sm]_&]:min-h-8");
@source not inline("[[data-size=sm]_&]:pb-2 [[data-size=sm]_&]:px-2.5 [[data-size=sm]_&]:size-6");
@source not inline("[[data-size=sm]_&_[data-slot=toolbar-subtitle],[data-size=md]_&_[data-slot=toolbar-subtitle]]:pl-0");
@source not inline("[[data-slot=button][data-variant=information]_&]:border-information-foreground [[data-slot=button][data-variant=negative]_&]:border-negative-foreground");
@source not inline("[[data-slot=button][data-variant=positive]_&]:border-positive-foreground [[data-slot=button][data-variant=primary]_&]:border-primary-foreground");
@source not inline("[[data-slot=button][data-variant=warning]_&]:border-warning-foreground [[data-slot=button]_&]:border-secondary-foreground");
@source not inline("[[data-slot=exp-panel-item]:last-child>&]:not-has-[button[aria-expanded=true]]:group-has-[button[aria-expanded=true]]/exp:border-b-0");
@source not inline("[[data-slot=field]_[aria-invalid=true]~&]:block [[data-slot=field]_[aria-invalid=true]~&]:hidden [[data-slot=field]_input:user-invalid~&]:block");
@source not inline("[[data-slot=field]_input:user-invalid~&]:hidden [[data-slot=field]_textarea:user-invalid~&]:block [[data-slot=field]_textarea:user-invalid~&]:hidden");
@source not inline("[[data-slot=input-group][data-size=sm]_&]:h-5 [[data-slot=input-group][data-size=sm]_&]:has-[>[data-slot|=tag]]:pl-0.5");
@source not inline("[[data-slot=input-group][data-size=sm]_&]:has-[>[data-slot|=tag]]:pr-0.5 [[data-slot=input-group][data-size=sm]_&]:has-[>button]:pl-0.5");
@source not inline("[[data-slot=input-group][data-size=sm]_&]:has-[>button]:pr-0.5 [[data-slot=input-group][data-size=sm]_&]:pl-1.25");
@source not inline("[[data-slot=input-group][data-size=sm]_&]:pr-1.25 [[data-slot=input-group][data-size=sm]_&]:size-5");
@source not inline("[[data-slot=listbox]>*:first-of-type_&:first-of-type]:rounded-t-control [[data-slot=listbox]>*:last-of-type_&:last-of-type]:rounded-b-control");
@source not inline("[[data-slot=menubar][data-size=md]_&]:h-8 [[data-slot=menubar][data-size=sm]_&]:h-6.5 [[data-slot=menubar][data-variant=outline]_&]:px-3");
@source not inline("[[data-slot=menubar][data-variant=outline]_&]:rounded-none [[data-slot=select-option]:focus_&]:text-primary-foreground/80");
@source not inline("[[data-slot=table-header][data-bordered=true]_&:first-child]:border-l [[data-slot=table-header][data-bordered=true]_&:last-child]:border-r");
@source not inline("[[data-slot=table-header][data-bordered=true]_&]:border-b [[data-slot=table-header][data-bordered=true]_&]:border-t [[data-slot=toolbar-branding]_&]:pl-0");
@source not inline("[[data-slot=toolbar-image]~&]:pl-1 [[data-slot=toolbar]:not([data-variant=transparent])>&]:border [[data-slot=tooltip-content]_&]:bg-background/20");
@source not inline("[[data-slot=tooltip-content]_&]:text-background [[data-slot=tree-item]:focus-visible>&]:ring-[calc(var(--spacing)*0.75)]");
@source not inline("[[data-slot=tree-item][aria-selected=true]>&]:bg-primary [[data-slot=tree-item][aria-selected=true]>&]:font-medium");
@source not inline("[[data-slot=tree-item][aria-selected=true]>&]:has-[[data-slot=tree-action]:hover]:bg-primary!");
@source not inline("[[data-slot=tree-item][aria-selected=true]>&]:has-[[data-slot=tree-action]:hover]:text-primary-foreground!");
@source not inline("[[data-slot=tree-item][aria-selected=true]>&]:hover:bg-primary-active [[data-slot=tree-item][aria-selected=true]>&]:hover:text-primary-foreground");
@source not inline("[[data-slot=tree-item][aria-selected=true]>&]:text-primary-foreground [[data-slot=tree-item][aria-selected=true]_&]:text-primary-foreground!");
@source not inline("[[data-state=open]_&]:rotate-180 [[data-validate=immediate]_&:has(input:invalid)]:border-negative");
@source not inline("[[data-validate=immediate]_&:has(input:invalid)]:inset-ring-negative/20 [[data-validate=immediate]_&:has(input:invalid)]:inset-ring-negative/20!");
@source not inline("[[data-validate=immediate]_&:has(input:invalid)]:ring-negative/20 [[data-validate=immediate]_&:has(input:invalid)]:text-negative");
@source not inline("[[data-validate=immediate]_&:has(textarea:invalid)]:text-negative [[data-validate=immediate]_&:invalid]:border-negative");
@source not inline("[[data-validate=immediate]_&:invalid]:border-negative! [[data-validate=immediate]_&:invalid]:inset-ring-negative/20!");
@source not inline("[[data-validate=immediate]_&:invalid]:ring-negative/20! [[data-validate=immediate]_&]:group-has-[input:invalid]/field:block");
@source not inline("[[data-validate=immediate]_&]:group-has-[input:invalid]/field:hidden [[data-validate=immediate]_&]:group-has-[textarea:invalid]/field:block");
@source not inline("[[data-validate=immediate]_&]:group-has-[textarea:invalid]/field:hidden [[data-validate=immediate]_[data-slot=field]_input:invalid~&]:block");
@source not inline("[[data-validate=immediate]_[data-slot=field]_input:invalid~&]:hidden [[data-validate=immediate]_[data-slot=field]_textarea:invalid~&]:block");
@source not inline("[[data-validate=immediate]_[data-slot=field]_textarea:invalid~&]:hidden [[data-validate=immediate]_input:invalid~&]:bg-negative");
@source not inline("[[data-validate=immediate]_input:invalid~&]:border-negative [[data-validate=immediate]_input:invalid~&]:inset-ring-negative/20!");
@source not inline("[[data-validate=immediate]_input:invalid~&]:ring-negative/20 [[data-variant=information]>&]:bg-information [[data-variant=legend]+&]:-mt-1.5");
@source not inline("[[data-variant=negative]>&]:bg-negative [[data-variant=positive]>&]:bg-positive [[data-variant=transparent]_&]:bg-transparent");
@source not inline("[[data-variant=transparent]_&]:text-foreground [[data-variant=warning]>&]:bg-warning [a&]:active:bg-information-active [a&]:active:bg-negative-active");
@source not inline("[a&]:active:bg-positive-active [a&]:active:bg-primary-active [a&]:active:bg-secondary-active [a&]:active:bg-warning-active [a&]:cursor-pointer");
@source not inline("[a&]:hover:bg-information-hover [a&]:hover:bg-negative-hover [a&]:hover:bg-positive-hover [a&]:hover:bg-primary-hover [a&]:hover:bg-secondary");
@source not inline("[a&]:hover:bg-secondary-hover [a&]:hover:bg-warning-hover [a&]:hover:text-secondary-foreground [input:checked~&]:visible [input:disabled~&]:bg-muted");
@source not inline("[input:disabled~&]:border-muted [input:disabled~&]:cursor-not-allowed [input:disabled~&]:hover:ring-0 [input:user-invalid~&]:bg-negative");
@source not inline("[input:user-invalid~&]:border-negative [input:user-invalid~&]:inset-ring-negative/20! [input:user-invalid~&]:ring-negative/20");
@source not inline("[input[aria-invalid=true]~&]:bg-negative [input[aria-invalid=true]~&]:border-negative [input[aria-invalid=true]~&]:inset-ring-negative/20");
@source not inline("[input[aria-invalid=true]~&]:ring-negative/20 [input[readonly]~&]:pointer-events-none [scrollbar-width:thin] [table[data-borders=both]_&]:border-l");
@source not inline("[table[data-borders=both]_&]:border-r [table[data-borders=both]_&]:border-t [table[data-borders=rows]_&]:border-l [table[data-borders=rows]_&]:border-r");
@source not inline("[table[data-borders=rows]_&]:border-t absolute active:[--badge-ring:var(--sidebar-primary)] active:after:border-primary-active active:before:bg-primary-active");
@source not inline("active:before:via-transparent active:bg-information-active active:bg-information/15 active:bg-negative-active active:bg-negative/15 active:bg-positive-active");
@source not inline("active:bg-positive/15 active:bg-primary-active active:bg-primary/15 active:bg-secondary-active active:bg-sidebar-primary active:bg-sidebar-secondary");
@source not inline("active:bg-table-active active:bg-table-active! active:bg-warning-active active:bg-warning/15 active:border-inherit");
@source not inline("active:data-[toggled=true]:bg-information-active active:data-[toggled=true]:bg-negative-active active:data-[toggled=true]:bg-positive-active");
@source not inline("active:data-[toggled=true]:bg-primary-active active:data-[toggled=true]:bg-secondary-active active:data-[toggled=true]:bg-warning-active");
@source not inline("active:data-[toggled=true]:fill-secondary-foreground active:data-[toggled=true]:text-secondary-foreground active:fill-secondary-foreground");
@source not inline("active:text-primary-active active:text-secondary-foreground active:text-sidebar-primary-foreground active:text-sidebar-secondary-foreground");
@source not inline("active:text-table-active-foreground active:text-table-active-foreground! after:-translate-x-1/2 after:-translate-y-1/2 after:absolute after:bg-background");
@source not inline("after:block after:border-2 after:border-split-handle after:left-1/2 after:rounded-sm after:shadow-xs after:top-1/2 align-middle animate-pulse animate-spin");
@source not inline("appearance-none aria-[checked=true]:[&>svg]:visible aria-[checked=true]:before:visible aria-[current=date]:bg-secondary");
@source not inline("aria-[current=date]:text-secondary-foreground aria-[expanded=true]:bg-secondary-active aria-[expanded=true]:hover:bg-sidebar-secondary");
@source not inline("aria-[expanded=true]:hover:text-sidebar-secondary-foreground aria-[expanded=true]:opacity-100 aria-[expanded=true]:text-secondary-foreground");
@source not inline("aria-disabled:cursor-not-allowed aria-disabled:opacity-disabled aria-disabled:pointer-events-none aria-expanded:bg-secondary-hover aria-expanded:outline");
@source not inline("aria-expanded:outline-[calc(var(--spacing)*0.75)] aria-invalid:border-negative aria-invalid:inset-ring-negative/20 aria-invalid:ring-negative/20");
@source not inline("aria-pressed:bg-information-active aria-pressed:bg-information/15 aria-pressed:bg-negative-active aria-pressed:bg-negative/15 aria-pressed:bg-positive-active");
@source not inline("aria-pressed:bg-positive/15 aria-pressed:bg-primary-active aria-pressed:bg-primary/15 aria-pressed:bg-secondary-active aria-pressed:bg-warning-active");
@source not inline("aria-pressed:bg-warning/15 aria-pressed:border-inherit aria-pressed:fill-secondary-foreground aria-pressed:text-secondary-foreground aria-selected:bg-background");
@source not inline("aria-selected:bg-primary aria-selected:bg-primary-active aria-selected:bg-primary-active! aria-selected:border-border aria-selected:hover:bg-primary-hover!");
@source not inline("aria-selected:inset-shadow-[-.125rem_0_var(--primary)] aria-selected:inset-shadow-[0_-.125rem_var(--primary)]");
@source not inline("aria-selected:not-data-[range=middle]:bg-primary-active! aria-selected:not-data-[range=middle]:focus:bg-primary-hover!");
@source not inline("aria-selected:not-data-[range=middle]:hover:bg-primary-hover! aria-selected:not-data-[range=middle]:text-primary-foreground! aria-selected:text-foreground");
@source not inline("aria-selected:text-primary-foreground aria-selected:text-primary-foreground! aspect-square auto-rows-min basis-full before:-translate-x-0.75");
@source not inline("before:-translate-x-1/2 before:-translate-y-1/2 before:absolute before:aspect-square before:bg-background before:bg-foreground before:bg-transparent");
@source not inline("before:block before:duration-200 before:from-15% before:from-transparent before:h-full before:invisible before:left-1/2 before:motion-reduce:transition-none");
@source not inline("before:pointer-events-none before:ring-0 before:rounded-full before:rounded-sm before:shadow-input before:size-2 before:to-85% before:to-transparent");
@source not inline("before:top-1/2 before:transition-transform before:via-split-handle bg-(--bg-bubble) bg-background bg-background/70 bg-black/50 bg-black/60 bg-blue-500 bg-border");
@source not inline("bg-card bg-current bg-current/10 bg-current/20 bg-foreground bg-foreground/20 bg-gray-400 bg-green-500 bg-indigo-500 bg-information bg-information/10");
@source not inline("bg-input-inner bg-muted bg-muted/50 bg-negative bg-negative/10 bg-object-header bg-orange-400 bg-pink-400 bg-popover bg-positive bg-positive/10 bg-primary");
@source not inline("bg-primary/10 bg-purple-500 bg-red-500 bg-secondary bg-sidebar bg-sidebar-border bg-sidebar-secondary bg-table-header bg-teal-400 bg-transparent bg-warning");
@source not inline("bg-warning/10 bg-yellow-300 block blur border border-0 border-2 border-b border-background border-blue-500 border-border border-dashed border-gray-400");
@source not inline("border-green-500 border-indigo-500 border-information/50 border-input border-l border-l-2 border-muted/50 border-negative/50 border-orange-400 border-pink-400");
@source not inline("border-positive/50 border-primary border-primary/50 border-purple-500 border-r border-red-500 border-separate border-sidebar-border border-spacing-0");
@source not inline("border-spacing-1 border-spacing-x-0 border-spacing-y-1 border-t border-t-transparent! border-teal-400 border-transparent border-warning/50 border-x");
@source not inline("border-yellow-300 bottom-0 bottom-3 bottom-4 bottom-full box-border break-words caption-bottom caret-transparent col-span-full col-start-2 col-start-3 collapse");
@source not inline("container cursor-default cursor-not-allowed cursor-pointer cursor-text dark:[[data-slot=tooltip-content]_&]:bg-background/10");
@source not inline("dark:[[data-validate=immediate]_&:has(input:invalid)]:inset-ring-negative/40 dark:[[data-validate=immediate]_&:has(input:invalid)]:inset-ring-negative/40!");
@source not inline("dark:[[data-validate=immediate]_&:has(input:invalid)]:ring-negative/40 dark:[[data-validate=immediate]_&:invalid]:inset-ring-negative/40!");
@source not inline("dark:[[data-validate=immediate]_&:invalid]:ring-negative/40! dark:[[data-validate=immediate]_input:invalid~&]:inset-ring-negative/40!");
@source not inline("dark:[[data-validate=immediate]_input:invalid~&]:ring-negative/40 dark:[input:user-invalid~&]:inset-ring-negative/40!");
@source not inline("dark:[input:user-invalid~&]:ring-negative/40 dark:[input[aria-invalid=true]~&]:inset-ring-negative/40 dark:[input[aria-invalid=true]~&]:ring-negative/40");
@source not inline("dark:aria-invalid:inset-ring-negative/40 dark:aria-invalid:ring-negative/40 dark:data-[invalid=true]:inset-ring-negative/40");
@source not inline("dark:has-[[data-slot][aria-invalid=true]]:ring-negative/40 dark:has-[input:user-invalid]:inset-ring-negative/40");
@source not inline("dark:has-[input:user-invalid]:inset-ring-negative/40! dark:has-[input:user-invalid]:ring-negative/40 dark:has-[input[aria-invalid=true]]:inset-ring-negative/40");
@source not inline("dark:has-[input[aria-invalid=true]]:ring-negative/40 dark:user-invalid:inset-ring-negative/40! dark:user-invalid:ring-negative/40!");
@source not inline("data-[active=true]:*:[svg]:text-primary! data-[active=true]:[--badge-ring:var(--sidebar-primary)] data-[active=true]:bg-sidebar-primary");
@source not inline("data-[active=true]:focus:bg-primary/10 data-[active=true]:font-medium data-[active=true]:hover:bg-primary/10 data-[active=true]:text-primary");
@source not inline("data-[active=true]:text-sidebar-primary-foreground data-[active]:bg-secondary-hover data-[active]:border-border data-[active]:font-semibold");
@source not inline("data-[active]:text-primary data-[borderless=true]:border-0 data-[collapsed=true]:flex-col! data-[collapsed=true]:gap-3 data-[collapsed=true]:hidden");
@source not inline("data-[collapsed=true]:hidden! data-[collapsed=true]:items-start! data-[collapsed=true]:w-min data-[disabled=true]:opacity-disabled");
@source not inline("data-[disabled=true]:pointer-events-none data-[dot=true]:p-0 data-[dot]:before:bg-current data-[dot]:before:content-[''] data-[dot]:before:rounded-full");
@source not inline("data-[dot]:before:size-2 data-[floating=true]:border data-[floating=true]:gap-2 data-[floating=true]:opacity-0 data-[floating=true]:overflow-visible");
@source not inline("data-[floating=true]:p-[calc(var(--spacing)*0.75)] data-[floating=true]:rounded-lg data-[floating=true]:shadow-xs data-[floating=true]:z-1");
@source not inline("data-[indicator=information]:text-information data-[indicator=negative]:text-negative data-[indicator=positive]:text-positive");
@source not inline("data-[indicator=warning]:text-warning data-[inset=true]:pl-8 data-[invalid=true]:inset-ring-negative/20 data-[non-interactive=true]:cursor-none");
@source not inline("data-[non-interactive=true]:pointer-events-none data-[orientation=horizontal]:[[data-slot=input-group]_&]:grow");
@source not inline("data-[orientation=horizontal]:[[data-slot=input-group]_&]:w-auto data-[orientation=horizontal]:flex-col data-[orientation=horizontal]:flex-row");
@source not inline("data-[orientation=horizontal]:h-px data-[orientation=horizontal]:items-start data-[orientation=horizontal]:w-full");
@source not inline("data-[orientation=vertical]:[[data-slot=input-group]_&]:h-auto data-[orientation=vertical]:[[data-slot=input-group]_&]:self-stretch");
@source not inline("data-[orientation=vertical]:flex-col data-[orientation=vertical]:flex-row data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px");
@source not inline("data-[ping=true]:before:absolute data-[ping=true]:before:animate-ping data-[ping=true]:before:bg-information data-[ping=true]:before:bg-negative");
@source not inline("data-[ping=true]:before:bg-positive data-[ping=true]:before:bg-primary data-[ping=true]:before:bg-warning data-[ping=true]:before:h-full");
@source not inline("data-[ping=true]:before:inline-flex data-[ping=true]:before:opacity-75 data-[ping=true]:before:rounded-full data-[ping=true]:before:w-full");
@source not inline("data-[position=fixed]:pb-[env(safe-area-inset-bottom)] data-[position=sticky]:pb-[env(safe-area-inset-bottom)] data-[range=end]:rounded-l-none");
@source not inline("data-[range=start]:rounded-r-none data-[size=lg]:h-12 data-[size=lg]:min-h-12 data-[size=md]:h-10 data-[size=sm]:h-5 data-[size=sm]:h-8 data-[size=sm]:max-w-8");
@source not inline("data-[size=sm]:min-h-8 data-[size=sm]:min-w-8 data-[size=sm]:pr-1 data-[slot=checkbox-group]:gap-3 data-[state=open]:bg-secondary-hover");
@source not inline("data-[state=open]:border-border data-[state=open]:text-primary data-[state=open]:text-secondary-foreground data-[state=selected]:bg-table-active");
@source not inline("data-[state=selected]:text-table-active-foreground data-[toggled=true]:bg-information-active data-[toggled=true]:bg-negative-active");
@source not inline("data-[toggled=true]:bg-positive-active data-[toggled=true]:bg-primary-active data-[toggled=true]:bg-secondary-active data-[toggled=true]:bg-warning-active");
@source not inline("data-[toggled=true]:fill-secondary-foreground data-[toggled=true]:text-secondary-foreground data-[unread=true]:border-l-3 data-[unread=true]:border-l-warning");
@source not inline('data-[variant="information"]:bg-information/10 data-[variant="information"]:border-information data-[variant="information"]:text-information');
@source not inline('data-[variant="negative"]:bg-negative/10 data-[variant="negative"]:border-negative data-[variant="negative"]:text-negative');
@source not inline('data-[variant="positive"]:bg-positive/10 data-[variant="positive"]:border-positive data-[variant="positive"]:text-positive');
@source not inline('data-[variant="primary"]:bg-primary/10 data-[variant="primary"]:border-primary data-[variant="primary"]:text-primary data-[variant="warning"]:bg-warning/10');
@source not inline('data-[variant="warning"]:border-warning data-[variant="warning"]:text-warning data-[variant=clear]:[--badge-ring:var(--background)]');
@source not inline("data-[variant=clear]:bg-background data-[variant=clear]:text-foreground data-[variant=negative]:*:[svg]:text-negative!");
@source not inline("data-[variant=negative]:focus:bg-negative/10 data-[variant=negative]:hover:bg-negative/10 data-[variant=negative]:text-negative data-[variant=toast]:py-2");
@source not inline("data-[variant=toast]:rounded-full data-[variant=transparent]:[--badge-ring:var(--background)] data-[variant=transparent]:bg-transparent");
@source not inline("data-[variant=transparent]:text-foreground disabled:cursor-not-allowed disabled:opacity-disabled disabled:pointer-events-none divide-solid divide-x divide-y");
@source not inline("duration-100 duration-200 duration-300 duration-500 ease-linear ease-out end-2 end-full fade-b-8 fade-l-8 fade-r-8 fade-t-8 fade-x-2 fade-x-8 fade-y-8");
@source not inline("field-sizing-content file:bg-transparent file:border-0 file:font-medium file:h-7 file:inline-flex file:text-foreground file:text-sm fill-(--fg-bubble)");
@source not inline("fill-current fill-foreground fill-information-foreground fill-muted-foreground fill-negative-foreground fill-none fill-positive-foreground");
@source not inline("fill-primary-foreground fill-secondary-foreground fill-warning-foreground fill-white first:[&_tfoot_tr_td[data-slot|=table]]:border-t");
@source not inline("first:[&_tfoot_tr_th[data-slot|=table]]:border-t first:border-l-0 first:rounded-l-control fixed flex flex-1 flex-[0_1_0] flex-[1_1_0] flex-[1_auto] flex-col");
@source not inline("flex-col-reverse flex-none flex-nowrap flex-row flex-wrap focus-outline focus-ring focus-visible:bg-secondary-hover focus-visible:border-ring");
@source not inline("focus-visible:inset-ring focus-visible:inset-ring-[calc(var(--spacing)*0.75)] focus-visible:inset-ring-information/50 focus-visible:inset-ring-negative/50");
@source not inline("focus-visible:inset-ring-positive/50 focus-visible:inset-ring-primary/50 focus-visible:inset-ring-ring/50 focus-visible:inset-ring-warning/50");
@source not inline("focus-visible:outline-information/50 focus-visible:outline-negative/50 focus-visible:outline-none focus-visible:outline-positive/50");
@source not inline("focus-visible:outline-primary/50 focus-visible:outline-warning/50 focus-visible:ring-0 focus-visible:ring-4 focus-visible:ring-[calc(var(--spacing)*0.75)]");
@source not inline("focus-visible:ring-inset focus-visible:ring-ring/50 focus-within:ml-auto focus-within:not-sr-only focus:aria-[current=date]:bg-secondary-hover");
@source not inline("focus:aria-selected:bg-primary-hover focus:aria-selected:text-primary-foreground focus:bg-primary focus:bg-secondary-hover focus:bg-table-hover");
@source not inline("focus:border-border focus:outline focus:outline-[calc(var(--spacing)*0.75)] focus:outline-hidden focus:ring-[calc(var(--spacing)*0.75)] focus:ring-offset-2");
@source not inline("focus:ring-ring focus:text-primary-foreground focus:text-secondary-foreground focus:text-table-hover-foreground font-bold font-extrabold font-medium font-mono");
@source not inline("font-normal font-sans font-semibold gap-0.5 gap-1 gap-1.5 gap-2 gap-2.5 gap-3 gap-4 gap-6 gap-8 gap-y-0.5 grid grid-cols-1 grid-cols-2 grid-cols-7");
@source not inline("grid-cols-[0_1fr_auto] grid-cols-[minmax(0,1fr)_auto] grid-rows-2 grid-rows-[auto_auto] group-aria-selected/tree-item:not-sr-only");
@source not inline("group-aria-selected:bg-primary-active! group-aria-selected:text-primary-foreground! group-data-[active=true]/bottom-nav-item:[--badge-ring:var(--secondary)]");
@source not inline("group-data-[active=true]/bottom-nav-item:bg-secondary group-data-[active=true]/bottom-nav-item:font-semibold");
@source not inline("group-data-[active=true]/bottom-nav-item:hover:text-primary-hover group-data-[active=true]/bottom-nav-item:text-primary");
@source not inline("group-data-[collapsed=true]/sidebar:[&>*:not(svg:first-child):not([data-slot=menu]):not([data-slot=avatar]:first-child)]:hidden!");
@source not inline("group-data-[collapsed=true]/sidebar:[&>[data-slot=avatar]:first-child]:size-6! group-data-[collapsed=true]/sidebar:[&>[data-slot=avatar]:first-child]:size-8!");
@source not inline("group-data-[collapsed=true]/sidebar:[&>[data-slot=avatar]:first-child]:text-xs group-data-[collapsed=true]/sidebar:[&>svg:first-child]:size-8!");
@source not inline("group-data-[collapsed=true]/sidebar:block! group-data-[collapsed=true]/sidebar:has-[>[data-slot=avatar]:first-child]:p-0!");
@source not inline("group-data-[collapsed=true]/sidebar:has-[>svg:first-child]:p-0! group-data-[collapsed=true]/sidebar:hidden group-data-[collapsed=true]/sidebar:hidden!");
@source not inline("group-data-[collapsed=true]/sidebar:justify-center! group-data-[collapsed=true]/sidebar:max-w-4! group-data-[collapsed=true]/sidebar:p-1");
@source not inline("group-data-[collapsed=true]/sidebar:size-8! group-data-[collapsed=true]/sidebar:w-4! group-data-[collapsed=true]/step-indicator:block");
@source not inline("group-data-[collapsed=true]/step-indicator:data-[state=completed]:hidden group-data-[collapsed=true]/step-indicator:data-[state=inactive]:hidden");
@source not inline("group-data-[collapsed=true]/step-indicator:flex-none group-data-[collapsed=true]/step-indicator:hidden group-data-[disabled=true]/field:opacity-disabled");
@source not inline("group-data-[disabled=true]:opacity-disabled group-data-[disabled=true]:pointer-events-none group-data-[floating=true]/bottom-nav:overflow-hidden");
@source not inline("group-data-[floating=true]/bottom-nav:rounded-lg group-data-[labels=false]/bottom-nav:hidden group-data-[orientation=horizontal]/step-indicator:flex-row");
@source not inline("group-data-[orientation=horizontal]/step-indicator:gap-2 group-data-[orientation=horizontal]/step-indicator:h-px");
@source not inline("group-data-[orientation=horizontal]/step-indicator:items-center group-data-[orientation=horizontal]/step-indicator:mx-2");
@source not inline("group-data-[orientation=vertical]/step-indicator:flex-col group-data-[orientation=vertical]/step-indicator:gap-1");
@source not inline("group-data-[orientation=vertical]/step-indicator:min-h-6 group-data-[orientation=vertical]/step-indicator:ml-4");
@source not inline("group-data-[orientation=vertical]/step-indicator:my-1 group-data-[orientation=vertical]/step-indicator:w-px group-data-[state=active]/step-item:bg-primary");
@source not inline("group-data-[state=active]/step-item:border-primary-foreground group-data-[state=active]/step-item:ring-[calc(var(--spacing)*0.75)]");
@source not inline("group-data-[state=active]/step-item:ring-primary/50 group-data-[state=active]/step-item:text-primary-foreground");
@source not inline("group-data-[state=completed]/step-item:bg-primary group-data-[state=completed]/step-item:border-primary");
@source not inline("group-data-[state=completed]/step-item:text-primary-foreground group-data-[state=inactive]/step-item:bg-background");
@source not inline("group-data-[state=inactive]/step-item:border-border group-data-[state=inactive]/step-item:text-muted-foreground group-first-of-type:hidden");
@source not inline("group-focus-visible:bg-secondary-hover group-focus-within/menu-item:opacity-100 group-has-[>input]/input-group:pb-2.5 group-has-[>input]/input-group:pt-2.5");
@source not inline("group-has-[[aria-invalid=true]]/field:block group-has-[[aria-invalid=true]]/field:hidden group-has-[[data-active=true]]/nav-item:bg-secondary-hover");
@source not inline("group-has-[[data-active=true]]/nav-item:border-border group-has-[[data-active=true]]/nav-item:text-primary");
@source not inline("group-has-[[data-orientation=horizontal]]/field:text-balance group-has-[[data-slot=tile-description]]/tile:self-start");
@source not inline("group-has-[[data-slot=tile-description]]/tile:translate-y-0.5 group-has-[input:user-invalid]/field:block group-has-[input:user-invalid]/field:hidden");
@source not inline("group-has-[input[readonly]]/input-number:hidden group-has-[textarea:user-invalid]/field:block group-has-[textarea:user-invalid]/field:hidden");
@source not inline("group-has-data-[sidebar=menu-action]/menu-item:pr-8 group-hover/menu-item:opacity-100 group-hover/sidebar-group-label:ml-auto");
@source not inline("group-hover/sidebar-group-label:not-sr-only group-hover/tree-item:not-sr-only group-hover:bg-secondary group-hover:group-aria-selected:bg-primary-hover!");
@source not inline("group-hover:text-secondary-foreground grow grow-0 h-1 h-1.5 h-10 h-12 h-2 h-2.5 h-3 h-4 h-5 h-6 h-6.5 h-7 h-8 h-9 h-[75%] h-auto h-fit h-full h-px");
@source not inline("has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-end]]:h-auto");
@source not inline("has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=block-start]]:flex-col has-[>[data-align=block-start]]:h-auto");
@source not inline('has-[>[data-align=inline-end]]:[&>input]:pr-2 has-[>[data-align=inline-start]]:[&>input]:pl-2 has-[>[data-slot="avatar"]:last-of-type]:pr-2');
@source not inline('has-[>[data-slot="toolbar-image"]:first-of-type]:pl-2 has-[>[data-slot=button-group]]:gap-2 has-[>[data-slot=checkbox-group]]:gap-3');
@source not inline("has-[>[data-slot=chip-close]]:pr-0 has-[>[data-slot=field-content]]:[&>[role=checkbox],[role=radio]]:mt-px has-[>[data-slot=field-content]]:items-start");
@source not inline("has-[>[data-slot=field-description]]:grid has-[>[data-slot=field-description]]:grid-cols-[auto_1fr] has-[>[data-slot=field-error]]:grid");
@source not inline("has-[>[data-slot=field-error]]:grid-cols-[auto_1fr] has-[>[data-slot=field]]:border has-[>[data-slot=field]]:flex-col has-[>[data-slot=field]]:rounded-md");
@source not inline("has-[>[data-slot=field]]:w-full has-[>[data-slot=radio-group]]:gap-3 has-[>[data-slot=spinner]]:p-0 has-[>[data-slot=spinner]]:px-2");
@source not inline("has-[>[data-slot=spinner]]:px-2.5 has-[>[data-slot=spinner]]:px-3 has-[>[data-slot|=tag]]:pl-1.5 has-[>[data-slot|=tag]]:pr-1.5 has-[>button]:pl-1.25");
@source not inline("has-[>button]:pr-1.25 has-[>svg]:gap-x-3 has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr_auto] has-[>svg]:p-0 has-[>svg]:pl-1.5 has-[>svg]:px-2");
@source not inline("has-[>svg]:px-2.5 has-[>svg]:px-3 has-[>textarea]:h-auto has-[[aria-expanded=true]]:bg-input-inner has-[[aria-expanded=true]]:bg-transparent");
@source not inline("has-[[aria-expanded=true]]:text-foreground has-[[aria-invalid=true]]:text-negative has-[[data-slot=input-group-control]:focus-visible]:border-ring");
@source not inline("has-[[data-slot=input-group-control]:focus-visible]:ring-[calc(var(--spacing)*0.75)] has-[[data-slot=input-group-control]:focus-visible]:ring-ring/50");
@source not inline("has-[[data-slot=sidebar-group-actions]]:pr-1.5 has-[[data-slot=tree-action]:hover]:bg-transparent! has-[[data-slot=tree-action]:hover]:text-foreground!");
@source not inline("has-[[data-slot][aria-invalid=true]]:border-negative has-[[data-slot][aria-invalid=true]]:ring-negative/20 has-[img:not(.hidden)]:bg-transparent");
@source not inline("has-[img]:border-0 has-[input:checked]:before:translate-x-[calc(100%-var(--spacing))] has-[input:checked]:before:visible has-[input:checked]:bg-primary");
@source not inline("has-[input:checked]:bg-secondary/20 has-[input:checked]:border-primary has-[input:checked]:border-primary-active has-[input:disabled]:cursor-not-allowed");
@source not inline("has-[input:disabled]:opacity-disabled has-[input:disabled]:pointer-events-none has-[input:focus-visible]:border-ring");
@source not inline("has-[input:focus-visible]:inset-ring-[calc(var(--spacing)*0.75)] has-[input:focus-visible]:inset-ring-ring/50");
@source not inline("has-[input:focus-visible]:ring-[calc(var(--spacing)*0.75)] has-[input:focus-visible]:ring-primary/50 has-[input:focus-visible]:ring-ring/50");
@source not inline("has-[input:indeterminate]:after:content-[''] has-[input:invalid]:border-negative has-[input:user-invalid]:border-negative");
@source not inline("has-[input:user-invalid]:inset-ring-negative/20 has-[input:user-invalid]:inset-ring-negative/20! has-[input:user-invalid]:ring-negative/20");
@source not inline('has-[input:user-invalid]:text-negative has-[input[aria-invalid="true"]]:border-negative has-[input[aria-invalid=true]]:border-negative');
@source not inline("has-[input[aria-invalid=true]]:inset-ring-negative/20 has-[input[aria-invalid=true]]:ring-negative/20 has-[input[readonly]]:bg-muted");
@source not inline("has-[input[readonly]]:cursor-default has-[input[readonly]]:text-foreground");
@source not inline("has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-control has-[textarea:user-invalid]:text-negative");
@source not inline("has-[~[data-slot=step-indicator-item]]:flex-1 has-data-[slot=card-action]:grid-cols-[minmax(0,1fr)_auto] has-data-[slot=tile-header]:py-4");
@source not inline("has-focus-visible:border-ring has-focus-visible:ring-[calc(var(--spacing)*0.75)] has-focus-visible:ring-ring/50 hbox hidden hidden!");
@source not inline("hover:[--badge-ring:var(--secondary-hover)] hover:[--badge-ring:var(--sidebar-secondary)] hover:[[data-variant]>&]:border-inherit");
@source not inline("hover:after:border-primary-hover hover:aria-[current=date]:bg-secondary-hover hover:aria-selected:bg-primary-hover");
@source not inline("hover:aria-selected:inset-shadow-[-.188rem_0_var(--primary)] hover:aria-selected:inset-shadow-[0_-.188rem_var(--primary)]");
@source not inline("hover:aria-selected:text-primary-foreground hover:before:bg-primary-hover hover:before:via-transparent hover:bg-background hover:bg-current/20");
@source not inline("hover:bg-information-hover hover:bg-information/10 hover:bg-muted/50 hover:bg-negative-hover hover:bg-negative/10 hover:bg-positive-hover hover:bg-positive/10");
@source not inline("hover:bg-primary-hover hover:bg-primary/10 hover:bg-secondary hover:bg-secondary-hover hover:bg-sidebar-secondary hover:bg-table-hover hover:bg-warning-hover");
@source not inline("hover:bg-warning/10 hover:border-border hover:border-foreground/20 hover:data-[toggled=true]:bg-information-hover hover:data-[toggled=true]:bg-negative-hover");
@source not inline("hover:data-[toggled=true]:bg-positive-hover hover:data-[toggled=true]:bg-primary-hover hover:data-[toggled=true]:bg-secondary-hover");
@source not inline("hover:data-[toggled=true]:bg-warning-hover hover:data-[toggled=true]:fill-secondary-foreground hover:data-[toggled=true]:text-secondary-foreground");
@source not inline("hover:fill-secondary-foreground hover:inset-shadow-[-.188rem_0_var(--border)] hover:inset-shadow-[0_-.188rem_var(--border)] hover:opacity-100 hover:ring-4");
@source not inline("hover:text-foreground hover:text-primary hover:text-primary-hover hover:text-secondary-foreground hover:text-sidebar-secondary-foreground");
@source not inline("hover:text-table-hover-foreground hover:underline inline inline-block inline-flex inset-0 inset-shadow-[-.063rem_0_var(--border)]");
@source not inline("inset-shadow-[0_-.063rem_var(--border)] inset-shadow-[0_-1px_var(--sidebar-border)] inset-shadow-[0_1px_var(--sidebar-border)] inset-x-0 inset-y-0 invisible");
@source not inline("italic items-center items-end items-start items-stretch justify-around justify-between justify-center justify-end justify-self-end justify-start");
@source not inline("last:[&>tr_td[data-slot|=table]]:border-b-0 last:[&>tr_th[data-slot|=table]]:border-b-0 last:border-b-0 last:border-r-0 last:mt-0 last:rounded-r-control");
@source not inline("leading-7 leading-none leading-normal leading-snug leading-tight left-0 left-1 left-1/2 left-4 lg:col-2 lg:grid-cols-2 line-clamp-1 line-clamp-2 line-clamp-3");
@source not inline("list-item list-none m-0! mask-[linear-gradient(to_bottom,black_85%,transparent)] mask-[linear-gradient(to_top,black_85%,transparent)] max-h-18 max-h-48 max-h-7");
@source not inline("max-h-[14rem] max-lg:hidden max-w-(--h-split-panel-max) max-w-10 max-w-40 max-w-5xl max-w-[calc(100%-2rem)] max-w-full max-w-sm max-w-xs mb-1.5 mb-2.5 mb-3");
@source not inline("md:divide-x md:divide-y-0 md:gap-2 md:hbox md:p-12 md:p-2 md:text-sm me-2.5 min-h-0 min-h-10 min-h-11 min-h-12 min-h-16 min-h-4 min-h-9 min-h-[28px] min-w-0");
@source not inline("min-w-10 min-w-2.5 min-w-3 min-w-3xs min-w-4 min-w-5 min-w-6 min-w-8 min-w-9 min-w-[1rem] min-w-[8rem] min-w-min ml-3 ml-3.5 ml-auto");
@source not inline("motion-reduce:[&>svg]:transition-none motion-reduce:[&_svg]:transition-none motion-reduce:animate-none motion-reduce:transition-none mr-1.5 mr-auto mt-6 mt-auto");
@source not inline("mx-auto my-1 no-underline not-sr-only nth-last-2:-mt-1 object-contain object-cover opacity-0 opacity-50 opacity-70 opacity-80 opacity-disabled order-1 order-2");
@source not inline("order-3 order-first order-last outline outline-hidden outline-information/50 outline-negative/50 outline-none outline-positive/50 outline-primary/50");
@source not inline("outline-ring/50 outline-warning/50 overflow-auto overflow-hidden overflow-scroll overflow-visible overflow-x-auto overflow-x-hidden overflow-x-scroll");
@source not inline("overflow-y-auto overflow-y-scroll p-0 p-0.25 p-0.5 p-1 p-1.5 p-10 p-2 p-2.5 p-3 p-4 p-6 pb-0 pb-2 pb-3 pb-4");
@source not inline("peer-active/menu-button:text-sidebar-primary-foreground peer-data-[active=true]/menu-button:focus-visible:border");
@source not inline("peer-data-[active=true]/menu-button:focus-visible:border-sidebar peer-data-[active=true]/menu-button:text-sidebar-primary-foreground");
@source not inline("peer-data-[size=sm]/menu-button:max-h-6 peer-disabled:cursor-not-allowed peer-disabled:opacity-disabled peer-hover/menu-button:text-sidebar-secondary-foreground");
@source not inline("pl-1 pl-2 pl-2.5 pl-3 pl-3.5 pl-6 place-items-start placeholder:text-muted-foreground pointer-events-auto pointer-events-none pointer-fine:opacity-0");
@source not inline("pointer-fine:sr-only pr-1 pr-1.5 pr-2 pr-3 pt-1 pt-2 pt-3 px-1 px-1.5 px-2 px-2.5 px-3 px-3.5 px-4 px-6 px-[calc(var(--spacing)*1.2)] py-0.5 py-1 py-1.5 py-2");
@source not inline("py-3 py-4 py-6 py-[calc(var(--spacing)*0.8)] relative resize resize-none right-0 right-0.5 right-1 right-2 right-4 ring ring-4 ring-[calc(var(--spacing)*0.75)]");
@source not inline("ring-blue-500/50 ring-gray-400/50 ring-green-500/50 ring-indigo-500/50 ring-offset-background ring-orange-400/50 ring-pink-400/50 ring-purple-500/50");
@source not inline("ring-red-500/50 ring-ring/50 ring-sidebar-ring ring-teal-400/50 ring-yellow-300/50 rotate-45 rounded rounded-[0.35rem] rounded-[0.438rem] rounded-[30%]");
@source not inline("rounded-[inherit] rounded-control rounded-full rounded-lg rounded-md rounded-none rounded-r-control rounded-r-full rounded-sm rounded-xl rounded-xs row-1 row-2");
@source not inline("row-span-2 row-start-1 scale-95 scrollbar-none select-none selection:bg-primary selection:text-primary-foreground self-end self-start self-stretch shadow");
@source not inline("shadow-[0_0_0_0.125rem_var(--badge-ring,var(--background))] shadow-button shadow-input shadow-lg shadow-md shadow-none shadow-sm shadow-xl shadow-xs shrink");
@source not inline("shrink-0 size-1 size-10 size-12 size-14 size-2 size-2.5 size-3 size-3.5 size-4 size-5 size-6 size-6.5 size-8 size-9 size-full sm:block sm:flex-row");
@source not inline("sm:justify-end sm:max-w-lg sm:max-w-sm sm:pl-2.5 sm:pr-2.5 sm:text-left space-y-0.5 sr-only static sticky stroke-background stroke-border stroke-border/50");
@source not inline("stroke-card svg-defaults table table-caption table-cell table-fixed table-row tabular-nums text-(--fg-bubble) text-2xl text-2xs text-3xl text-4xl");
@source not inline("text-background text-balance text-base text-black text-blue-600 text-card-foreground text-center text-ellipsis text-foreground text-gray-600 text-green-600");
@source not inline("text-indigo-600 text-information text-information-foreground text-inherit text-left text-lg text-muted-foreground text-muted-foreground/40");
@source not inline("text-muted-foreground/60 text-negative text-negative-foreground text-object-header-foreground text-orange-600 text-pink-600 text-popover-foreground");
@source not inline("text-positive text-positive-foreground text-primary text-primary-foreground text-purple-600 text-red-600 text-right text-secondary-foreground");
@source not inline("text-shadow-[0_0_0_var(--foreground)] text-sidebar-foreground text-sidebar-foreground/70 text-sm text-sm/relaxed text-table-header-foreground text-teal-600");
@source not inline("text-transparent text-warning text-warning-foreground text-white text-xl text-xs text-yellow-600 top-0 top-1 top-1/2 touch-none tracking-tight tracking-widest");
@source not inline("transform transform-gpu transition transition-[color,box-shadow] transition-[margin,opacity] transition-[opacity,max-height,padding-bottom]");
@source not inline("transition-[opacity,scale] transition-[translate,opacity] transition-[width,height,padding] transition-all transition-colors transition-opacity");
@source not inline("transition-transform translate-x-1/2 translate-x-full translate-x-px translate-y-0.5 translate-y-1/2 translate-y-full truncate underline underline-offset-4");
@source not inline("user-invalid:border-negative user-invalid:border-negative! user-invalid:inset-ring-negative/20! user-invalid:ring-negative/20! vbox visible");
@source not inline("w-(--sidebar-width,16rem) w-10 w-14 w-2 w-5 w-6 w-8 w-9 w-[80%] w-auto w-fit w-full w-max w-px whitespace-nowrap whitespace-pre wrap-break-word xl:col-3");
@source not inline("xl:grid-cols-3 z-1 z-10 z-50 z-60");
