Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions user/src/components/chatbot/Chatbot.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
.chatbot-toggle-btn:hover {
transform: scale(1.1);
box-shadow: 0 8px 25px var(--shadow-color);
transition: all 0.3s ease;
}

/* --- CHAT WINDOW --- */
Expand Down Expand Up @@ -187,6 +188,9 @@

.chatbot-send-btn:hover {
background-color: var(--primary-hover-color);
transform: scale(1.05);
box-shadow: 0 5px 15px var(--shadow-color);
transition: all 0.3s ease;
}

/* --- MOBILE ADJUSTMENTS --- */
Expand Down Expand Up @@ -234,6 +238,8 @@
.quick-question-btn:hover {
background-color: var(--primary-hover-color);
transform: scale(1.03);
box-shadow: 0 5px 15px var(--shadow-color);
transition: all 0.3s ease;
}

/* Scrollbar for quick questions */
Expand Down Expand Up @@ -318,5 +324,8 @@
.chatbot-quick-btn:hover {
border-color: var(--primary-color);
background-color: var(--user-msg-bg); /* subtle highlight */
transform: scale(1.05);
box-shadow: 0 5px 15px var(--shadow-color);
transition: all 0.3s ease;
}