.tenx-crm {
	--tenx-navy: #07111f;
	--tenx-panel: rgba(11, 24, 42, 0.82);
	--tenx-panel-soft: rgba(255, 255, 255, 0.08);
	--tenx-gold: #d9b866;
	--tenx-gold-soft: rgba(217, 184, 102, 0.18);
	--tenx-cream: #f5efe2;
	--tenx-muted: #aeb9c8;
	--tenx-line: rgba(245, 239, 226, 0.14);
	--tenx-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
	box-sizing: border-box;
	width: 100%;
	color: var(--tenx-cream);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
}

.tenx-crm *,
.tenx-crm *::before,
.tenx-crm *::after {
	box-sizing: inherit;
}

.tenx-crm-admin-shell,
.tenx-crm-employee-shell,
.tenx-crm-auth-screen,
.tenx-crm-lock-screen {
	min-height: 640px;
	padding: 28px;
	border: 1px solid var(--tenx-line);
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(15, 31, 52, 0.96)),
		var(--tenx-navy);
	box-shadow: var(--tenx-shadow);
	overflow: hidden;
}

.tenx-crm-hero {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--tenx-line);
}

.tenx-crm-kicker {
	margin: 0 0 8px;
	color: var(--tenx-gold);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.tenx-crm h1,
.tenx-crm h2,
.tenx-crm p {
	margin-top: 0;
}

.tenx-crm h1 {
	margin-bottom: 0;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.08;
}

.tenx-crm h2 {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.25;
}

.tenx-crm p {
	color: var(--tenx-muted);
	font-size: 14px;
	line-height: 1.6;
}

.tenx-crm-grid {
	display: grid;
	gap: 16px;
	margin-top: 24px;
}

.tenx-crm-card {
	min-height: 150px;
	padding: 22px;
	border: 1px solid var(--tenx-line);
	border-radius: 8px;
	background: var(--tenx-panel);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px);
}

.tenx-crm-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 36px;
	padding: 0 14px;
	border: 1px solid var(--tenx-gold-soft);
	border-radius: 999px;
	background: rgba(217, 184, 102, 0.08);
	color: var(--tenx-cream);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.tenx-crm-status-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #4ade80;
	box-shadow: 0 0 20px rgba(74, 222, 128, 0.75);
}

.tenx-crm-footer {
	margin-top: 22px;
	color: var(--tenx-muted);
	font-size: 12px;
}

.tenx-crm-notice {
	padding: 16px;
	border: 1px solid #b91c1c;
	background: #450a0a;
	color: #fee2e2;
}
