.messageArea {
  border-bottom: 1px solid gray;
  padding-bottom: 12px;
  margin-bottom: 12px;
  align-items: center;
}

.profilePos {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profileIcon {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.profileName {
  font-size: 12px;
  margin-top: 4px;
  text-align: center;
  overflow-wrap: anywhere;
}

.messageDisplay {
  font-size: 20px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.messageImage {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.voteControl {
  display: flex;
  align-items: center;
  gap: 2px;
}

.voteCount {
  min-width: 1em;
  text-align: center;
  font-size: 12px;
}

.endIcon {
  width: 40px;
  height: 40px;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
}

.upvoteDisplay {
  background-image: url("../media/upvote-icon.png");
}

.downvoteDisplay {
  background-image: url("../media/downvote-icon.png");
}

.deleteDisplay {
  background-image: url("../media/delete-icon.png");
}

.empty-message {
  text-align: center;
  color: #777777;
}
