/**
 * Room Talk — full-page chat layout
 */

/* Room Talk — full-page chat layout */
.lms-body--room-talk-chat {
  display: flex;
  flex-direction: column;
  height: calc(100dvh - 4rem);
  max-height: calc(100dvh - 4rem);
  padding-top: 0.75rem;
  padding-bottom: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.lms-body--room-talk-chat > *:not(.lms-room-talk-layout) {
  flex-shrink: 0;
}
.lms-body--room-talk-chat .lms-room-talk-layout {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  gap: 0.5rem;
}
.lms-body--room-talk-chat .lms-room-talk-layout__notices {
  flex-shrink: 0;
}
.lms-body--room-talk-chat .lms-room-talk-layout__notices > :last-child {
  margin-bottom: 0 !important;
}
.lms-body--room-talk-chat .lms-room-talk-layout__chat {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  border-radius: 0.75rem;
}
