.comment-form {
	display: none;
}
.username-dialog {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: black;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	z-index: 1000;
}
.username-dialog input {
	margin-top: 10px;
}
.comment {
	display: flex;
	align-items: center;
	padding-left: 50px;
}
.comment p{
	margin-top: 5px;
	margin-bottom: 5px;
}
.comment img {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}
.news-article-placeholder, .comment-placeholder {
	background-color: #212121;
	border-radius: 4px;
	margin-bottom: 10px;
	animation: shimmer 1.5s infinite;
}
.news-article-placeholder {
	height: 150px;
	width: 100%;
}
.news-article{
	background-color: #2e2e2e;
	padding: 5px;
	margin-bottom:20px;
	margin-top:20px;
}
.news-article:hover{
	text-decoration: underline;
}
.comment-placeholder {
	height: 50px;
	width: 80%;
}
.news-placeholder {
	background: #000000;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin: 10px 0;
	overflow: hidden;
}
.shimmer {
	position: relative;
	overflow: hidden;
	background: linear-gradient(90deg, #000000 0%, #2e2e2e 50%, #000000 100%);
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}
.title-placeholder {
	width: 60%;
	height: 24px;
	margin: 10px 0;
	border-radius: 4px;
	background-color: #e0e0e0;
}
.content-placeholder {
	height: 16px;
	margin: 10px 0;
	border-radius: 4px;
	background-color: #e0e0e0;
}
.content-placeholder.short {
	width: 80%;
}
.content-placeholder.long {
	width: 100%;
}