body {
	font-family: 'Segoe UI', sans-serif;
	margin: 0;
	background-color: #f4f4f4;
}

h1	{
	font-size:		x-large;
	font-family:	'Segoe UI', sans-serif;
	font-weight:	bold;
}

h2	{
	font-size:		large;
	font-family:	'Segoe UI', sans-serif;
	font-weight:	bold;
}

img	{
	border-radius:	10px;
	border:			1px solid rgb(220,221,219);
}

form {
	display: flex;
	flex-direction: column;
}

input[type="text"], input[type="password"], input[type="number"]  {
	padding: 10px;
	margin: 10px 0;
	width: 250px;
	font-size: 1em;
}

input[type="submit"] {
	padding: 10px 20px;
	font-size: 1em;
	background-color: #014592;
	color: white;
	border: none;
	cursor: pointer;
}

input[type="submit"]:hover {
	background-color: #012f63;
}

a	{
	color:			rgb(0, 0, 0);
}

table {
	border-collapse:	collapse;
	border:				0px;
}

.cell_top	{
	padding: 			10px;
	font-weight: 		bold;
	background-color: 	white;
}

.cell_content	{
	padding: 			10px;
}

.row_grey	{
	font-weight: 		normal;
	background-color: 	#f5f5f5;
}

.row_white	{
	font-weight: 		normal;
	background-color: 	white;
}

.css_infobox_nutzer	{
	background-color:	rgb(255, 255,255);
	border:				1px solid #014592; 
	border-radius: 		10px; 
	position: 			fixed; 
	bottom: 			10px; 
	padding: 			10px; 
	right: 				10px;
}

.css_main_icon	{
	border-radius: 		10%;
	cursor:				pointer;
	min-width: 			30px;
	max-width: 			50px;	
	transition:			transform .2s;	
}
	
.css_main_icon:hover	{
	transform:			scale(1.1);	
}

.css_menu_icon	{
	border-radius: 		10%;
	cursor:				pointer;
	width: 				30px;
	transition:			transform .2s;	
}
	
.css_menu_icon:hover	{
	transform:			scale(1.1);	
}

.css_overlay_all		{
	position:			fixed;
	top: 				0px;
	left:				0px;
	width:				99%;
	height: 			99%;
	background-color:	rgba(255, 255, 255, 0.7);
	z-index:			150;	
}

.css_overlay_load	{
	padding:			10px;
	position:			fixed;
	left:				50%;
	top:				50%;
	transform: translate(-50%, -50%);
	min-width: 			300px;
	max-width:			100%;
	background-color: 	rgb(204, 208, 215);
	border: 			1px solid rgb(71, 69, 70);
	border-radius: 		10px;
	box-shadow:			5px 5px 10px 7px silver;
	z-index:			175;	
}

.css_overlay_message	{
	padding:			10px;
	position:			fixed;
	left:				50%;
	top:				50%;
	transform: translate(-50%, -50%);
	min-width: 			300px;
	max-width:			100%;
	background-color: 	rgb(204, 208, 215);
	border: 			1px solid rgb(71, 69, 70);
	border-radius: 		10px;
	box-shadow:			5px 5px 10px 7px silver;
	z-index:			174;	
}

.header {
	background-color: #014592;
	color: white;
	display: grid;
	grid-template-columns: 110px 1fr;
	height: 100px;
	width: 100%;
	align-items: center;
}

.header img {
	width: 100px;
	margin-left: 10px;
}

.header-text {
	margin-left: 20px;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: calc(100vh - 100px);
	text-align: center;
}

.title {
	font-size: 2.5em;
	width: 30%;
	min-width: 300px;
	margin-bottom: 10px;
}

.subtitle {
	font-size: 1.2em;
	margin-bottom: 30px;
}