html, body {
    font-family: Arial, sans-serif;
    line-height: 1.4em;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
  }
  
  html, body {
    height: 100%;
    margin: 0;
  }
  
  .chat-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    max-width: 800px;
    margin: auto;
    background-color: #1e1e1e;
  }
  
  .chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  
  .chat-messages .message {
    margin-bottom: 1rem;
    padding: 20px;
    border-radius: 0.25rem;
    width: 80%;
  }
  
  .message.bot {
    background-color: rgb(80, 80, 80);
    color: white;
    margin-right: auto;
    position: relative;
  }
  
  .message.user {
    background-color: rgb(47, 47, 47);
    color: white;
    margin-left: auto;
  }
  
  .chat-input {
    padding: 20px;
    margin: 20px;
    background-color: #333;
    border-radius: 40px;
    margin-bottom: 10px;
  }
  
  .field.has-addons {
    display: flex;
  }
  
  .control.is-expanded {
    flex: 1;
  }
  
  .input {
    background-color: transparent;
    border: none;
    color: white;
    width: 100%;
    padding: 0 10px;
    font-size: 16px;
    height: 100%;
  }
  
  .input:focus {
    outline: none;
  }
  
  .button.is-primary {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: #555;
    border: 0;
  }
  
  .button.is-primary .fa-arrow-up {
    font-size: 24px;
    color: white;
  }
  
  .button.disabled {
    opacity: 0.5;
  }

  .message.bot::before, .message.bot::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color:rgb(80, 80, 80);
  }

.message.bot::before {
    top: 50%;
    margin-top: -10px;
    left: -10px;
}

.message.bot::after {
    top: 50%;
    margin-top: -10px;
    right: -10px;
}


a {
    color: white;
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 0.5rem;
}
.deep-dive .button {
  background-color: #333;
  border: 1px solid rgba(100,100,100,0.5);
  color: white;
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
}