diff --git a/src/components/ui/BackendCard.tsx b/src/components/ui/BackendCard.tsx
index 7e7e18e..18739fc 100644
--- a/src/components/ui/BackendCard.tsx
+++ b/src/components/ui/BackendCard.tsx
@@ -14,7 +14,7 @@ export function BackendCard({ name, description, selected = false, onClick, ...r
onClick={onClick}
data-selected={selected}
className={[
- 'flex flex-col items-start gap-1 rounded-xl border-2 p-4 text-left transition-all',
+ 'w-full flex flex-col items-start gap-1 rounded-xl border-2 p-4 text-left transition-all',
selected
? 'border-primary bg-primary/10 shadow-md'
: 'border-outline bg-surface-container shadow hover:border-primary hover:bg-surface hover:shadow-md',
diff --git a/src/components/wizard/BackendSelectionStep.tsx b/src/components/wizard/BackendSelectionStep.tsx
index 611c310..df7d0f5 100644
--- a/src/components/wizard/BackendSelectionStep.tsx
+++ b/src/components/wizard/BackendSelectionStep.tsx
@@ -72,7 +72,7 @@ export function BackendSelectionStep() {
helpText="This becomes the section header [name] in your rclone.conf. Example: azure-prod, backup-s3. Letters, numbers, dashes, underscores only."
/>
-
+
{Object.entries(BACKEND_REGISTRY).map(([type, entry]) => (
))}
-
-