/* NEW */
/* Messages */

.ai-form-messages {
  display: flex;
  gap: 12px;
  flex-direction: column;
  text-align: left;
}

.message-card {
  display: flex;
  gap: 10px;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0px 2px 4px 0px #0000000d;
  flex-direction: column;
  background: #fff;
  cursor: pointer;
}

.message-card:first-of-type {
  /* margin-top: 10px; */
}

.message-card h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #5c3a92;
  margin: 0;
}

.message-card p {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #636363;
  margin: 0;
}

.message-card.selected-book-message {
  border-color: #f39c12;
  box-shadow: 0 0 6px rgba(243, 156, 18, 0.4);
}

@media screen and (min-width: 767px) {
  .message-card:hover {
    border-color: #f39c12;
    box-shadow: 0 0 6px rgba(243, 156, 18, 0.4);
  }
}
