/* Ensures chat container is scrollable and fills available space */
.chat-messages-container {
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
#chat-messages {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
}
