@@ -119,7 +119,7 @@ export default function TopBar({ selections, onRemoveFilter }: TopBarProps) {
119119 < div className = "flex items-center space-x-4" >
120120 < button
121121 onClick = { openCostPrediction }
122- className = "flex items-center px-3 py-2 bg-blue -600 text-white rounded-lg hover:bg-blue -700"
122+ className = "flex items-center px-3 py-2 bg-indigo -600 text-white rounded-lg hover:bg-indigo -700 transition-colors shadow-sm "
123123 >
124124 < Calculator className = "w-4 h-4 mr-2" />
125125 AI calculator
@@ -129,13 +129,13 @@ export default function TopBar({ selections, onRemoveFilter }: TopBarProps) {
129129 ref = { inputRef }
130130 type = "text"
131131 placeholder = "Filter by..."
132- className = "px-4 py-2 text-sm border rounded-md dark:bg-gray-800 dark:border-gray-700"
132+ className = "px-4 py-2 text-sm border rounded-md dark:bg-gray-800 dark:border-gray-700 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition-all "
133133 onKeyDown = { handleSearch }
134134 disabled = { isLoading }
135135 />
136136 { isLoading && (
137137 < div className = "absolute right-3 top-2" >
138- < div className = "animate-spin h-4 w-4 border-2 border-blue -500 rounded-full border-t-transparent" > </ div >
138+ < div className = "animate-spin h-4 w-4 border-2 border-indigo -500 rounded-full border-t-transparent" > </ div >
139139 </ div >
140140 ) }
141141 </ div >
@@ -155,9 +155,12 @@ export default function TopBar({ selections, onRemoveFilter }: TopBarProps) {
155155 </ div >
156156
157157 < div className = "flex items-center space-x-4" >
158+ < span className = "text-sm font-medium text-gray-500 dark:text-gray-400" >
159+ { orgName || 'Admin User' }
160+ </ span >
158161 < SignedOut >
159162 < SignInButton mode = "modal" >
160- < button className = "px-4 py-2 text-sm font-medium text-white bg-blue -600 rounded-md hover:bg-blue -700" >
163+ < button className = "px-4 py-2 text-sm font-medium text-white bg-indigo -600 rounded-md hover:bg-indigo -700 transition-colors shadow-sm " >
161164 Sign In
162165 </ button >
163166 </ SignInButton >
@@ -170,9 +173,6 @@ export default function TopBar({ selections, onRemoveFilter }: TopBarProps) {
170173 < SignedIn >
171174 < UserButton afterSignOutUrl = "/" />
172175 </ SignedIn >
173- < span className = "text-sm font-medium text-gray-500 dark:text-gray-400" >
174- { orgName || 'Admin User' }
175- </ span >
176176 </ div >
177177 </ div >
178178 ) ;
0 commit comments