.chat-container {
    max-width: 400px;
    margin: 20px auto;
    background-color: #fff;
    border: 4px solid  white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .message {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .user {
    align-self: flex-end;
    background-color: #e2f3f5;
  }
  .bot {
    align-self: flex-start;
    background-color: #f1f1f1;
  }
  .message-text {
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px black;
    margin-top: 5px;
    color: black;
  }
  input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
    color: black;
  } 
  #send-btn {
    margin-top: 20px;
    padding: 8px 15px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  #send-btn:hover {
    background-color: gray;
  }
  /* Add styling for the bot AI container */
  .bot-ai-container {
    font-family: Arial, sans-serif;
    /*background-color: #f5f5f5;*/
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*height: 100vh;*/
  }