@props([ 'id' => 'modal', 'title' => '', 'size' => 'md', ]) @php $widths = [ 'sm' => 'max-w-sm', 'md' => 'max-w-md', 'lg' => 'max-w-lg', 'xl' => 'max-w-xl', '2xl' => 'max-w-2xl', 'full' => 'max-w-full mx-4', ]; $width = $widths[$size] ?? $widths['md']; $backdrop = 'fixed inset-0 z-50 flex animate-fade-in items-center justify-center bg-black/50 p-4 backdrop-blur-sm'; $panel = 'w-full animate-slide-up rounded-2xl border border-border bg-card text-card-foreground shadow-2xl ' . $width; $hdr = 'flex items-center justify-between border-b border-border px-6 py-4'; $body = 'px-6 py-5 text-sm text-muted-foreground'; $ftr = 'flex items-center justify-end gap-3 border-t border-border px-6 py-4'; @endphp