 /* Minimal chat widget styles */
#chatbot-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 340px;
  max-width: 90vw;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  font-family: inherit;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#chatbot-header {
  background: #0078d4;
  color: #fff;
  padding: 12px 16px;
  font-weight: bold;
  font-size: 1.1em;
}
#chatbot-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f7f7f7;
  min-height: 180px;
  max-height: 320px;
}
#chatbot-input-area {
  display: flex;
  border-top: 1px solid #eee;
  background: #fafafa;
}
#chatbot-input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 1em;
  outline: none;
  background: transparent;
}
#chatbot-send {
  background: #0078d4;
  color: #fff;
  border: none;
  padding: 0 18px;
  cursor: pointer;
  font-size: 1em;
  border-radius: 0 0 0 0;
  transition: background 0.2s;
}
#chatbot-send:hover {
  background: #005fa3;
}
.chatbot-msg {
  margin-bottom: 10px;
  line-height: 1.4;
}
.chatbot-msg.user {
  text-align: right;
  color: #0078d4;
}
.chatbot-msg.bot {
  text-align: left;
  color: #222;
}
