.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .parameters-and-api-container {
    float: left;
    margin-right: 20px;
    width: calc(33.33% - 20px);
  }
  
  .parameters-container {
    margin-bottom: 20px;
  }
  
  .api-key-container {
    margin-bottom: 20px;
  }
  
  .chat-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  
  .chat-header {
    background-color: #333;
    color: #fff;
    padding: 10px;
  }
  
  .chat-box {
    background-color: #eee;
    padding: 10px;
    height: 500px;
    overflow-y: auto;
  }
  
  .message {
    margin-bottom: 10px;
  }
  
  .message p {
    margin: 0;
    padding: 5px 10px;
    border-radius: 10px;
    max-width: 80%;
    word-wrap: break-word;
  }
  
  .message.received p {
    background-color: #fff;
    align-self: flex-start;
  }
  
  .message.sent p {
    background-color: #bfe5fc;
    align-self: flex-end;
  }
  .message {
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
    max-width: 80%;
  }
  
  .message.assistant {
    background-color: #f2f2f2;
    color: #333;
    float: left;
    clear: both;
  }
  
  .message.user {
    background-color: #4CAF50;
    color: white;
    float: right;
    clear: both;
  }
  
  .chat-input {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid #333;
  }
  
  .chat-input input {
    flex: 1;
    margin-right: 10px;
  }
  