/*
 * Retold Data Mapper — base styles
 *
 * Only minimal pre-load chrome here. All view-specific CSS lives in the
 * view configuration blocks and is injected by Pict's CSSMap.
 */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
	background: #0d1117;
	color: #e6edf3;
	font-size: 14px;
	line-height: 1.5;
}

.loading-screen {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	gap: 8px;
	color: #8b949e;
}

.loading-screen h2 { color: #ff9800; font-size: 18px; font-weight: 600; }
