/* Kontajner prispevkov a prispevky samotne */
#posts-holder{
	width: 100%;
}
.post-holder{
	background: #EEE;
	border-radius: 5px;
	border: 1px solid #EEE;
	margin: 10px 0;
}
.post-header{
	background: #DDD;
	height: 20px;
	padding: 0px 5px;
}
.post-name-holder{
	float: left;
	font-weight: bold;
}
.post-time-holder{
	float: right;
	font-weight: bold;
}
.post-delete-holder{
	float: right;
	margin-right: 15px;
}
.post-text{
	margin-top: 20px;
	width: calc(100% - 10px);
	text-align: justify;
	margin: 5px;
}

#edit-post-form{
	max-width: 600px;
}
#edit-post-edit-button{
	width: 150px;
	margin: 10px 5px;
}
#edit-post-textarea{
	width:600px;
	min-height: 200px;
	resize: vertical;
}

@media screen and (min-width: 600px){
	/* Formular noveho prispevku */
	#discussion-forms-holder{
		margin: auto;
		width: 100%;
		max-width: 600px;
	}
	#new-post-form{
		display: inherit;
		width: 100%;

	}
	#new-post-label{
		display: inline-block;
		vertical-align: top;
	}
	#new-post-text{
		display: inline-block;
		width: calc(100% - 50px);
		height: 200px;
		resize: vertical;
		right: 0px;
	}
	#new-post-submit{
		display: block;
		margin: auto;
	}

	/* Formular hladania */
	#search-form{
		max-width: 300px;
	}
	#posts-search-input-label{
		margin-top: 5px;
	}
	#posts-search-input{
		width: calc(100% - 70px);
	}
	#posts-search-submit{
		width:60px;
		margin: 0 auto;
	}
}
