/* Default Theme - Auto Light/Dark */
:root {
	--primary: #6366f1;
	--primary-dark: #4f46e5;
	--primary-light: rgba(99, 102, 241, 0.08);
	--bg: #ffffff;
	--surface: #f5f5f5;
	--surface-raised: #ffffff;
	--text: #111827;
	--text-muted: #6b7280;
	--border: #e5e5e5;
	--border-light: #f0f0f0;
	--error: #ef4444;
	--success: #22c55e;
	--warning: #f59e0b;
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: #111111;
		--surface: #1a1a1a;
		--surface-raised: #1a1a1a;
		--text: #f0f0f0;
		--text-muted: #888888;
		--border: #2a2a2a;
		--border-light: #1e1e1e;
		--primary-light: rgba(99, 102, 241, 0.15);
	}
}
