:root {
	/* Brand & Colors */
	--brand-50: #eef2ff;
	--brand-100: #e0e7ff;
	--brand-200: #c7d2fe;
	--brand-500: #6366f1;
	--brand-600: #4f46e5;
	--brand-700: #4338ca;
	--brand-800: #3730a3;
	--brand-900: #312e81;
	--brand-fg: var(--brand-600);
	--brand-bg-subtle: var(--brand-50);

	--emerald-50: #ecfdf5;
	--emerald-100: #d1fae5;
	--emerald-500: #10b981;
	--emerald-600: #059669;
	--emerald-700: #047857;

	--amber-50: #fffbeb;
	--amber-100: #fef3c7;
	--amber-500: #f59e0b;
	--amber-600: #d97706;
	--amber-700: #b45309;

	--rose-50: #fff1f2;
	--rose-100: #ffe4e6;
	--rose-500: #f43f5e;
	--rose-600: #e11d48;
	--rose-700: #be123c;

	/* Neutrals */
	--neutral-0: #ffffff;
	--neutral-50: #f8fafc;
	--neutral-100: #f1f5f9;
	--neutral-200: #e2e8f0;
	--neutral-300: #cbd5e1;
	--neutral-400: #94a3b8;
	--neutral-500: #64748b;
	--neutral-600: #475569;
	--neutral-700: #334155;
	--neutral-800: #1e293b;
	--neutral-900: #0f172a;
	--neutral-950: #020617;

	/* Semantic surfaces */
	--bg-canvas: #f8fafc;
	--bg-surface: #ffffff;
	--bg-elevated: #ffffff;
	--bg-hover: #f1f5f9;

	--text-primary: #0f172a;
	--text-muted: #475569;
	--text-subtle: #94a3b8;

	--border-default: #e2e8f0;
	--border-strong: #cbd5e1;

	/* Status */
	--success-fg: #15803d;
	--success-bg: #dcfce7;
	--warning-fg: #a16207;
	--warning-bg: #fef9c3;
	--error-fg: #b91c1c;
	--error-bg: #fee2e2;
	--info-fg: #1d4ed8;
	--info-bg: #dbeafe;

	/* Typography */
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

	/* Radius */
	--radius-sm: 4px;
	--radius-md: 6px;
	--radius-lg: 8px;
	--radius-xl: 12px;
	--radius-2xl: 16px;
	--radius-full: 9999px;

	/* Shadows */
	--shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
	--shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px 0 rgba(15, 23, 42, 0.04);
	--shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
	--shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
	--shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);

	--ring-focus: 0 0 0 3px rgba(79, 70, 229, 0.2);
	--ring-error: 0 0 0 3px rgba(225, 29, 72, 0.2);

	/* Motion */
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--duration-100: 100ms;
	--duration-150: 150ms;
	--duration-200: 200ms;

	/* Dimensions */
	--sidebar-w: 260px;
	--topbar-h: 56px;
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg-canvas: #090d16;
		--bg-surface: #111827;
		--bg-elevated: #1a2233;
		--bg-hover: rgba(255, 255, 255, 0.04);

		--text-primary: #f1f5f9;
		--text-muted: #94a3b8;
		--text-subtle: #64748b;

		--border-default: #1e293b;
		--border-strong: #334155;

		--brand-fg: #818cf8;
		--brand-bg-subtle: rgba(79, 70, 229, 0.16);

		--shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
		--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
		--shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.5);
		--shadow-lg: 0 12px 20px -6px rgba(0, 0, 0, 0.6);
	}
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body {
	height: 100%;
	width: 100%;
	font-family: var(--font-sans);
	font-size: 13.5px;
	line-height: 1.45;
	color: var(--text-primary);
	background: var(--bg-canvas);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}

.numeric, [data-numeric="true"], .mono {
	font-family: var(--font-mono);
	font-variant-numeric: tabular-nums;
}

/* App Layout Shell */
.app-shell {
	display: flex;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	background: var(--bg-canvas);
}

/* Sidebar */
.sidebar {
	width: var(--sidebar-w);
	min-width: var(--sidebar-w);
	height: 100%;
	background: var(--bg-surface);
	border-right: 1px solid var(--border-default);
	display: flex;
	flex-direction: column;
	z-index: 20;
}

.sidebar-header {
	padding: 14px 16px;
	border-bottom: 1px solid var(--border-default);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand-badge {
	display: flex;
	align-items: center;
	gap: 10px;
}

.brand-logo-icon {
	width: 30px;
	height: 30px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, #4f46e5, #06b6d4);
	color: white;
	display: grid;
	place-items: center;
	box-shadow: 0 2px 4px rgba(79, 70, 229, 0.3);
}

.brand-title {
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 6px;
}

.brand-sub {
	font-size: 10.5px;
	font-weight: 500;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sidebar-nav {
	flex: 1;
	overflow-y: auto;
	padding: 12px 10px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.nav-section-title {
	font-size: 10.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-subtle);
	padding: 10px 8px 4px;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 7.5px 10px;
	border-radius: var(--radius-md);
	font-size: 13px;
	font-weight: 500;
	color: var(--text-muted);
	background: transparent;
	border: none;
	width: 100%;
	text-align: left;
	cursor: pointer;
	transition: all var(--duration-150) var(--ease-out);
}

.nav-item:hover {
	background: var(--bg-hover);
	color: var(--text-primary);
}

.nav-item.active {
	background: var(--brand-bg-subtle);
	color: var(--brand-fg);
	font-weight: 600;
}

.nav-item.active svg {
	color: var(--brand-fg);
}

.nav-badge {
	margin-left: auto;
	font-size: 11px;
	font-weight: 600;
	padding: 1px 6px;
	border-radius: var(--radius-full);
	background: var(--neutral-100);
	color: var(--neutral-700);
}

.nav-badge.alert {
	background: var(--rose-100);
	color: var(--rose-700);
}

.sidebar-footer {
	padding: 12px 14px;
	border-top: 1px solid var(--border-default);
	background: var(--bg-surface);
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Main Content Area */
.main-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	position: relative;
}

/* Topbar */
.topbar {
	height: var(--topbar-h);
	min-height: var(--topbar-h);
	background: var(--bg-surface);
	border-bottom: 1px solid var(--border-default);
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 10;
}

.topbar-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.search-box {
	position: relative;
	width: 280px;
}

.search-input {
	width: 100%;
	height: 32px;
	padding: 0 32px 0 32px;
	background: var(--bg-canvas);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-md);
	font-size: 12.5px;
	color: var(--text-primary);
	transition: all var(--duration-150) var(--ease-out);
}

.search-input:focus {
	outline: none;
	border-color: var(--brand-fg);
	box-shadow: var(--ring-focus);
	background: var(--bg-surface);
}

.search-icon {
	position: absolute;
	left: 9px;
	top: 8px;
	color: var(--text-subtle);
}

.kbd-shortcut {
	position: absolute;
	right: 8px;
	top: 6px;
	font-size: 10.5px;
	padding: 2px 5px;
	border-radius: var(--radius-sm);
	background: var(--neutral-200);
	color: var(--neutral-600);
	font-family: var(--font-mono);
}

.topbar-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.live-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: var(--radius-full);
	background: var(--emerald-50);
	color: var(--emerald-700);
	border: 1px solid var(--emerald-100);
	font-size: 12px;
	font-weight: 500;
}

.pulse-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--emerald-500);
	box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
	70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Content Body */
.content-body {
	flex: 1;
	overflow-y: auto;
	padding: 24px;
	max-width: 1480px;
	width: 100%;
	margin: 0 auto;
}

/* Page Header */
.page-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.page-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.015em;
}

.page-subtitle {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 2px;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Button Primitives */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 32px;
	padding: 0 12px;
	border-radius: var(--radius-md);
	font-size: 12.5px;
	font-weight: 500;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all var(--duration-150) var(--ease-out);
	white-space: nowrap;
}

.btn:focus-visible {
	outline: none;
	box-shadow: var(--ring-focus);
}

.btn-primary {
	background: var(--brand-600);
	color: #ffffff;
}

.btn-primary:hover {
	background: var(--brand-700);
}

.btn-primary:active {
	background: var(--brand-800);
}

.btn-secondary {
	background: var(--bg-surface);
	color: var(--text-primary);
	border-color: var(--border-default);
}

.btn-secondary:hover {
	background: var(--neutral-50);
	border-color: var(--border-strong);
}

.btn-success {
	background: var(--emerald-600);
	color: #ffffff;
}

.btn-success:hover {
	background: var(--emerald-700);
}

.btn-danger {
	background: var(--rose-600);
	color: #ffffff;
}

.btn-danger:hover {
	background: var(--rose-700);
}

.btn-ghost {
	background: transparent;
	color: var(--text-muted);
}

.btn-ghost:hover {
	background: var(--bg-hover);
	color: var(--text-primary);
}

.btn-sm {
	height: 28px;
	padding: 0 9px;
	font-size: 12px;
}

.btn-lg {
	height: 38px;
	padding: 0 16px;
	font-size: 13.5px;
	font-weight: 600;
}

/* KPI Strip */
.kpi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 14px;
	margin-bottom: 24px;
}

.kpi-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-lg);
	padding: 16px;
	transition: all var(--duration-150) var(--ease-out);
}

.kpi-card:hover {
	border-color: var(--border-strong);
	box-shadow: var(--shadow-xs);
}

.kpi-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--text-muted);
	font-size: 11.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.kpi-value {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	margin: 8px 0 4px;
	letter-spacing: -0.02em;
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.kpi-footer {
	font-size: 11.5px;
	color: var(--text-subtle);
	display: flex;
	align-items: center;
	gap: 4px;
}

.kpi-tag-good {
	color: var(--emerald-600);
	font-weight: 600;
}

.kpi-tag-alert {
	color: var(--rose-600);
	font-weight: 600;
}

/* Cards & Containers */
.card {
	background: var(--bg-surface);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 20px;
}

.card-header {
	padding: 14px 18px;
	border-bottom: 1px solid var(--border-default);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.card-title {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 8px;
}

.card-body {
	padding: 18px;
}

/* Data Tables */
.table-container {
	overflow-x: auto;
	width: 100%;
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 13px;
}

.data-table th {
	background: var(--neutral-50);
	color: var(--text-muted);
	font-size: 11.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 10px 14px;
	border-bottom: 1px solid var(--border-default);
	white-space: nowrap;
}

.data-table td {
	padding: 11px 14px;
	border-bottom: 1px solid var(--border-default);
	color: var(--text-primary);
	vertical-align: middle;
}

.data-table tr:last-child td {
	border-bottom: none;
}

.data-table tr:hover td {
	background: var(--bg-hover);
}

/* Badges */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 4.5px;
	padding: 2.5px 8px;
	border-radius: var(--radius-sm);
	font-size: 11.5px;
	font-weight: 500;
	white-space: nowrap;
}

.badge-neutral {
	background: var(--neutral-100);
	color: var(--neutral-700);
}

.badge-brand {
	background: var(--brand-50);
	color: var(--brand-700);
}

.badge-success {
	background: var(--emerald-50);
	color: var(--emerald-700);
	border: 1px solid var(--emerald-100);
}

.badge-warning {
	background: var(--amber-50);
	color: var(--amber-700);
	border: 1px solid var(--amber-100);
}

.badge-danger {
	background: var(--rose-50);
	color: var(--rose-700);
	border: 1px solid var(--rose-100);
}

.badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}

/* Tabs Header */
.tab-bar {
	display: flex;
	align-items: center;
	gap: 4px;
	border-bottom: 1px solid var(--border-default);
	margin-bottom: 18px;
	overflow-x: auto;
}

.tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 14px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-muted);
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	transition: all var(--duration-150) var(--ease-out);
	white-space: nowrap;
}

.tab-btn:hover {
	color: var(--text-primary);
}

.tab-btn.active {
	color: var(--brand-fg);
	font-weight: 600;
	border-bottom-color: var(--brand-fg);
}

/* User / Driver Avatar Item */
.user-cell {
	display: flex;
	align-items: center;
	gap: 10px;
}

.user-avatar {
	width: 32px;
	height: 32px;
	border-radius: var(--radius-full);
	object-fit: cover;
	border: 1px solid var(--border-default);
	background: var(--neutral-100);
	flex-shrink: 0;
}

.user-name {
	font-weight: 600;
	color: var(--text-primary);
}

.user-sub {
	font-size: 11.5px;
	color: var(--text-muted);
}

/* Form Styles */
.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.form-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-muted);
}

.form-input, .form-select, .form-textarea {
	height: 34px;
	padding: 0 10px;
	border: 1px solid var(--border-default);
	border-radius: var(--radius-md);
	background: var(--bg-surface);
	color: var(--text-primary);
	font-size: 13px;
	transition: all var(--duration-150) var(--ease-out);
}

.form-textarea {
	height: auto;
	min-height: 70px;
	padding: 8px 10px;
	resize: vertical;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--brand-fg);
	box-shadow: var(--ring-focus);
}

/* Modal / Drawer Overlay */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.5);
	backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 50;
	padding: 20px;
}

.modal-content {
	background: var(--bg-surface);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	width: 100%;
	max-width: 640px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: modalIn 200ms var(--ease-out);
}

.modal-content.wide {
	max-width: 820px;
}

@keyframes modalIn {
	from { opacity: 0; transform: scale(0.97) translateY(8px); }
	to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border-default);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-primary);
}

.modal-body {
	padding: 20px;
	overflow-y: auto;
}

.modal-footer {
	padding: 14px 20px;
	border-top: 1px solid var(--border-default);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	background: var(--neutral-50);
}

/* Mobile Simulator Phone View */
.mobile-simulator-frame {
	width: 380px;
	height: 720px;
	border-radius: 40px;
	background: #0f172a;
	padding: 12px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.mobile-screen {
	background: #f8fafc;
	border-radius: 30px;
	height: 100%;
	width: 100%;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	position: relative;
	color: #0f172a;
}

.mobile-notch {
	width: 140px;
	height: 20px;
	background: #0f172a;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	margin: 0 auto;
}

.mobile-app-header {
	padding: 14px 16px;
	background: #ffffff;
	border-bottom: 1px solid #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-app-body {
	flex: 1;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	overflow-y: auto;
}

/* Payslip Sheet View */
.payslip-sheet {
	background: #ffffff;
	color: #0f172a;
	border: 1px solid #cbd5e1;
	border-radius: var(--radius-lg);
	padding: 24px;
	font-family: var(--font-sans);
}

.payslip-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 16px;
	border-bottom: 2px solid #0f172a;
	margin-bottom: 16px;
}

.payslip-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 16px;
}

.payslip-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
}

.payslip-table th, .payslip-table td {
	padding: 8px 10px;
	border: 1px solid #e2e8f0;
	font-size: 12px;
}

.payslip-table th {
	background: #f1f5f9;
	font-weight: 600;
}

/* Score Circle */
.score-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 13px;
	font-family: var(--font-mono);
}

.score-high {
	background: var(--emerald-50);
	color: var(--emerald-700);
	border: 2px solid var(--emerald-500);
}

.score-med {
	background: var(--amber-50);
	color: var(--amber-700);
	border: 2px solid var(--amber-500);
}

.score-low {
	background: var(--rose-50);
	color: var(--rose-700);
	border: 2px solid var(--rose-500);
}

/* GCC SIF Preview Codebox */
.codebox {
	background: #0f172a;
	color: #38bdf8;
	font-family: var(--font-mono);
	font-size: 12px;
	line-height: 1.6;
	padding: 14px;
	border-radius: var(--radius-md);
	overflow-x: auto;
	white-space: pre-wrap;
	word-break: break-all;
}

/* Kanban Board */
.kanban-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.kanban-col {
	background: var(--neutral-50);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-lg);
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 400px;
}

.kanban-col-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text-muted);
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border-default);
}

.kanban-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-md);
	padding: 12px;
	box-shadow: var(--shadow-xs);
	cursor: pointer;
	transition: all var(--duration-150) var(--ease-out);
}

.kanban-card:hover {
	border-color: var(--brand-fg);
	box-shadow: var(--shadow-sm);
}

/* Toast */
.toast-bar {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 100;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background: #0f172a;
	color: #ffffff;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	font-size: 13px;
	font-weight: 500;
	animation: toastIn 150ms var(--ease-out);
}

@keyframes toastIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
	.sidebar {
		display: none;
	}
	.content-body {
		padding: 16px;
	}
}
