.chatbot {
  width: 470px;
  max-width: 100%;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: #0073aa;
  color: white;
  padding: 10px;
  border-radius: 12px 12px 0 0;
  font-weight: bold;
  text-align: center;
}

.chat-body {
  height: 450px;
  overflow-y: auto;
  padding: 10px;
}

.msg {
  margin-bottom: 7px;
  margin-top: 7px;
  padding: 8px 12px;
  border-radius: 8px;
}

.msg.user {
  background: #0073aa;
  color: white;
  align-self: flex-end;
  margin-top: 10px;
}

.msg.bot {
  background: #e9ecef;
  color: #333;
  font-weight: 300 !important;
}

.chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}

.chat-input input {
  flex: 1;
  border: none;
  padding: 8px;
  border-radius: 0 0 0 12px;
}

.chat-input button {
  border: none;
  background: #0073aa;
  color: white;
  padding: 0 15px;
  border-radius: 0 0 12px 0;
  cursor: pointer;
}

.chat-input button:hover {
  background: #005f8d;
}

.chatbot-contact .chat-input-field, .chatbot-contact .chat-input-field input[type=text], .chatbot-contact .chat-input-field input[type=tel] {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 10px;
}

.btn-chatbot {
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  z-index: 1;
  font-size: 1.6rem;
  padding: 0.5rem 1.6rem;
  border: 1px solid #456bff;
  display: inline-block;
  text-align: center;
  background-color: #456bff;
  color: #fff;
  text-decoration: none;
}