/*
 * Frontend fuer rswork CRM — Startgeruest.
 * Alles unter #rsw-crm-app gescopet (Praefix rsw-crm-), damit das WP-Theme nicht kollidiert.
 * Cockpit-Designsprache: navy #0b1e3f, blau #046bd2, gold #c9a24a.
 * Selektoren nach aufsteigender Spezifitaet (Stylelint no-descending-specificity).
 */

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	background: #f9fafb;
}

#rsw-crm-app {
	--navy: #0b1e3f;
	--blue: #046bd2;
	--gold: #c9a24a;
	--ink: #1a2332;
	--muted: #64748b;
	--line: #e5e7eb;

	box-sizing: border-box;
	min-height: 100vh;
	padding: 24px;
	font-family: Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: #f9fafb;
}

#rsw-crm-app .rsw-crm-head {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 20px;
}

#rsw-crm-app .rsw-crm-back {
	color: var(--blue);
	text-decoration: none;
}

#rsw-crm-app .rsw-crm-title {
	margin: 0;
	font-size: 20px;
	color: var(--navy);
}

#rsw-crm-app .rsw-crm-card {
	padding: 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
}

#rsw-crm-app .rsw-crm-muted {
	color: var(--muted);
}