body{
	max-width: 60rem;
	margin: auto;
	padding: 10px;
}

#title {
	#border-bottom: 1px dashed #00869A;
}

#title h1>a {
	color: #e1aa5d;
	text-decoration: none;
}

#title h1 {
	font-size: 2.4em;
	margin:10px 0 0;
	border-bottom: none;
	padding-bottom: 0.1em;
}
#title h1::before{
	content: '';
}

#footer{
	padding-top:10px;
	margin:10px 0 20px;
	border-top: 1px dashed #00869A;
	text-align:center;
}

a{text-decoration:underline;color:#3377AA;}
a:visited{text-decoration:none;color:#336699;}
blockquote{background-color:#f9f9f9;border-left:solid 4px #e9e9e9;margin-left:12px;padding:12px 12px 12px 24px;}
blockquote img{margin:12px 0px;}
blockquote iframe{margin:12px 0px;}

#title{ font-size: x-large; }
li{
	margin-bottom:8px;
}

pre{
	display: block;
	padding: 1rem;
	word-break: break-all;
	word-wrap: break-word;
	background-color: #f9f9f9;
}
code{
	display: block;
	padding: 1rem;
	word-break: break-all;
	word-wrap: break-word;
	background-color: #f9f9f9;
}

.subtitle{
	color:#F39D21
}
h1{	
	margin:50px 0 8px;
	color:#3377AA;
	font-size: 1em;
	padding-bottom: .5em;
	border-bottom: 1px solid #3377AA;
}
h1::before{
	#content: '# ';
}

a.posttitle {
	text-decoration: none;
}

h2{
	font-size:1em;
	#color:#b5e853;
	color:#3377AA;
}
h2::before{
	#content: '## ';
}
h3{
	font-size:1em;
	margin-top:42px;
	margin-bottom:8px;
	width:100%;
}
img{max-width:100%;}
#description{font-size:large;margin-bottom:12px;}
#main-links {
	font-size:large;
	float:right;
}
#main-links a {
	margin: 0 10px;
}
#all_posts{margin-top:24px;text-align:center;}

table {
	width: 100%;
	table-layout: fixed;
}

tr:hover {background-color: #f2f2f2;}

th {
	background-color: #ddd;
}

th.opener {
	width: 14em;
}

td {
	overflow: hidden;
}

.input {
	width: 80%;
}

/* Spinner/Lightbox overlay */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	display: none;
	justify-content: center;
	align-items: center;
}

.overlay.active {
	display: flex;
}

.spinner-container {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	max-width: 400px;
}

.spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3377AA;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

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

.spinner-text {
	color: #3377AA;
	font-size: 1.1em;
	margin-bottom: 0.5rem;
}

.spinner-status {
	color: #666;
	font-size: 0.9em;
}

.error-message {
	color: #d32f2f;
	background-color: #ffebee;
	padding: 1rem;
	border-radius: 4px;
	margin-top: 1rem;
	border-left: 4px solid #d32f2f;
}

