body,
html {
  font-family: Arial, sans-serif;
  height: 100%;
  margin: 0;
}

img {
  max-height: 100px; /* sets the maximum width of the image to 300 pixels */
  max-width: 150px; /* sets the maximum height of the image to 200 pixels */
}

#chat-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#chat-container #menu-bar {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin: 5px 0;
  padding: 10px;
  white-space: pre-wrap;
}
#chat-container #chat-history {
  background-color: #f7f7f7;
  border-bottom: 2px solid #ddd;
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}
#chat-container .chat-message {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin: 5px 0;
  padding: 10px;
  white-space: pre-wrap;
}

#chat-input form {
  align-items: stretch;
  display: flex;
  gap: 8px;
}
#chat-input form textarea {
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  flex-grow: 1;
  font-size: 16px;
  margin: 10px 0 10px 10px;
  max-width: 100%;
  padding: 10px;
  resize: none;
}
#chat-input form textarea:focus {
  border-color: #4d90fe;
  outline: none;
}
#chat-input form button {
  background-color: #b6b6b6;
  border: 1px solid #6b6b6b;
  border-radius: 10px;
  box-sizing: border-box;
  color: #383838;
  cursor: pointer;
  margin: 10px 10px 10px 0;
  padding: 10px 15px;
  white-space: nowrap;
}
#chat-input form button:focus {
  border-color: #4d90fe;
  outline: none;
}

/*# sourceMappingURL=style.css.map */
