/* 챗 화면에서 사용하는 최소 레이아웃 규칙 — Tailwind CDN 대체 */
body > .fixed {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#messages {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
}

#messages > div {
  width: fit-content;
  white-space: pre-wrap;
}

#messages > div.ml-auto {
  margin-left: auto;
}

#messages > div.mr-auto {
  margin-right: auto;
}

#quick-questions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#quick-questions + .flex {
  display: flex;
}

#input {
  flex: 1 1 0%;
}
