
.chat-header {
  background: #3b6285;
  background: linear-gradient(135deg, #3d55f7 0%, #8690f6 100%);
  color: black;
  font-size: 18px;
}

.chat-header-avartar {
  padding-right: 8px !important;
  min-width: unset;
}

.chat-header-close-btn {
  color: white !important;
}

.chat-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 120px);
  /* 100vh minus header and footer height */
  overflow-y: auto;
  padding-top: 10px;
}

.messages {
  flex-grow: 1;
  overflow-y: auto;
}

.message-wrapper {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
}

.message-container {
  max-width: 75%;
  padding: 10px;
  border-radius: 10px;
  word-wrap: break-word;
  position: relative;
}

.message-wrapper.user {
  justify-content: flex-end;
  margin-right: 5px;
}

.message-wrapper.bot .message-container {
  background-color: #e9e9e9;
  color: #333;
}

.message-wrapper.user .message-container {
  background-color: #3b53f1;
  color: white;
}

.timestamp.bot {
  font-size: 12px;
  color: #999;
  text-align: right;
  margin-top: 5px;
}

.timestamp.user {
  font-size: 12px;
  color: #9fc7eb;
  text-align: right;
  margin-top: 5px;
}

.avatar {
  width: 35px;
  height: 35px;
  margin-top: 5px;
  margin-right: 10px;
  border-radius: 50%;
}

.input-box {
  border: 1px solid #a7a6a6;
  padding: 8px;
  width: calc(100% - 10px);
  margin: 10px 5px 5px;
  border-radius: 5px;
}

.input-box:disabled {
  background-color: #f0f0f0;
  /* Light gray background */
  cursor: not-allowed;
}

.dialog-prompts {
  margin-top: 5px;
}

.suggestions-text {
  font-size: 13px;
  margin-bottom: 5px;
  color: #314af0;
}

.suggested-action {
  background: transparent;
  color: #314af0;
  border: 1px solid #314af0;
  padding: 5px 10px;
  margin: 3px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 13px;
}

.suggested-action:hover {
  background-color: #0078d4;
  color: white;
}

.hr-spacing {
  margin-top: 15px;
  margin-bottom: 15px;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background-color: gray;
  border-radius: 50%;
  opacity: 0.5;
  animation: typingAnimation 1.5s infinite;
}

.typing-dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingAnimation {
  0% {
    opacity: 0.3;
    transform: translateY(0px);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
  100% {
    opacity: 0.3;
    transform: translateY(0px);
  }
}

/*# sourceMappingURL=app.b8290347.css.map*/