/************************************
 * 
 * 	HOME
 * 	  
 */


/* Seitenlayout  */
.home_table_header {
	color: var(--EDH-Türkis3);
	font-size: 25px;
	font-weight: bolder;
	margin: 5px 0 0 5px;
	padding-top: 10px;
}
.home_Container {
	width: 100%;
	display: flex;
	border: 0px solid red;
}
.home_Container > div {
	width: 100%;
	padding: 5px;
	border: 0px solid red;

}



/* TABELLE */
.home {
	border-radius: 5px;
	background-color:  var(--EDH-Türkis1);
	padding: 5px;
}
.home_name {
	color: var(--EDH-Türkis3);
}
.home_outer {
	border-bottom: 1px solid #A4A4A4;
	display: flex;
	background-color: #E6E6E6;
	color: #000;
}
.home_list {
	max-height: 300px;
	overflow-y: scroll;
}
.home_outer > div {
	border: 0px	solid red;
		background-color: #E6E6E6;
	font-size: 12px;
	max-height: 30px;
}
.home_outer > div > button {
	width: 100%;
	height: 20px;
	background-color: var(--EDH-Gelb);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}
.home_outer > div:nth-child(1) {
	width: 5%;
}
.home_outer > div:nth-child(2) {
	width: 10%;
}
.home_outer > div:nth-child(3) {
	width: 10%;
}
.home_outer > div:nth-child(4) {
	width: 20%;
}
.home_outer > div:nth-child(5) {
	width: 55%;
	white-space: pre-wrap;
	overflow-y: auto;
}


/*********************/



@media only screen and (max-width: 768px) {
	.home_Container {
		flex-direction: column;
		
	}
	.home_outer > div {
		font-size: 8px;
		max-height: 30px;
	}
	.home_outer > div > button {
		font-size: 8px;
	}
}




