#chat-gandalf-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f96500;
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
}
#chat-gandalf-container {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  z-index: 9999;
}
#chat-gandalf-header {
  background: #f96500;
  color: white;
  padding: 10px;
  font-weight: bold;
}
#chat-gandalf-body {
  padding: 10px;
  height: 150px;
  overflow-y: auto;
}
#chat-gandalf-footer {
  display: flex;
  border-top: 1px solid #ccc;
}
#chat-gandalf-footer input {
  flex: 1;
  padding: 8px;
  border: none;
}
#chat-gandalf-footer button {
  background: #f96500;
  border: none;
  color: white;
  padding: 8px;
}
