/* sans-serf font for html and body */
html,
body {
  font-family: sans-serif;
}

.header {
  text-align: center;
  /* fixed to the top */
  position: fixed;
  top: 0;
  width: 100%;
  /* in front of everything else */
  z-index: 1;
}

.container {
  height: 100%;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  margin: auto;
}

.bottom {
  background: white;
  bottom: 0;
  padding-top: 4px;
  padding-bottom: 20px;
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.conversation-wrapper {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.conversation {
  text-align: left;
  width: 500px;
}

.new-message {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.message-box {
  padding: 10px;
  max-height: 200px;
  height: 72px;
  overflow-y: hidden;
  width: 100%;
  max-width: 500px;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  resize: none;
}

.message {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  max-width: 85%;
}

.message.user {
  float: right;
  background-color: #479ef5;
  color: white;
}

.message.assistant {
  float: left;
  background-color: #e6e6e6;
  color: black;
}

.clearfix {
  overflow: auto;
}