diff --git a/platforms/blabsy/src/components/chat/chat-list.tsx b/platforms/blabsy/src/components/chat/chat-list.tsx
index 8ea1784c..bb377775 100644
--- a/platforms/blabsy/src/components/chat/chat-list.tsx
+++ b/platforms/blabsy/src/components/chat/chat-list.tsx
@@ -106,8 +106,8 @@ export function ChatList(): JSX.Element {
onClick={() => setCurrentChat(chat)}
className={`flex items-center gap-3 rounded-lg p-3 transition-colors ${
currentChat?.id === chat.id
- ? 'bg-primary text-white'
- : 'hover:bg-gray-100 dark:hover:bg-gray-800'
+ ? 'bg-gray-200 dark:bg-gray-700 border-l-4 border-primary'
+ : 'hover:bg-gray-50 dark:hover:bg-gray-800'
}`}
>
@@ -193,8 +193,8 @@ function ChatListItem({
return (