.chat-container {
  height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chat-message {
  display: flex;
  gap: 12px;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.chat-message.user {
  flex-direction: row-reverse;
}
.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-avatar.ai {
  background: linear-gradient(to bottom right, #a8e6cf, #7ec4cf);
}
.chat-avatar.user {
  background: linear-gradient(to bottom right, #a29bfe, #6c5ce7);
}
.chat-bubble {
  max-width: 70%;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-bubble.ai {
  background: white;
  color: #2d3748;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.chat-bubble.user {
  background: linear-gradient(to right, #a29bfe, #6c5ce7);
  color: white;
}
.chat-input-wrapper {
  padding: 16px 20px;
  background: white;
  border-top: 1px solid #e2e8f0;
}
.chat-input-form {
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  font-family: "Jua", sans-serif;
}
.chat-send-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #a8e6cf, #7ec4cf);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.chat-send-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.chat-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 16px;
}
.quick-question-btn {
  padding: 8px 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 13px;
  font-family: "Jua", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.quick-question-btn:hover {
  border-color: #7ec4cf;
  background: #f8f9fd;
}
