/* Container for the chat */
#chatBody {
    height: 100%;
    /* max-height: 300px; */
    overflow-y: auto;
    padding: 10px;
    background-color: #f9f9f9;
  }
  
  /* Common style for message containers */
  .message-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 8px;
    border-radius: 10px;
    max-width: 90%;
  }
  
  /* Style for user messages */
  .user-message {
    /* background-color: #d1e7ff; */
    background-color: #e9f5ff;
    align-self: flex-end;
    border-top-left-radius: 0;
    margin-left: auto;
  }
  
  .user-message .icon {
    margin-right: 10px !important;
    font-size: 1.5rem !important;
    vertical-align: bottom !important;
  }
  
  .user-message p {
    margin: 0;
    padding: 6px;
    color: #1c1c1c;
    font-size: 14px;
    max-width: 80% !important;
    word-wrap: break-word;
  }
  
  /* Style for AI messages */
  .ai-message {
    background-color: #f1e6ff;
    align-self: flex-start;
    border-top-right-radius: 0;
    /* background-color: rgb(87, 175, 175, 0.4); */
    margin-right: auto;
  }
  
  .ai-message .icon {
    margin-right: 10px !important;
    font-size: 1.5rem !important;
    vertical-align: middle !important;
  }
  
  .ai-message p {
    margin: 0;
    padding: 6px;
    color: #333;
    font-size: 14px;
    max-width: 95% !important;
    word-wrap: break-word;
  }
  
  /* Styling for the Send Button */
  #sendButton {
    /* background-color: rgb(87, 175, 175, 0.8); */
    background : #a53d65;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
      background-color 0.3s ease,
      transform 0.3s ease;
    cursor: pointer;
  }
  
  #sendButton:hover {
    /* background-color: rgb(87, 175, 175); */
    background-color: #b0728a;
    transform: scale(1.05);
  }
  
  #sendButton:focus {
    outline: none;
  }
  
  #sendButton .material-symbols-outlined {
    font-size: 24px;
  }
  
  .aquene-card-header {
    /* background-color: rgba(87, 175, 175); */
    background-color: #a53d65;
    color: #333;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.5rem;
  }
  