edd2dfdec0
Problem: In the "تأجيل الاجتماع" dialog's "إعادة الجدولة" tab, the two <input type="time"> fields for Start and End rendered as iOS Safari's native "pill" controls centered inside transparent, hairline-bordered cells separated by only gap-3. On iPad the pills visually touched in the middle of the row, so users perceived a single overlapping control instead of two distinct inputs. Fix in artifacts/tx-os/src/components/executive-meetings/upcoming-meeting-alert.tsx: - Increase the grid gap from gap-3 to gap-4 / sm:gap-6 so the two cells never visually merge regardless of viewport width. - Add `min-h-11 bg-background border-2` to each Input so each cell has an explicit, clearly bounded box around the iOS native pill. - Added an inline #606 comment explaining the iOS quirk so future edits don't revert the layout. Scope: layout-only change to the reschedule tab. No changes to reschedule logic, validation, cascade prompt, or the postpone/cancel tabs.