@charset "utf-8"; /* Das CMS basiert auf UTF8, bitte immer stehen lassen */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,body,div,form,table,nav,aside,footer,header,main {
  margin: 0px; padding: 0px;
}
body, html, button {
  font-size: 1em;
  box-sizing: border-box;
}
body {
  font-family: "Trebuchet MS",Helvetica,Jamrul,sans-serif;
  background-color: #eee;
  padding: 1em;
}
table,td,th,div,li,p,h1,h2,h3,h4,h5,h6 {
  font-family: "Trebuchet MS",Helvetica,Jamrul,sans-serif;
}
img { display: block; }

a { text-decoration: none; color: #e5007d; }
a:hover { color: #FF0000; }
hr { clear: both; }

/* -------------------------------------------------------------------------- */

.center {
	max-width: 640px;
	margin: auto;
}

h1 { margin-top: 0; margin-bottom: 0.2em; }
.termindiv {
	border: 2px solid black;
	border-radius: 0.4em;
	margin-bottom: 1em;
	background-color: white;
}
.termindiv.play {
		background-color: lightgreen;
}
.anwesende {
	padding: 0 0.3em 0 0.3em;
	border-top: 1px solid black;
}
.termin {
	display: flex;
	justify-content:  space-between;
	align-items:  stretch;
	font-size: 1.2em;
}
.termin > div {
	padding: 0.3em;
	border-right: 1px solid black;
}
.termin .evt {
	border-right: 0px solid black;
}

.ja, .nein, .evt {}
.buttons {
	width: 3em;
	text-align: center;
	cursor: pointer;
}
.buttons:hover, .ja.aktiv:hover, .nein.aktiv:hover, .evt.aktiv:hover {
	background-color: red;
}


.datum { 
	width: 100%;
}

.user, select {
	font-size: 1.2em;
}
.user, .hinweis {
	margin-bottom: 0.3em;
}

.ja.aktiv {
	background-color: green;
}
.nein.aktiv {
	background-color: orange;
}
.evt.aktiv {
	background-color: grey;
}



.overlay {
	z-index: 2;
	display: none;
	position: fixed;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.8);
	justify-content: center;
	align-items: center;
}
.overlay > div {
	position: fixed;
	max-width: 250px;
	background-color: white;
	border: 3px solid black;
	border-radius: 0.5em;
	padding: 1em;
}
.close {
	background-color: white;
	border: 3px solid black;
	border-radius: 50%;

	position: absolute;
	font-weight: bold;
	font-size: 2em;
	cursor: pointer;
	top: -10px;
	right: -10px;
	width: 1.5em;
	height: 1.5em;
	text-align: center;
}

.fehler {
	color: red;
	font-weight: bold;
}

button { cursor: pointer; }
button:hover { background-color: green; }
.grey { color: grey; }