.spr-comments {
  margin-top: 30px;
}

.spr-comment-list {
  list-style: none;
  padding: 0;
}

.spr-comment {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.spr-comment-avatar img {
  border-radius: 50%;
}

.spr-comment-body {
  background: #f0f2f5;
  padding: 10px 14px;
  border-radius: 12px;
  width: 100%;
}

.spr-comment-header {
  font-size: 13px;
  margin-bottom: 4px;
}

.spr-comment-time {
  color: #777;
  margin-left: 6px;
}

.spr-comment-actions {
  font-size: 12px;
  margin-top: 6px;
}


/* Comment form */

/* Comment form */
.spr-comment-form {
  margin-top: 20px;
}

.spr-comment-input-wrap {
  display: flex;
  gap: 10px;
}

.spr-comment-avatar img {
  border-radius: 50%;
}

.spr-comment-input {
  background: #f0f2f5;
  border-radius: 18px;
  padding: 10px;
  width: 100%;
}

.spr-comment-input textarea {
  width: 100%;
  border: none;
  resize: none;
  background: transparent;
  min-height: 60px;
  outline: none;
  font-size: 14px;
}

.spr-comment-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.spr-upload {
  cursor: pointer;
  font-size: 18px;
}

.spr-comment-submit-btn {
  background: #1877f2;
  color: #fff;
  border: none;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.spr-comment-submit-btn:hover {
  background: #145dbf;
}

/* css to hide comment form */
#commentform .logged-in-as{
    display: none;
}
#commentform .spr-comment-submit{
    display: none;
}