.mantraksh-chatbot-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

#chat-window {
  width: 100%;
  max-width: 420px;
  height: 600px;
  background: #1E1E1E;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #333;
}

#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  background: #121212;
  scroll-behavior: smooth;
}

.chat-msg {
  margin: 8px 0;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 80%;
  word-wrap: break-word;
  line-height: 1.4em;
  color: #fff;
  font-size: 15px;
}

.chat-msg.bot {
  background: #2A2D3E;
  align-self: flex-start;
  color: #E0E0E0;
  border-top-left-radius: 0;
}

.chat-msg.user {
  background: #4CAF50;
  align-self: flex-end;
  text-align: right;
  border-top-right-radius: 0;
}

#chat-input {
  display: flex;
  padding: 10px;
  background: #222;
  border-top: 1px solid #444;
}

#user-input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #555;
  outline: none;
  background: #333;
  color: #fff;
}

#send-btn {
  background: #00C853;
  color: white;
  border: none;
  border-radius: 8px;
  margin-left: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.3s;
}
#send-btn:hover {
  background: #00E676;
}

.review-section {
  background: #263238;
  border-radius: 10px;
  padding: 10px;
  color: #E0E0E0;
}

.review-item {
  background: #37474F;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.edit-field {
  background: #039BE5;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 13px;
  margin-top: 4px;
}
.edit-field:hover {
  background: #29B6F6;
}

#final-submit {
  background: #43A047;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}
#final-submit:hover {
  background: #66BB6A;
}
