#moura-chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

#chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

#chatbot-toggle:hover {
  transform: scale(1.1);
}

#chatbot-toggle .icon {
  font-size: 24px;
  color: #fff;
}

#chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
}

#chatbot-window.hidden {
  display: none;
}

#chatbot-header {
  background: #1a1a1a;
  color: #d4af37;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatbot-header .title {
  font-weight: 600;
  font-size: 16px;
}

#chatbot-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

#chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f9f9f9;
}

.message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
}

.message.bot {
  align-self: flex-start;
  background: #ececec;
  color: #333;
  border-bottom-left-radius: 4px;
}

.message.user {
  align-self: flex-end;
  background: #d4af37;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.message.loading {
  font-style: italic;
  color: #888;
}

#chatbot-input-area {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

#chatbot-input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 15px;
  outline: none;
}

#chatbot-send {
  background: #d4af37;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 15px;
  cursor: pointer;
}
