#ai-chat-box {
  min-height: 400px;
}

.ai-chat-title {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.chat-suggestions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.suggested-q {
  height: 33px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--Grey-800);
  color: var(--Grey-800);
  background: transparent;
  padding: 8px 25px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 30rem;
  margin-right: 10px;
  margin-top: 5px;
}

.ai-chat-input {
  width: 100%;
  background-color: #d3dcdf;
  height: 54px;
  border-radius: 30rem;
  display: flex;
  align-items: center;
  padding: 0 15px;
  justify-content: space-between;
}

.chat-input {
  background-color: transparent;
  border: none;
  outline: 0;
  margin-right: 10px;
  color: #343b41;
  font-weight: 500;
  font-size: 14px;
}

.chat-input::placeholder {
  color: var(--Grey-800);
}

.send-message {
  background: white;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.self-message {
  width: 90%;
  max-width: 400px;
  background-color: var(--Grey-100);
  border-radius: 12px;
  color: #343b41;
  font-weight: 500;
  font-size: 14px;
  padding: 10px;
}

.chat-icon {
  height: 32px;
  width: 32px;
  background-color: #8898a3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.ai-message{
  width: 85%;
}

.ai-message p {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0;
}

.ai-message-list {
  list-style-type: none;
  margin: 0;
  padding-left: 0px;
  font-weight: 500;
  font-size: 14px;
}
.ai-message-list li {
  margin-bottom: 12px;
}

.ai-message-list li::before {
  content: "・";
}

.ai-message-feedback {
  color: #73828e;
}

.like,
.dis-like {
  display: flex;
  align-items: center;
}

.dis-like img {
  margin-top: 5px;
}

@media (max-width: 576px) {
  .chat-suggestions {
    justify-content: start;
  }
}
