/*!***********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/destinations/ayutthaya/components/Chatbot.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************/
.chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: white;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  max-height: 80vh;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.chatbot-header {
  background: #007bff;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f9f9f9;
}

.chatbot-message {
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 6px;
  max-width: 80%;
  word-wrap: break-word;
}

.chatbot-message.user {
  background: #e3f2fd;
  align-self: flex-end;
  text-align: right;
  color: #0d47a1;
  margin-left: auto;
}

.chatbot-message.ai {
  background: #eeeeee;
  align-self: flex-start;
  text-align: left;
  color: #333;
}

.chatbot-input {
  display: flex;
  padding: 8px;
  border-top: 1px solid #ccc;
  background: white;
}

.chatbot-input input {
  flex: 1;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.chatbot-input button {
  margin-left: 6px;
  padding: 6px 10px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


