/* style.css for chat widget */

/* Custom scrollbar for chat messages */
#chat-messages::-webkit-scrollbar {
  width: 6px;
}

#chat-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#chat-messages::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

#chat-messages::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
