#consultantChatContainer {
  position: fixed;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  background: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
}

#consultantChatHeader {
  background: #0073aa;
  color: white;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

#consultantChatMessages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #f9f9f9;
}

.consultant-message, .user-message {
  max-width: 70%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 10px;
}

.consultant-message {
  background: #e6f0fa;
  align-self: flex-start;
}

.user-message {
  background: #0073aa;
  color: white;
  align-self: flex-end;
}

#consultantChatInputArea {
  display: flex;
  border-top: 1px solid #ccc;
}

#consultantChatInput {
  flex: 1;
  padding: 15px;
  border: none;
  font-size: 16px;
}

#consultantChatSendBtn {
  padding: 15px 20px;
  background: #0073aa;
  color: white;
  border: none;
  cursor: pointer;
}
