


#notfound h1 {
	display:block;
	text-align: center;
	margin-top: 100px;
}

#notfound a {
	display:block;
	text-align: center;
}


.pageContent {
	padding-bottom: 100px;
	margin-left: 100px;
	margin-top: 30px;
}

#toolbar { position: fixed; left: 0; bottom: 0; width: 100%; box-sizing: border-box; padding: 20px; padding-left: 100px; background-color: rgba(255,255,255,0.8) }
#toolbar .pageNav{
	float: right;
	margin-right: 20px;
}


table { border: none; width: 100%; }
table th { text-align: left; }
table td, #onlinePiep table th { padding-top: 4px; padding-bottom: 4px; padding-right: 20px; }
table tr:nth-of-type(2n+1) td { background-color: rgba(0, 0, 0, 0.05) }

.hidden {
	display: none;
}

#queryPreview.hidden {
	opacity: 0;
	pointer-events: none;
}

#queryPreview {
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 100ms linear opacity;
}

#queryPreview div {
	border-radius: 20px;
	background: white;
	padding: 20px;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
