/* Custom scrollbar for chat history */
.chat-history::-webkit-scrollbar {
    width: 8px;
}
.chat-history::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.chat-history::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.chat-history::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* Style for the new header icon */
.chatbot-header-icon {
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
}
