.chat-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Inter;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
.chat-layout .chat-header {
  display: flex;
  width: 100%;
  align-items: center;
  text-transform: capitalize;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 100;
}
.chat-layout .chat-header--detail {
  background-color: #f5faff;
}
.chat-layout .chat-header .chat-header-title {
  color: var(--gray-color-900);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.875rem;
  width: 100%;
  padding: 12px 0 8px;
  margin: 0 16px;
  border-bottom: 1px solid var(--gray-color-300);
}
.chat-layout .chat-container {
  width: 100%;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.chat-layout::-webkit-scrollbar {
  width: 8px;
}
.chat-layout::-webkit-scrollbar-thumb {
  background-color: var(--gray-color-200);
  border-radius: 10px;
}
.chat-layout::-webkit-scrollbar-thumb:hover {
  background-color: var(--gray-color-300);
}

.scroll-container::-webkit-scrollbar {
  width: 8px;
}
.scroll-container::-webkit-scrollbar-thumb {
  background-color: #eaecf0;
  border-radius: 10px;
}