@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
	box-sizing: border-box;
	font-family: "Roboto", sans-serif;
}
@view-transition {
  navigation: auto;
}
:root {
	--gm_blue: rgb(0, 143, 179);
	--gm_blue_rgb: 0, 143, 179;
	--gm_green: #8bb933;
	--gm_green_rgb: 139, 185, 51;
	--gm_yellow: #ffcc01;
	--gm_yellow_rgb: 255, 204, 1;
	--card-shadow: 1px 1px 2px 2px #0002;
}
body, html {
	display: flex;
	flex-direction: row;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	align-items: stretch;
	font-weight: 300;
}
#menuwrapper {
	background-color:#eee;
	flex-basis: 20%;
	flex-shrink: 0;
	overflow: auto;
    scrollbar-width: none;
}
#menuwrapper #logo {
	width: 90%;
	margin: 5%;
}
#menuwrapper nav {
	width: 90%;
	margin: 5%;
}
#menuwrapper nav a {
	display: block;
	padding: .5em 1em;
	text-decoration: none;
	border-bottom: 1px dotted #bbb;
	font-size: large;
	color: #008eb0;
	font-weight: bold;
}
#menuwrapper nav a:first-child {
	border-top: 1px dotted #bbb;
}
#menuwrapper nav a:hover {
	background-color: #ddd;
}
#contentwrapper {
	background-color:#fff;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	
}
.kennzeichen {
	display: inline-block;
	border: 1px solid gray;
	max-width: fit-content;
	padding: 2px 5px;
	box-shadow: 1px 1px 5px 0px #0002;
	border-left: .85em solid #00f;
	border-radius: 4px;
	font-family: consolas;
    font-size: .8em;
	margin-left: .2em;
}

fieldset {
	display:grid;
	grid-template-columns: max-content auto;
	justify-items:start;
	grid-gap: 1em;
    width: max-content;
	border: 0;
	box-shadow: 1px 1px 2px 2px #0002;
	padding:2em;
}
fieldset input,
fieldset select {
	padding: .5em;
}
fieldset label {
	padding: .5em 0;
	font-weight: bolder;
}
fieldset input.validate:valid {
	background-color: palegreen;
}
  
fieldset input.validate:invalid {
	background-color: lightpink;
}

a {
    color: #0084a3;
}
a:hover {
    color: #6b951c;
}

a.actionlink {
	display: inline-block;
	text-decoration: none;
	color: #008eb0;
	background-color: #eee;
	padding: 1em;
	border-radius: 10px;
	box-shadow: 1px 1px 2px 2px #0002;
	margin-top: 1em;
	margin-right: 1em;
	font-weight: bold;
}
a.actionlink:hover {
	background-color: #ddd;
}
div.error {
	border: 1px solid #f88;
	margin: 4em 4em 0 4em;
	padding: 1em;
	box-shadow: 1px 1px 2px 2px #0002;
	background-color: #fdd;
}
div.success {
    border: 1px solid #86bb36;
    margin: 4em 4em 0 4em;
    padding: 1em;
    box-shadow: 1px 1px 2px 2px #0002;
    background-color: #86bb3640;
}

/* Mobile Version
#menuwrapper {
	position: absolute;
	height: 100%;
	max-width: 20em;
	box-shadow: 0 0 10px 5px #0003;
	transition: right .25s;
	right: 0;
	right: calc(-20em - 10px);
	z-index: 10000;
}

*/