/* Minimal styles for bottom-left chat widget */
.assistant-chatbot-root {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.assistant-chatbot-button {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #2b6cb0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  border: none;
}

.assistant-chatbot-button:hover {
  background: #2c5282;
}

.assistant-chatbot-panel {
  width: 320px;
  max-height: 420px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  margin-top: 10px;
}

.assistant-chatbot-header {
  padding: 10px 12px;
  background: #2b6cb0;
  color: #fff;
  font-weight: 600;
}

.assistant-chatbot-messages {
  padding: 10px;
  overflow-y: auto;
  flex: 1;
  background: #f7fafc;
}

.assistant-chatbot-input {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-top: 1px solid #e2e8f0;
}

.assistant-chatbot-input input[type="text"] {
  flex: 1;
  padding: 8px;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
}

.assistant-chatbot-input button {
  padding: 8px 12px;
  background: #2b6cb0;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.assistant-chatbot-msg {
  margin-bottom: 8px;
}

.assistant-chatbot-msg.user {
  text-align: right;
}

.assistant-chatbot-msg.assistant {
  text-align: left;
}
