#chatBox {
  position: relative;
}

#chatList {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow-y: scroll;
  word-break: break-all;
}

#chatList .chat {
  position: relative;
}

#chatList .chat ul {
  position: absolute;
  z-index: 10;
  display: none;
  flex-direction: column;
  width: 100px;
  font-size: 0.9em;
  border: 1px solid var(--alpha-10);
}

#chatList .chat ul.active {
  display: flex;
}

#chatList .chat ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  cursor: pointer;
  border-bottom: 1px solid var(--alpha-10);
}

#chatList .chat ul li:last-child {
  border-bottom: 0;
}

#chatList .chat ul li:hover {
  background-color: var(--alpha-10);
}

#chatList .nickName {
  margin-right: 10px;
  font-weight: bold;
  cursor: pointer;
}

#chatList .nickName img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

#chatList .datetime {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  font-size: 0.9em;
  color: var(--alpha-80);
}

#chatList .time {
  margin-right: 4px;
  font-size: 0.9em;
  color: var(--alpha-80);
}

#newMessage {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  border: 1px solid var(--alpha-10);
}

#newMessage.active {
  display: flex;
}
