html{
	padding: 0;
	margin: 0;
}

body{
	padding: 0;
	margin: 0;
	font-family: 'Source Sans Pro', sans-serif;
}

#stimmung_main{
	border: 1px black solid;
	padding: 10px 10px 10px 10px;
	display: flex; 
	justify-content: space-between;
	align-items:center;
	width: 100%;
}

.stimmung_detail{
	border: 1px black solid;
	margin-top: -1px;
	padding: 5px 10px 5px 10px;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.stimmung_detail textarea{
		width: 100%;
		height: 100px;
		margin-bottom: 5px;
		text-align: left;
}

#stimmung_detail_1{
	width: 40%;
}

#stimmung_detail_2{
	width: 40%;
}

#bearbeitungsstatus{
	border: 1px black solid;
	margin-top: -1px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 5px 10px 5px 10px;
}

#taskleiste{
	top: 0;
	left: 0;
	width: 100%;
	height: 55px;
	padding: 5px 10px 10px 15px;
	background-color: grey;
	box-shadow: 0px 0px 5px #696969;
}

#taskleiste a{
	text-decoration: none;
	color: white;
}

#main{
	padding: 20px 30px 20px 10px;
}

.erledigt{
	display: inline-block;
}

#admin{
	border: 1px black solid;
	margin-top: -1px;
	width: 100%;
	display: flex;
	padding: 5px 10px 10px 10px;
	justify-content: space-between;
	
	margin-bottom: 10px;
}

@media screen and (min-width: 0px) and (max-width: 600px){

	#stimmung_main{
		padding: 15px 10px 15px 10px;
	}
	
	#stimmung_main input[type=checkbox]{
		padding: 15px;
	}

	.stimmung_detail{
		flex-direction: column;
		text-align: center;
		width: 100%;
	}
	
	.stimmung_detail textarea{
		width: 100%;
		height: 100px;
		margin-bottom: 5px;
		text-align: left;
	}
	
	#stimmung_detail_1{
	width: 100%;
	}

	#stimmung_detail_2{
	width: 100%;
	}

	#bearbeitungsstatus{
		width: 100%;
	}
}