
.top-right {
	position: fixed;
	top: 8px;
	right: 16px;
}

.top-left {
	position: fixed;
	top: 8px;
	left: 16px;
}

header {
	cursor: pointer;
	position: relative;
	transition: transform 0.5s ease, opacity 0.5s ease;
}

footer {
	margin: 48px 0;
}

summary {
	margin: 16px;
	cursor: pointer;
}
.logo-iframe {
	border: none;
	margin: 0 auto;
	display: block;
	width: 280px; 
	height: 280px;
}


aside {
	background: #ddd;
	color: #000;
	border-radius: 10px;
	padding: 20px;
	justify-self: center;
	margin: 10px;
}

input[type="text"] {
	width: 300px;
	padding: 10px;
	margin: 5px;
	font-family: 'Source Code Pro', monospace;
	border: 1px solid #ccc;
	font-size: 16px;
	border-radius: 3px;

}

button {
	padding: 10px 20px;
	border-radius: 3px;
	margin: 5px;
	background-color: #333;
	border: 1px solid #333;

	color: #fff;
	border: none;
	font-size: 16px;
	cursor: pointer;
	font-family: 'Source Code Pro', monospace;

}


body {
	background-color: #fff;
	font-family: 'Source Code Pro', monospace;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 16px;
	font-weight: 400
}

#container {
	margin: 0; 
	padding: 0;
	width: 100%;
}

main {
	margin: 0 auto;
	max-width: 800px;
}


.intro {
	font-size: 1em;
	line-height: 1.4;
	margin-bottom: 1.5em;
	text-align: left;
}


h1 {
	font-family: "Source Code Pro", monospace;
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}
h2 {
	font-family: "Source Code Pro", monospace;
	font-size: 24px;
	font-weight: 700;
}
h3 {
	font-family: "Source Code Pro", monospace;
	font-size: 20px;
	font-weight: 700;

	margin: 6px 0;
	padding: 0;
}

h3 a, 
table:not(.small):not(.orders) a {
	color: inherit;
	text-decoration: inherit;
}
h3 a:hover, 
table:not(.small):not(.orders) a:hover{
	text-decoration: underline;
}

th{
	font-family: "Source Code Pro", monospace;
	font-size: 16px;
	font-weight: 400
}
td{
	font-family: "Source Code Pro", monospace;
	font-size: 20px;
	font-weight: 700;
}


.small th {
	font-size: 0.9em;
}
.small td {
	font-size: 0.9em;
}

.invoice {
	border-top: 1px dashed #ccc;
	padding-top: 8px;
	margin-top: 8px;
}

.invoice th, .orders th {
	font-size: 14.4px;
	font-weight: 400;
}

.invoice td, .orders td {
	font-size: 14.4px;
	font-weight: 400;
}

.invoice tr > * {
	text-align: right;
}
.invoice tr th:first-child {
	text-align: left;
}


.orders {
	margin-top: 8px;
}

.orders th {
	font-size: 14.4px;
	font-weight: 400;
	border-bottom: 1px dashed #ccc;
	padding-top: 8px;

}

.orders td {
	font-size: 14.4px;
	font-weight: 400;
}

.orders tr th:first-child, 
.orders tr td:first-child {
	text-align: left;
}


.orders tr th:last-child, 
.orders tr td:last-child {
	text-align: right;
}

.a-l { text-align: left; }
.a-r { text-align: right; }
.a-c { text-align: center; }

td.bold, th.bold { font-weight: 700; }


/* Styling for technical whitepaper code blocks */
/*pre,
code {
	background: #333;
	padding: 0.05em;
	color: #fff;
	border-radius: 5px;
	font-family: 'Source Code Pro', monospace;
	white-space: pre-wrap;
	word-wrap: break-word;
	font-size: 0.9em;
}*/

/* Hide spinner controls */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

.progress-bar {
	display: flex;
	gap: 4px;
	justify-content: center;
	margin: 16px 0;
}

.progress-bar span {
	width: 12px;
	height: 12px;
	border: 1px solid #333;
}

.progress-bar span.filled {
	background: #333;
}

table {
	width: 100%;
}

.sub-initiatives {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}

.sub-box {
	flex: 1;
	border: 1px solid #333;
	padding: 10px;
	box-sizing: border-box;
	color: inherit;
	transition: background 0.2s;
	cursor: default;
}

.sub-box h3 {
	font-size: 1.2em;
	margin-bottom: 0.75em;
	font-weight: 500;
}

.sub-box p {
	font-size: 0.95em;
	line-height: 1.4;
	margin: 0;
}


dl {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 0.5em 1em;
	align-items: start;
}
dt {
	font-weight: bold;
	grid-column: 1 / 2;
}
dd {
	margin: 0;
	grid-column: 2 / 3;
}
