
body{
	font-family: system-ui, sans-serif;
	line-height: 1.6;
	max-width: 800px;
	margin: 40px auto;
	padding: 0 20px;
	color: #e0e0e0;
	background-color: #121212;
}
h1,h2,h3{color: #ffffff;}
a{color: #66b2ff;}
table{
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}
td{
	border: 1px solid #444;
	padding: 4px;
	text-align: left;
	outline: 0px solid transparent;
}
input,textarea,button{
	font-family: inherit;
	font-size: inherit;
	padding: 8px;
	margin: 5px 0;
	display: block;
	background-color: #222;
	color: #fff;
	border: 1px solid #444;
}
button:hover{ background-color: #444; }

#overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
#popup {
	background: #111;
	padding: 15px;
	border: 1px solid #888;
	border-radius: 1rem;
}
#popup input{
	width: 200px;
	margin: 5px 0;
}
#popup button{ display:inline; }

[hidden]{ /*Magic*/ display: none !important; }
#content{ outline: 0px solid transparent; }
.divider{ border: 1px solid grey; }

#menu{
	position: fixed;
	top: 0;
	left: 0;
	display:none;
	width: auto;
	border: solid 1px;
	background-color: #222;
}
.menu-entry{
	width:100%;
	margin-top:0;
	margin-bottom:0;
	border-top:0;
	border-left:0;
	border-right:0;
	padding:auto;
	border-bottom:solid 1px;
	background: transparent;
	display:flex;
}
.menu-entry-dot{
	padding:0;
	margin:0;
	flex:1;
	border-right: solid 1px;
	background: transparent;
}

.Heading1{
	display: inline;
	font-size: 2em;
	font-weight: bold;
}
.Heading2{
	display: inline;
	font-size: 1.5em;
	font-weight: bold;
}
.Heading3{
	display: inline;
	font-size: 1.17em;
	font-weight: bold;
}
.Heading4{
	display: inline;
	font-size: 1em;
	font-weight: bold;
}
.Heading5{
	display: inline;
	font-size: 0.83em;
	font-weight: bold;
}
.Heading6{
	display: inline;
	font-size: 0.67em;
	font-weight: bold;
}

#header{
	flex-direction: row;
	display: flex;
}
.bar-btns{
	display: flex;
	flex-direction: row;
	width:250px;
}
.bar-paging{ flex:1; }
.bar{
	margin:0;
	padding: 0;
}
.bar-stack{
	flex-direction: column;
	display: flex;
	flex:1;
}

#dropZone{
	width: 300px;
	height: 200px;
	border: 2px dashed #888;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
#dropZone.dragover{ background: #eef; }
#dropZone:empty::before {
	content: attr(data-placeholder);
	color: #888;
	pointer-events: none;
}
.image img{
	width: 100%;
	height: auto;
}
.image {
	display: block;
	position: relative;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}
.resize-handle{
	position: absolute;
	right: -4px;
	bottom: -4px;
	width: 10px;
	height: 10px;
	background: #0078d4;
	cursor: nwse-resize;
}
.resize-handle-off{}






