._contentWrap_1r77v_1 {
  margin: 0 auto;
  align-content: center;
  color: #000;
  font-size: 14px;
  min-height: 100%;
  max-height: 100dvh;
  height: 100%;
}
._contentWrap_1r77v_1 ._chatContainer_1r77v_10 {
  border: 6px double white;
  max-width: 250px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
  padding: 4px;
  height: 100%;
}
._contentWrap_1r77v_1 ._chatContainer_1r77v_10 ._chatHeader_1r77v_21 {
  background-color: white;
  height: 50px;
  padding: 10px;
  text-align: center;
}
._contentWrap_1r77v_1 ._chatContainer_1r77v_10 ._chatWindow_1r77v_27 {
  background-color: rgb(5, 0, 19);
  min-height: 150px;
  height: 100%;
  overflow: auto;
  padding: 4px 10px;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  color: #fff;
}
._contentWrap_1r77v_1 ._chatContainer_1r77v_10 ._chatWindow_1r77v_27 ._chatMsg_1r77v_40 {
  justify-items: flex-start;
}
._contentWrap_1r77v_1 ._chatContainer_1r77v_10 ._chatWindow_1r77v_27 ._personMsg_1r77v_43 {
  justify-items: flex-end;
}
._contentWrap_1r77v_1 ._chatContainer_1r77v_10 ._chatWindow_1r77v_27 p[role=name] {
  padding: 2px 4px;
  border-radius: 4px;
  color: greenyellow;
}
._contentWrap_1r77v_1 ._chatContainer_1r77v_10 ._chatFooter_1r77v_51 {
  background-color: white;
  height: 60px;
  padding: 4px;
  display: flex;
  gap: 4px;
}
._contentWrap_1r77v_1 ._chatContainer_1r77v_10 ._chatFooter_1r77v_51 textarea {
  min-width: 80%;
  width: 100%;
  padding: 4px;
  min-height: 50px;
  max-height: 50px;
}
._contentWrap_1r77v_1 ._chatContainer_1r77v_10 ._chatFooter_1r77v_51 button {
  height: 20px;
  align-self: center;
  cursor: pointer;
  transition: 0.2s;
}@layer chat {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  *::-webkit-scrollbar {
    width: 15px;
  }

  *::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: grey;
  }

  body {
    background-color: lightgrey;
    position: relative;
    font-size: 4px;
    align-items: center;
    justify-content: center;
    max-height: 100dvh;
    height: 100%;
  }
  * {
    &:focus {
      box-shadow: 0 0 15px 2px white;
    }
  }
  @media (prefers-color-scheme: light) {
    :root {
      color: #213547;
      background-color: #ffffff;
    }
    a:hover {
      color: #747bff;
    }
    button {
      background-color: #f9f9f9;
    }
  }
}
