The 'Database Region' section in CreateProjectForm uses a plain HTML <select> element while every other form input uses the shadcn Select component. This creates a jarring visual inconsistency in a high-stakes form (region is immutable after creation). The native select also loses custom styling, dark mode support, and consistent focus state.
Category: consistency File: src/components/create-project-form.tsx Recommendation: Replace the native <select> with the shadcn Select component (already used in the same form file for other fields). Add a warning callout directly below the select reminding users 'This cannot be changed after creation' — currently this is buried in FormDescription text. Consider showing a globe/pin icon per option to make regions scannable.