/* Styles critical to first render */

.user-input-form {
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-radius: 0.75rem;
}

.user-input-container {
  position: relative;
}

.user-input-textarea {
  width: 100%;
  padding: 0.75rem 3.5rem 0.75rem 1rem;
  border: 1px solid rgb(209 213 219);
  border-radius: 0.75rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  color: rgb(31 41 55 / var(--tw-text-opacity));
  resize: none;
  background-color: rgb(255 255 255);
  margin-bottom: -6px;
}

.user-input-textarea:focus,
.reply-text-area:focus {
  box-shadow: 0 0 0 1px rgb(59 130 246);
  outline: none;
}

.welcome-container {
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Ensures that elements are stacked vertically if needed */
  width: 100%;
  max-width: 700px;
}

.chat-container li {
  width: 100%;
  max-width: 700px;
}

.reply-form {
  width: 100%;
  max-width: 730px;
}

.welcome-text {
  display: flex;
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
  font-size: 2rem;
  line-height: 2rem;
  text-align: center; /* This might not affect flex items but ensures text within spans is centered */
  padding: 1.5rem 0 1.5rem 0;
}

/* px-2 mx-2 bg-blue-200 border-x border-b border-black/15 rounded-b-xl */
.suggestions-outer-container {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin: 0 0.5rem;
  border-left: 1px;
  border-right: 1px;
  border-bottom: 1px;
  border-color: rgb(0 0 0 / 0.15);
  border-radius: 0 0 0.75rem 0.75rem;
}
