/* components/Chatbox.module.css */
.chatbox {
    display: flex;
    flex-direction: column;
    height: 400px;
    width: 500px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .chatboxContainer {
    flex: 1;
    padding: 10px;
    overflow-y: scroll;
  }
  
  .message {
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
  }
  
  .userMessage {
    background-color: #383736;
    color: white;
    align-self: flex-end;
  }
  
  .inputContainer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
  }
  
  .input {
    flex: 1;
    border: none;
    border-radius: 5px;
    padding: 5px;
  }
  
  .button {
    margin-left: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  