#main-container {
  width: 70%;
  height: fit-content;
  background-color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

#message-container {
  width: 94%;
  height: fit-content;
  max-height: 450px;
  margin: 3%;
  padding: 5px;
  display: none;
  flex-direction: column;
  gap: 10px;
  overflow-y: scroll;
}

#input-container {
  width: 100%;
  height: 60px;
  margin: 0 auto;
  border: 2px solid #ddd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#input-box {
  border: none;
  width: 70%;
  text-align: center;
  font-size: 22px;
}

::-webkit-scrollbar {
  display: none;
}

.carbon--send-filled {
  width: 3em;
  height: 3em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='m27.45 15.11l-22-11a1 1 0 0 0-1.08.12a1 1 0 0 0-.33 1L6.69 15H18v2H6.69L4 26.74A1 1 0 0 0 5 28a1 1 0 0 0 .45-.11l22-11a1 1 0 0 0 0-1.78'/%3E%3C/svg%3E");
  background-color: darkgrey;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  position: absolute;
  right: 20px;
  display: none;
}

.user-message {
  background-color: #E5E5EA;
  max-width: 70%;
  width: fit-content;
  padding: 12px;
  align-self: flex-end;
  border-radius: 8px;
  font-size: 16px;
  color: #1A1A1B;
}

.assistant-message {
  background-color: #aa8970;
  max-width: 70%;
  width: fit-content;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  color: white;
}

.assistant-message p, .assistant-message ol {
  color: white;
}

.assistant-message > ol > li {
  margin-bottom: 20px;
}

.assistant-message > ol > li p{
  padding: 0;
  margin: 0;
  color: #777;
}

.assistant-message > ul {
  margin-bottom: 20px;
}

.assistant-message > ul > li > p {
  padding: 0;
  margin: 0;
}

.thinking-text {
  color: #d4b196;
  font-size: 16px;
  font-weight: bold;
}
