.comment {
	background: white;
	border: #898989;
	margin: 0px 0px 0px 0px;
	padding-left: 10px;
	padding-bottom: 10px;
	/* border-left: 1px solid #efefef; */ /* 10/8/23: may want to bring back the border at some point, outside of review contexts */
}

.comment-header {
	display: flex;
	padding-bottom: 0px;
}

.comment-metadata {
	padding-right: 4px;
	font-size: 12px;
	color: #969696;
	white-space: nowrap;
}

.comment .yearAndMajorContainer{
	padding-top: 0px;
  display: flex;
  padding-right: 2px;
	align-items: center;
}

.comment-author-image {
	width: 36px;
	margin-right: 5px;
}

.comment-author-image img {
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
	height: 36px;
}

.comment-author-timestamp-and-labels {
	flex-grow: 1;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.comment-author-and-timestamp {
	display: flex;
	align-items: center;
}

.comment-author {
	font-weight: 400;
	display: inline;
	font-size: 12px;
	display: flex;
	padding-left: 0px;
	margin-right: 4px;
	color: rgb(51, 51, 51);
}

.comment-timestamp {
	font-size: 11px;
	color: #969696;
	margin-top: 2px;
}

.comment-time-dot{
	color: #b6b6b6;
	font-size: 11px;
	padding-right: 4px;
}

.comment-labels {
	display: flex;
}

.comment-author-year {
	border-radius: 5px;
	color: white;
	padding: 0px 5px 1px 6px;
	font-size: 10px;
	font-weight: 500;
	margin: 0% 1% 3% 0%;
}

.comment-author-major {
	border-radius: 5px;
	background-color: #1daefd;
	color: white;
	padding: 0px 5px 0px 4px;
	font-size: 10px;
	font-weight: 500;
	margin: 0% 2% 3% 0%;
	display: flex;
	white-space: nowrap;
}

.comment-options-menu-btn {
	color: #b6b6b6;
	cursor: pointer;
	align-items: baseline;
	display: flex;
}

.flag-remove-ellipsis {
	padding-right: 3px;
}

.comment-body {
	padding-bottom: 2px;
	font-size: 15px;
	color: rgb(51, 51, 51);
	margin-top: 2px;
	white-space: pre-wrap;
	max-width: 840px; /* This increases readibility a lot, based it on reddit's value */
}

.comment-footer {
	display: flex;
	justify-content: flex-end;
	color: grey;
}

.comment-reply-btn {
	margin-right: 35px;
	color: #b6b6b6;
	cursor: pointer;
	font-size: 12px;
	margin-top: 1px;
}

.comment-upvote-btn {
	padding-right: 7px;
	color: #b6b6b6;
	cursor: pointer;
	font-size: 15px;
}

.comment-vote-count {
	padding-right: 7px;
	color: #b6b6b6;
	cursor: pointer;
	font-size: 13px;
}

.comment-downvote-btn {
	padding-right: 10px;
	color: #b6b6b6;
	cursor: pointer;
	font-size: 15px;
}

.userBadge {
	border-radius: 5px;
	color: white;
	padding: 0px 5px 0px 5px;
	font-size: 10px;
	font-weight: 500;
	margin-right: 5px;
	display: flex;
	white-space: nowrap;
	height: 15px;
}

.major {
	background-color: #0099ff;
}

.first-year {
    background-color: #80d11d;
  }
  
  .sophomore {
    background-color: #ed5163;
  }
  
  .junior {
    background-color: #ff279c;
  }
  
  .senior {
    background-color: #954bae;
  }
  
  .graduate {
    background-color: #48b74c;
  }
  
  .professor {
    background-color: #ed8d51;
  }
  
  .advisor {
    background-color: #3d39c6;
  }
  
  .team{
      background-color: #F099E4;
  }
  