.comment {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.comment-actions {
  margin-top: 5px;
}

.comment-actions button {
  background: none;
  border: none;
  color: #1877f2;
  cursor: pointer;
  padding: 0;
  margin-right: 10px;
  font-size: 14px;
}

.comment-actions button:hover {
  text-decoration: underline;
}
.replies {
  margin-left: 25px;
  margin-top: 10px;
  display: none;
}

.comment.admin-reply {
  background: #e6f4ea;
  border-left: 4px solid #16a34a;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}


.replies.show {
  display: block;
}



.reply {
  background: #f5f6f7;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 6px;
}


