1<script>
 2	import { Upload } from '@lucide/svelte';
 3</script>
 4
 5<div
 6	class="pointer-events-none fixed inset-0 z-50 flex items-center justify-center bg-black/50 backdrop-blur-sm"
 7>
 8	<div
 9		class="flex flex-col items-center justify-center rounded-2xl border-2 border-dashed border-border bg-background p-12 shadow-lg"
10	>
11		<Upload class="mb-4 h-12 w-12 text-muted-foreground" />
12
13		<p class="text-lg font-medium text-foreground">Attach a file</p>
14
15		<p class="text-sm text-muted-foreground">Drop your files here to upload</p>
16	</div>
17</div>