*:not(h1,h2,h3,small) {
	font-size: 18px;
	color: #eee;
}
html{
	height: 100%;
	background-color: #000;
}
body {
	background-color: #000;
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 24px;
/*	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; */
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 100%;
	justify-content: center;
}

@media (min-width:500px){
div.managedSize{
/*	width:500px;*/
	width:80%;
}
}
div.tile {
	max-width: 95%;
	margin: 10px;
	padding: 5px;
	background-color: #38383d;
	border-radius: 10px;
	font-size: 24px;
	text-align: center;
        z-index: 1;
}
span.tileTitle{
	font-size: 24px;
	font-weight: bold;
}
div.site-name {
	font-size:36px;
	color: #eee;
	padding: 12px;
}
div.fileDownloadGrid {
	display: grid;
	grid-template-columns: minmax(0,1fr) 100px 125px;
	max-width: 100%;
	align-items: center;
	grid-gap: 8px;
}
img{
	max-width: 95%;
	object-fit: contain;
}
.button,
button{
	min-width: 5em;
	height: 2em;
	line-height: 2em;
	font-size: 24px;
	text-decoration: none;
	text-align: center;
	margin: 3px;
	background-color: #38383d;
	border-style: solid;
	border-width: 2px;
	border-radius: 5px;
	padding-left: 1em;
	padding-right: 1em;
}
button:disabled{
	background-color: #111;
}
form.search {
	border: none;
	font-size: 24px;
	box-shadow: none;
}
input.startSearch {
	background: #38383d;
	border-style: none;
	font: bold 30px arial, sans-serif;
	padding: 0;
	padding-left: 3px;
}
a:link,
a:visited,
a:active {
	color: #eee;
}

div.link-grid {
	display: grid;
	grid-template-columns: 33% auto 33%;
}
div.fileDirList {
	display: flex;
	flex-direction: column;
}
.btnlbl {
	font-size: 24px;
	margin-top: 0.5em;
	text-align: right;
}
.statusTable{
	text-align: left;
}
.scheduleColumn{
	width: 2em;
}
table, th, td {
	border: 1px solid black;
	border-collapse: collapse;
	text-align: center;
	font-size: 18px;
	padding: 3px;
}
.occupied {
	background-color: #0099ff;
}
div.temp-humidity-grid {
	display: grid;
	grid-template-columns: auto auto auto auto auto auto;
	justify-items: center;
}
.spoiler{
	color: #eee;
	background-color: #eee;
}
.spoiler:hover{
	background-color: unset;
}

.switch {
  position: relative;
  display: inline-block;
  width: 2.5em;
  height: 1em;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 1em;
}

.slider:before {
  position: absolute;
  content: "";
  height: .6em;
  width: .6em;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
