﻿html {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 14px;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

html {
	position: relative;
	min-height: 100%;
}

body {
	margin-bottom: 60px;
}

h1, h2, h3, h4 {
	margin: 0;
	padding: 0;
}

h1 {
	font-size:150%;
}
h1 sup {
	font-size:60%;
	color:lightgray;
}
h2 {
	margin-top:1em;
	font-size:120%;
}
h3 {
	font-size: 120%;
}
h4 {
	font-size: 110%;
}

header {
	width:fit-content;
	margin: 0;
	padding:0;
	height:fit-content;
	display: flex;
	font-size: 150%;
	margin-left: 0;
	border:2px solid lightgray;
}

#account {
	border:2px solid gray;
	padding:2em;
	width:15em;
	display:flex;
	border-radius:.5em;
	flex-direction:column;
	font-size:1.25em;
	gap:0.5em;
}
#account .header {
	font-size:140%;
	font-weight:bold;
	margin-bottom:.5em;
}
input[type="text"], input[type="email"], input[type="password"] {
	border-radius: .5em;
	padding: 6px;
	font-size: 1em;
}
#login-submit {
	border-radius: .5em;
	margin-top:1em;
	padding: 6px;
	font-size: 1em;
	font-weight: bold;
	color: white;
	background-color: lightskyblue;
}
.text-danger {
	font-size:80%;
	color:red;
}
/*	header ul {
		display: flex;
		list-style-type: none;
		padding-inline-start: 0;
		margin-block-start: 0;
		margin-block-end: 0;
		gap:1em;
	}
	header ul:last-child {
		margin-left:2em;
	}*/

footer {
	display: flex;
	color: gray;
	margin-top: 2em;
}

th, td {
	text-align: left;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 2px;
	padding-right: 2px;
}

.bordered {
	padding:8px;
	width:max-content;
	border:1px solid lightgray;
}
.smaller {

}
tr.header {
	color: white;
	background-color: lightskyblue;
}

.sub {
	color: white;
	background-color: lightskyblue;
	font-size: 95%;
}
h2 {
	margin-block-end: 0.3em;
	padding-bottom: 0;
}

.switch {
	padding: 0.2em 0.4em;
	border-radius: 0.25em;
	color: black;
	background-color: lightblue;
	text-decoration: none;
	min-width:4em;
}

	.switch.on {
		background-color: lightgreen;
	}

	.switch.off {
		background-color: lightcoral;
	}

.clickspinner {
	display: none;
}

.gray {
	color: lightgray;
}