    .chat-container {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      max-width: 600px;
      margin: auto;
      border: 1px solid #ccc;
      background-color: #fff;
    }

    .chat-messages {
      flex-grow: 1;
      padding: 20px;
      overflow-y: auto;
      border-bottom: 1px solid #ccc;
    }

    .chat-message {
      margin-bottom: 10px;
    }

    .user {
      text-align: right;
      color: #333;
    }

    .bot {
      text-align: left;
      color: #0077cc;
    }

    .chat-input {
      padding: 10px;
      border-top: 1px solid #ccc;
      background-color: #fafafa;
    }

    .chat-input textarea {
      width: 100%;
      resize: none;
      padding: 10px;
      font-size: 14px;
      font-family: inherit;
      border: 1px solid #ccc;
      border-radius: 4px;
      height: 60px;
      box-sizing: border-box;
    }