diff --git a/src/components/ai/job-selector.tsx b/src/components/ai/job-selector.tsx
index 018c9d4..fa00790 100644
--- a/src/components/ai/job-selector.tsx
+++ b/src/components/ai/job-selector.tsx
@@ -59,7 +59,7 @@ export function JobSelector({ onSelect, onSearch, searching }: JobSelectorProps)
key={i}
type="button"
onClick={() => handleSelect(job)}
- className="w-full text-left px-4 py-3 text-sm text-muted-foreground hover:bg-muted hover:text-foreground transition-all duration-150 border-b border-border/20 last:border-0 border-l-2 border-l-transparent hover:border-l-primary/40"
+ className="w-full text-left px-4 py-3 text-sm text-muted-foreground hover:bg-muted hover:text-foreground transition-all duration-150 border-b border-border/20 last:border-b-0 border-l-2 border-l-transparent hover:border-l-primary/40"
>
{job.job_title}
{job.industry} — {job.description}
@@ -76,7 +76,7 @@ export function JobSelector({ onSelect, onSearch, searching }: JobSelectorProps)
type="button"
onClick={() => onSearch(selected)}
disabled={searching}
- className="w-full flex items-center justify-center gap-2 mt-3 bg-gradient-to-r from-[#f97316] to-[#ea580c] hover:from-[#ea580c] hover:to-[#dc2626] disabled:opacity-50 disabled:cursor-not-allowed text-white text-sm font-semibold rounded-xl px-4 py-3 transition-all duration-200 shadow-lg shadow-[#f97316]/20"
+ className="w-full flex items-center justify-center gap-2 mt-3 bg-primary hover:bg-primary/90 disabled:opacity-50 disabled:cursor-not-allowed text-primary-foreground text-sm font-semibold rounded-xl px-4 py-3 transition-all duration-200 shadow-lg shadow-primary/20"
>
{searching ? : }
{searching ? "Searching..." : "Search Facebook"}