body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0c0c0c;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .chat-container {
    background-color: #1a1a1a;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    padding: 20px;
    box-shadow: 0 0 10px rgba(255, 250, 250, 0.418);
    display: flex;
    flex-direction: column;
  }
  
  .chat-box {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #333;
    padding: 10px;
    background-color: #111;
    color: white;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  
  .bot-message, .user-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
  }
  
  .bot-message {
    background-color: #2a2a2a;
    align-self: flex-start;
  }
  
  .user-message {
    background-color: #161616;
    color: white;
    align-self: flex-end;
    /* text-align: right; */
  }
  
  form {
    display: flex;
  }
  
  form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
  }
  
  form button {
    padding: 10px;
    border: none;
    background-color: #202020;
    border: 1px solid #3d3d3d;
    color: white;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
  }
  