:host {
  line-height: initial;
  font-family: var(--dyte-font-family, sans-serif);

  font-feature-settings: normal;
  font-variation-settings: normal;
}

p {
  margin: var(--dyte-space-0, 0px);
  padding: var(--dyte-space-0, 0px);
}

.head {
  display: flex;
  align-items: center;
}

.head .name {
  margin-right: var(--dyte-space-4, 16px);
  font-size: 12px;
  font-weight: 700;
}

.head .time {
  font-size: 12px;
  color: rgb(var(--dyte-colors-text-800, 255 255 255 / 0.76));
}

.scrollbar {
  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--dyte-scrollbar-color, rgb(var(--dyte-colors-background-600, 60 60 60)))
    var(--dyte-scrollbar-background, transparent);
}

/* For WebKit */
.scrollbar::-webkit-scrollbar {
  height: var(--dyte-space-1\.5, 6px);
  width: var(--dyte-space-1\.5, 6px);
  border-radius: 9999px;
  background-color: var(--dyte-scrollbar-background, transparent);
}

.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  background-color: var(--dyte-scrollbar-color, rgb(var(--dyte-colors-background-600, 60 60 60)));
}


* {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

:host {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.processing {
  display: flex;
  flex: 1 1 0%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: var(--dyte-space-3, 12px);
  flex: 1 0 0px;
  overflow-y: scroll;
}

.started-message {
  margin-top: var(--dyte-space-5, 20px);
  margin-bottom: var(--dyte-space-5, 20px);
  text-align: center;
  font-size: 12px;
  color: rgb(var(--dyte-colors-text-700, 255 255 255 / 0.64));
}

.search-bar {
  height: var(--dyte-space-14, 56px);
  width: 100%;
  border-bottom-width: var(--dyte-border-width-sm, 1px);
  --tw-border-opacity: 1;
  border-color: rgba(var(--dyte-colors-background-600, 60 60 60) / var(--tw-border-opacity));
  padding: var(--dyte-space-3, 12px);
}

input {
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(var(--dyte-colors-background-600, 60 60 60) / var(--tw-bg-opacity));
  padding-left: var(--dyte-space-3, 12px);
  padding-right: var(--dyte-space-3, 12px);
  font-size: 14px;
  border-radius: var(--dyte-border-radius-sm, 4px);
  color: rgb(var(--dyte-colors-text-1000, 255 255 255));
}

.caption-view {
  height: var(--dyte-space-12, 48px);
  width: 100%;
  padding-left: var(--dyte-space-3, 12px);
  padding-right: var(--dyte-space-3, 12px);
  padding-top: var(--dyte-space-3, 12px);
  padding-bottom: var(--dyte-space-3, 12px);
  border-bottom-width: var(--dyte-border-width-sm, 1px);
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgba(var(--dyte-colors-background-600, 60 60 60) / var(--tw-border-opacity));
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.message .body {
  margin-top: var(--dyte-space-2, 8px);
  margin-bottom: var(--dyte-space-2, 8px);
  font-size: 14px;
  word-break: break-word;
}

.message {
  margin-bottom: var(--dyte-space-3, 12px);
}

.message:last-child {
  margin-bottom: var(--dyte-space-0, 0px);
}
