#debugPanel {
	position: fixed;
	top: 10px;
	right: 10px;
	width: 360px;
	max-height: 80vh;
	background: rgba(0, 0, 0, 0.85);
	color: #eee;
	z-index: 99999;
	padding: 12px;
	border-radius: 6px;
	font-family: Consolas, monospace;
	font-size: 12px;
	overflow-y: auto;
	display: none; /* toggles with F9 */
	border: 1px solid #444;
}
#debugPanel h3 {
	margin-top: 0;
	font-size: 13px;
	color: #9cf;
}
#debugPanel pre {
	white-space: pre-wrap;
	word-break: break-word;
}
#debugPanel .section {
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid #444;
}
