/* chat wrapper */
.fcr-chat-wrapper {
  height: 100%;
  width: 100%;
  background: var(--fcr_mobile_ui_scene_color_popup_fill2);

  display: flex;
  justify-content: space-between;
  flex: 1;
  flex-direction: column;
  grid-template-rows: auto 0fr;
  position: relative;

  min-width: 320px;
}

.fcr-chat-wrapper-radius {
  border-radius: var(--fcr_cornerradius_m);
}

/* chat container */
.fcr-chat-container-wrapper {
  position: relative;
  overflow: hidden;

  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  width: 100%;
  flex: 1;

  min-height: 113px;
}

.fcr-chat-top-bar {
  position: sticky;
  top: 0;
}

.fcr-chat-container {
  scrollbar-width: none;
  height: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}

/* chat input */
.fcr-chat-msg-box {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  width: 100%;
  padding: 0 4px 5px;
}

.fcr-chat-container .ReactVirtualized__Grid__innerScrollContainer {
  min-height: 100%;
}

.fcr-user-offline-nickname {
  font-weight: 600;
  max-width: 75px;
  white-space: nowrap;
  display: inline-block;
}

.fcr-user-offline-txt {
  font-weight: 400;

  word-break: break-word;
  margin-left: 4px;
}

.fcr-blink-content--user-state {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.fcr-blink-content--user-state p {
  margin: unset;
  font-family: Inter;
}

.fcr-chat-msg-box .fcr-text-bubble {
  width: 100%;
}

.fcr-message-bar .fcr-text-bubble {
  justify-content: flex-start;
  width: auto;
}
