.ml-chat-thread-wrap {
  position: relative;
  flex: 1;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.ml-chat-thread {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ml-chat-thread__older {
  align-self: center;
  margin-bottom: 0.5rem;
}
.ml-chat-thread__new {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  border: 1px solid #444;
  background: #222;
  color: #fafafa;
  cursor: pointer;
}
