.newProfileFieldContainer {
  background:white;
  border-radius: 16px;
  padding:16px;
  margin:8px;
}

.communityHighlight {
	background: white;
	color:#3A3A3A;
    border-radius: 8px;
    margin:16px;
    padding:16px;
    max-width:500px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3)
}
.communityHighlight:hover {
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5)
 }
.tabOption {
    padding: 8px 16px;
    margin-right: 2px;
    border-radius: 12px 12px 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #f1ebe5;
    bottom: -1px;
    color: #848280;
    white-space: nowrap;
    min-width: 80px; /* Ensures tabs don't become too small */
    word-wrap: break-word;
    text-align: center;
    flex: 1; /* Distribute space evenly */
}
.newsContainer {
	padding-left: 16px;
	padding-right:16px;
}
.tabOption.selected {
  background: white;
  color: #3a3a3a;
}
.tabOption:hover {
  background: #FAF7F4;
  color: #3A3A3A;
}
.communityTag {
	padding: 8px;
	padding-bottom: 2px;
	padding-top: 2px;
    border-radius: 25px;
    display: inline-block;
}
.communityTag.emetophobia {
	background-color: #e3deff;
}

.profileIconOption {
	width:65px;height:65px;
	text-align: center;
	padding-top: 8px;
	display:inline-block;
	border-radius: 65px;
	cursor: pointer;
}
.profileIconOption:hover {
	background:#9187d3;
}
.usernameOption {
	background: #e3deff;
	border-radius: 8px;
	padding:2px;
	padding-left:4px;
	padding-right:4px;
	margin:2px;
	display: inline-block;
	cursor: pointer;
}
.usernameOption.selected {
	background:#9187d3;
	color:white;
}
.usernameOption:hover {
	background:#9187d3;
	color:white;
}

.profileIconOption.selected {
	background:#9187d3;
}

.rightProfileContainer {
	width:100%;
	text-align:right;
	padding-right: 16px;
	padding-top: 16px;
}
.leftProfileContainer {
	width:100%;
	text-align:left;
	padding-left: 16px;
	padding-top: 16px;
}
.postReaction {
	display: inline-block;
	padding:8px;
	padding-top: 12px;
	margin-right:4px;
	
	border-radius: 77px;
	width:55px;
	height:55px;
	text-align: center;
	cursor: pointer;
}
.postReaction.reacted {
	background:#9187d3;
}
.postReaction:hover {
	background: #e3deff;
}
.postReactions {
	text-align: right;
	margin-top:16px;
	margin-bottom:8px;
}
.horizontalCommunityPostContainer {
	overflow-x: auto;
    white-space: nowrap;
	height:370px;
	vertical-align: middle;
}
.postReactionCount.withCount {
	height: 24px;
	width:24px;
	border-radius: 24px;
	background: #e3deff;
	position: relative;
	margin:-24px;
	top:10px;
	right:10px;
	float:right;
}
.postReactionCount.withCount.reacted {
	background: #776ac8;
	color:white;
}
.postWrapper {
	white-space: normal;
	width:100%;
	text-align: center;
	margin-bottom:8px;
}
.postWrapper.inline {
	margin-right: 8px;
	margin-left: 8px;
	display: inline-block;
	width:auto;
	vertical-align: middle;
}
.post {
	width:100%;
	text-align: left;
	background:white;
	border-radius: 16px;
	padding:16px;
}
.postLeft {
	vertical-align: middle;
	margin-right: 8px;
}
.postRight {
	margin-left: 40px;
	margin-top: 8px;
	display: inline-block;
	vertical-align: top;
}
.postImageContainer {
	width:100px;
	height:100px;
	background:#e3deff;
	border-radius: 100px;
	display: inline-block;
}
.postContainerOuter {
	width:100%;
	max-width: 900px;
	min-width: 300px;
}
.postContainer {
	width:98%;
	text-align: left;
	background:white;
	border-radius: 16px;
	padding-top:16px;
	padding-left: 32px;
	padding-right:32px;
	margin-bottom: 8px;
	display: inline-block;
}
.postAuthor {

}
.postContent {
	
}

.createPostContainer {
	margin-top: 8px;
	margin-bottom: 8px;
}

.quickPost {
	cursor: pointer;
	background: white;
	border-radius: 16px;
	padding-right:16px;
	margin: 8px;
	display: inline-block;
	height:88px;
}
.quickPost:hover {
	background: #9187d3;
	color:white;
}
.quickPostLeft {
	vertical-align:middle;
	display:inline-block;height:88px;background:#9187d3;border-radius:16px 0px 0px 16px;width:32px;
}

.quickPostContainer {
	margin-top: 8px;
}

@media only screen and (max-width: 768px) {
	.postLeft {
		display: block;
		width: 100%;
	}
	.postRight {
		margin-left: 0px;
		display: block;
		text-align: center;
	}

	.postContainer {
		padding-top:8px;
		padding-left: 16px;
		padding-right:16px;
		margin-right: 4px;
		margin-left: 4px;
	}
	.newsContainer {
		padding:8px;
	}
}