body {
	font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
	margin: 0;
	background: #111;
	color: #fff;
	min-height: 100vh;
}

#boot {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	gap: 18px;
	text-align: center;
	padding: 0 16px;
}

#boot .spinner {
	width: 34px;
	height: 34px;
	border: 3px solid rgba(255, 255, 255, 0.15);
	border-top-color: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	animation: spin 0.9s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

#boot-status {
	color: rgba(253, 253, 253, 0.55);
	font-size: 14px;
	margin: 0;
}

#err {
	color: #ff6666;
	white-space: pre-wrap;
	max-width: 620px;
}

#err-code {
	font-size: 12px;
	color: #bbb;
	font-family: "Courier New", Courier, monospace;
	max-width: 620px;
	overflow-wrap: anywhere;
}

#sj-frame {
	border: none;
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	background: #111;
}

#browse-bar {
	position: fixed;
	right: 10px;
	bottom: 8px;
	z-index: 10;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.55);
	padding: 4px 9px;
	border-radius: 20px;
	display: flex;
	gap: 6px;
	align-items: center;
}

#browse-bar input {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
	border-radius: 12px;
	padding: 2px 8px;
	font-size: 11px;
	width: 150px;
	outline: none;
}
