.background-color-grey {
    background-color: #F1F1F1;
}

chat-page .chat-input {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    align-items: flex-end;


  }
  chat-page .chat-input-container{
    display: flex;
    width: 80%;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }

  chat-page .chat-input textarea {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  chat-page .chat-input button {

    padding: 0.5rem 1rem;
    font-size: 0.8rem;

    cursor: pointer;
  }

  chat-page .message-container {
    padding: 1rem;
    background-color: #f9f9f9;
    height: calc(100vh - 200px); /* Adjust height based on other elements */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  chat-page .message {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    max-width: 70%; /* Adjust the max width as needed */
    word-wrap: break-word; /* Ensure long words break and wrap to the next line */
    white-space: pre-wrap;
  }
  chat-page .message.bot {
    background-color: #e1e1e1;
    align-self: flex-start; /* Align to the left */
  }
  chat-page .message.my {
    background-color: #007bff;
    color: white;
    align-self: flex-end; /* Align to the right */
  }

  chat-page .message.error {
    background-color: #f8d7da;
    color: #721c24;
    align-self: flex-start; 
  }