@theme {
	--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-secondary: var(--secondary);
	--color-secondary-foreground: var(--secondary-foreground);
	--color-muted: var(--muted);
	--color-muted-foreground: var(--muted-foreground);
	--color-accent: var(--accent);
	--color-accent-foreground: var(--accent-foreground);
	--color-success: var(--success);
	--color-success-foreground: var(--success-foreground);
	--color-destructive: var(--destructive);
	--color-destructive-foreground: var(--destructive-foreground);
	--color-border: var(--border);
	--color-input: var(--input);
	--color-ring: var(--ring);
	--color-highlight: var(--highlight);
	--color-highlight-foreground: var(--highlight-foreground);
	--color-chart-1: var(--chart-1);
	--color-chart-2: var(--chart-2);
	--color-chart-3: var(--chart-3);
	--color-chart-4: var(--chart-4);
	--color-chart-5: var(--chart-5);
	--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-accent: var(--sidebar-accent);
	--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
	--color-sidebar-border: var(--sidebar-border);
	--color-sidebar-ring: var(--sidebar-ring);

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

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

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

	--animation-accordion-down: accordion-down 0.2s ease-out;
	--animation-accordion-up: accordion-up 0.2s ease-out;

	@keyframes accordion-down {
		from {
			height: 0;
		}
		to {
			height: var(--radix-accordion-content-height);
		}
	}
	@keyframes accordion-up {
		from {
			height: var(--radix-accordion-content-height);
		}
		to {
			height: 0;
		}
	}
}

@layer base {
	:root {
		--background: oklch(1 0 0);
		--foreground: oklch(0.1450 0 0);
		--card: oklch(1 0 0);
		--card-foreground: oklch(0.1450 0 0);
		--popover: oklch(1 0 0);
		--popover-foreground: oklch(0.1450 0 0);
		--primary: oklch(0.2050 0 0);
		--primary-foreground: oklch(0.9850 0 0);
		--secondary: oklch(0.9700 0 0);
		--secondary-foreground: oklch(0.2050 0 0);
		--muted: oklch(0.9700 0 0);
		--muted-foreground: oklch(0.5560 0 0);
		--accent: oklch(0.9700 0 0);
		--accent-foreground: oklch(0.2050 0 0);
		--destructive: oklch(0.5770 0.2450 27.3250);
		--destructive-foreground: oklch(1 0 0);
		--border: oklch(0.9220 0 0);
		--input: oklch(0.9220 0 0);
		--ring: oklch(0.7080 0 0);
		--chart-1: oklch(0.8100 0.1000 252);
		--chart-2: oklch(0.6200 0.1900 260);
		--chart-3: oklch(0.5500 0.2200 263);
		--chart-4: oklch(0.4900 0.2200 264);
		--chart-5: oklch(0.4200 0.1800 266);
		--sidebar: oklch(0.9850 0 0);
		--sidebar-foreground: oklch(0.1450 0 0);
		--sidebar-primary: oklch(0.2050 0 0);
		--sidebar-primary-foreground: oklch(0.9850 0 0);
		--sidebar-accent: oklch(0.9700 0 0);
		--sidebar-accent-foreground: oklch(0.2050 0 0);
		--sidebar-border: oklch(0.9220 0 0);
		--sidebar-ring: oklch(0.7080 0 0);
		--font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
		--font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
		--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
		--radius: 0.625rem;
		--shadow-2xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
		--shadow-xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
		--shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
		--shadow: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
		--shadow-md: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 2px 4px -1px hsl(0 0% 0% / 0.10);
		--shadow-lg: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 4px 6px -1px hsl(0 0% 0% / 0.10);
		--shadow-xl: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 8px 10px -1px hsl(0 0% 0% / 0.10);
		--shadow-2xl: 0 1px 3px 0px hsl(0 0% 0% / 0.25);
		--tracking-normal: 0em;
		--spacing: 0.25rem;

		/* Additional variables from original theme.css */
		--success: #39a561;
		--success-foreground: #ffffff;
		--highlight: #e5a158;
		--highlight-foreground: #ffffff;
		
		/* fumadocs */
		--fd-banner-height: 4.5rem;
	}

	.dark {
		--background: oklch(0.1450 0 0);
		--foreground: oklch(0.9850 0 0);
		--card: oklch(0.2050 0 0);
		--card-foreground: oklch(0.9850 0 0);
		--popover: oklch(0.2690 0 0);
		--popover-foreground: oklch(0.9850 0 0);
		--primary: oklch(0.9220 0 0);
		--primary-foreground: oklch(0.2050 0 0);
		--secondary: oklch(0.2690 0 0);
		--secondary-foreground: oklch(0.9850 0 0);
		--muted: oklch(0.2690 0 0);
		--muted-foreground: oklch(0.7080 0 0);
		--accent: oklch(0.3710 0 0);
		--accent-foreground: oklch(0.9850 0 0);
		--destructive: oklch(0.7040 0.1910 22.2160);
		--destructive-foreground: oklch(0.9850 0 0);
		--border: oklch(0.2750 0 0);
		--input: oklch(0.3250 0 0);
		--ring: oklch(0.5560 0 0);
		--chart-1: oklch(0.8100 0.1000 252);
		--chart-2: oklch(0.6200 0.1900 260);
		--chart-3: oklch(0.5500 0.2200 263);
		--chart-4: oklch(0.4900 0.2200 264);
		--chart-5: oklch(0.4200 0.1800 266);
		--sidebar: oklch(0.2050 0 0);
		--sidebar-foreground: oklch(0.9850 0 0);
		--sidebar-primary: oklch(0.4880 0.2430 264.3760);
		--sidebar-primary-foreground: oklch(0.9850 0 0);
		--sidebar-accent: oklch(0.2690 0 0);
		--sidebar-accent-foreground: oklch(0.9850 0 0);
		--sidebar-border: oklch(0.2750 0 0);
		--sidebar-ring: oklch(0.4390 0 0);
		--font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
		--font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
		--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
		--radius: 0.625rem;
		--shadow-2xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
		--shadow-xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
		--shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
		--shadow: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
		--shadow-md: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 2px 4px -1px hsl(0 0% 0% / 0.10);
		--shadow-lg: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 4px 6px -1px hsl(0 0% 0% / 0.10);
		--shadow-xl: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 8px 10px -1px hsl(0 0% 0% / 0.10);
		--shadow-2xl: 0 1px 3px 0px hsl(0 0% 0% / 0.25);

		/* Additional variables from original theme.css */
		--success: #39a561;
		--success-foreground: #ffffff;
		--highlight: #e5a158;
		--highlight-foreground: #ffffff;
	}

	*,
	::after,
	::before,
	::backdrop,
	::file-selector-button {
		@apply border-border;
	}
}

@utility container {
	margin-inline: auto;
	padding-inline: 1.5rem;
	width: 100%;
	max-width: var(--container-7xl);
}

@utility no-scrollbar {
	&::-webkit-scrollbar {
		display: none;
	}
	-ms-overflow-style: none;
	scrollbar-width: none;
}