/* Chat window styles */
.chat-window {
    width: 450px;
    height: 400px;
    background-color: #f1f1f1;
    padding: 10px;
    overflow-y: scroll;
  }

.intro-container img {
    width: 50%;
    min-width: 300px;
}
  
  /* Chat message styles */
  .message {
    background-color: #d9d9d9;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    max-width: 80%;
  }
  
  /* User message styles */
  .user-message {
    background-color: #2ecc71;
    color: white;
    align-self: flex-end;
  }
  
  /* Chat input styles */
  .chat-input {
    margin-top: 10px;
    display: flex;
  }
  
  .chat-input input {
    flex-grow: 1;
    padding: 5px;
    border: none;
    border-radius: 5px;
    margin-right: 50px;
  }
  
  .chat-input button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: #2ecc71;
    color: white;
  }
  
  /* Chat message styles */
  .init-chat {
    background-color: #d9d9d9;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    max-width: 80%;
  }