.hidden {
  display: none;
}

#chat-messages {
  height: 300px;
  overflow-y: auto;
}

#emojis {
  display: flex;
  flex-wrap: wrap;
  max-height: 150px;  /* Dodaj maksymalną wysokość, aby sekcja emoji była przewijalna */
  overflow-y: scroll;
}

.emoji {
  cursor: pointer;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.chat-message {
    display: flex;
    flex-direction: column;
    border: 1px dashed #efeaea;
    margin-bottom: 2px;
    padding: 16px;
    background-color: #1c2936;
    border-radius: 5px;
}

.chat-message .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-message img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 5px;
}

.chat-message .chat-message-content {
  margin-top: 5px;
  margin-left: 5px;
}

.chat-message .username {
  font-weight: bold;
  margin-right: 10px;
}

.chat-message .time {
  font-size: 0.8em;
  color: #999;
}
.no-messages {
	margin-bottom: 2px;
    padding: 5px;
    background-color: rgba(0, 0, 0, .06);
}