.comment-section-body {
  min-height: 350px;
  height: 100vh;
  max-height: calc(100vh - 400px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.comment-wrapper {
  overflow: hidden;
  overflow-y: auto;
}
.comment-section {
  display: flex;
  align-items: start;
  flex-direction: column;
  margin-bottom: 10px;
}

.comment-section.sent {
  justify-content: end;
  align-items: end;
}

.comment-section .user-info {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.comment-section.sent .user-info {
  flex-direction: row-reverse;
}

.comment-section .comment{
  max-width: 80%;
  width: fit-content;
  padding: 0.5rem;
  border-radius: 8px;
  border-bottom-left-radius: 0; 
  background-color: rgba(233, 236, 239, 1) !important;
}

.comment-section.sent  .comment{
  background-color: rgba(91, 148, 232, 0.8) !important;
  border-radius: 8px;
  border-bottom-right-radius: 0;
  text-align: end;
}
.comment-section .comment-text {
  color: #222;
  font-size: 13px;
}

.comment-section.sent .comment-text {
  color: #ffffff;
}