/* =============================================================================
   site.css  —  STAGE 3 — Responsive redesign
   =============================================================================
   Replaces /SalesManager/wwwroot/css/site.css

   Philosophy:
     * Mobile-first.  Sidebar collapses to off-canvas drawer below 992px.
     * Light/dark mode via prefers-color-scheme + manual toggle (data-theme).
     * Typography:  Inter for UI, JetBrains Mono for tabular numbers.
     * Single source of truth — tokens defined as CSS variables.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   Design tokens
----------------------------------------------------------------------------- */
:root {
	/* Layout */
	--sidebar-width: 248px;
	--sidebar-collapsed: 72px;
	--topbar-height: 60px;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 14px;
	/* Brand & accents */
	--brand-50: #eff6ff;
	--brand-100: #dbeafe;
	--brand-300: #93c5fd;
	--brand-500: #3b82f6;
	--brand-600: #2563eb;
	--brand-700: #1d4ed8;
	--success-500: #10b981;
	--success-600: #059669;
	--warning-500: #f59e0b;
	--danger-500: #ef4444;
	--danger-600: #dc2626;
	/* Light theme surfaces */
	--bg-app: #f1f5f9;
	--bg-surface: #ffffff;
	--bg-muted: #f8fafc;
	--bg-hover: #f1f5f9;
	--border: #e2e8f0;
	--border-strong: #cbd5e1;
	--text: #0f172a;
	--text-muted: #475569;
	--text-faint: #94a3b8;
	--text-invert: #ffffff;
	--sidebar-bg: #0f172a;
	--sidebar-text: #cbd5e1;
	--sidebar-text-mute: #64748b;
	--sidebar-hover: #1e293b;
	--sidebar-active-bg: #2563eb;
	--sidebar-active-fg: #ffffff;
	--shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
	--shadow-md: 0 4px 6px -1px rgba(15,23,42,.06), 0 2px 4px -2px rgba(15,23,42,.05);
	--shadow-lg: 0 10px 15px -3px rgba(15,23,42,.08), 0 4px 6px -4px rgba(15,23,42,.05);
	--font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
}

[data-theme="dark"] {
	--bg-app: #0b1220;
	--bg-surface: #111a2c;
	--bg-muted: #0f1729;
	--bg-hover: #1a2540;
	--border: #1e293b;
	--border-strong: #334155;
	--text: #e2e8f0;
	--text-muted: #94a3b8;
	--text-faint: #64748b;
	--sidebar-bg: #060c18;
	--shadow-sm: 0 1px 2px rgba(0,0,0,.3);
	--shadow-md: 0 4px 6px -1px rgba(0,0,0,.4);
	--shadow-lg: 0 10px 15px -3px rgba(0,0,0,.5);
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--bg-app: #0b1220;
		--bg-surface: #111a2c;
		--bg-muted: #0f1729;
		--bg-hover: #1a2540;
		--border: #1e293b;
		--border-strong: #334155;
		--text: #e2e8f0;
		--text-muted: #94a3b8;
		--text-faint: #64748b;
		--sidebar-bg: #060c18;
	}
}

/* -----------------------------------------------------------------------------
   Reset & base
----------------------------------------------------------------------------- */
*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg-app);
	color: var(--text);
	font-family: var(--font-ui);
	font-size: 14px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--brand-600);
	text-decoration: none;
}

	a:hover {
		color: var(--brand-700);
		text-decoration: underline;
	}

.text-muted {
	color: var(--text-muted) !important;
}

.text-faint {
	color: var(--text-faint) !important;
}

.font-mono {
	font-family: var(--font-mono);
	font-variant-numeric: tabular-nums;
}

::selection {
	background: var(--brand-100);
	color: var(--brand-700);
}

/* -----------------------------------------------------------------------------
   Sidebar
----------------------------------------------------------------------------- */
.sidebar {
	position: fixed;
	inset: 0 auto 0 0;
	width: var(--sidebar-width);
	background: var(--sidebar-bg);
	color: var(--sidebar-text);
	overflow-y: auto;
	z-index: 1040;
	transform: translateX(0);
	transition: transform .25s ease, width .2s ease;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,.15) transparent;
}

	.sidebar::-webkit-scrollbar {
		width: 6px;
	}

	.sidebar::-webkit-scrollbar-thumb {
		background: rgba(255,255,255,.12);
		border-radius: 4px;
	}

.sidebar-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 20px 18px;
	color: #fff !important;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(255,255,255,.06);
}

.sidebar-brand-icon {
	width: 38px;
	height: 38px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
	display: grid;
	place-items: center;
	color: #fff;
	box-shadow: 0 4px 12px rgba(37,99,235,.4);
}

.sidebar-brand-text {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.1;
}

.sidebar-brand-sub {
	font-size: 11px;
	color: var(--sidebar-text-mute);
}

.sidebar-section {
	padding: 18px 20px 8px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--sidebar-text-mute);
}

.sidebar-nav {
	list-style: none;
	padding: 0 12px;
	margin: 0;
}

	.sidebar-nav .nav-link {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 10px 14px;
		margin: 2px 0;
		border-radius: var(--radius-md);
		color: var(--sidebar-text);
		font-size: 13.5px;
		font-weight: 500;
		text-decoration: none !important;
		transition: background .15s ease, color .15s ease, transform .15s ease;
	}

		.sidebar-nav .nav-link i {
			width: 18px;
			text-align: center;
			font-size: 14px;
			opacity: .8;
		}

		.sidebar-nav .nav-link:hover {
			background: var(--sidebar-hover);
			color: #fff;
			transform: translateX(2px);
		}

		.sidebar-nav .nav-link.active {
			background: var(--sidebar-active-bg);
			color: var(--sidebar-active-fg);
			box-shadow: 0 4px 12px rgba(37,99,235,.35);
		}

			.sidebar-nav .nav-link.active i {
				opacity: 1;
			}

/* -----------------------------------------------------------------------------
   Topbar
----------------------------------------------------------------------------- */
.topbar {
	position: fixed;
	top: 0;
	right: 0;
	left: var(--sidebar-width);
	height: var(--topbar-height);
	background: var(--bg-surface);
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	padding: 0 24px;
	gap: 16px;
	z-index: 1030;
	backdrop-filter: blur(8px);
}

.topbar-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
}

.topbar-spacer {
	flex: 1;
}

.topbar-btn {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: var(--radius-md);
	background: transparent;
	border: 0;
	color: var(--text-muted);
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}

	.topbar-btn:hover {
		background: var(--bg-hover);
		color: var(--text);
	}

.user-chip {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 12px 6px 6px;
	border-radius: 999px;
	background: var(--bg-muted);
	border: 1px solid var(--border);
	cursor: pointer;
	transition: background .15s ease;
}

	.user-chip:hover {
		background: var(--bg-hover);
	}

.user-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
	color: #fff;
	font-weight: 600;
	font-size: 12px;
}

.user-name-line {
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.1;
}

.user-role-line {
	font-size: 11px;
	color: var(--text-faint);
}

.menu-toggle {
	display: none;
	width: 38px;
	height: 38px;
	border: 0;
	background: transparent;
	color: var(--text);
	border-radius: var(--radius-md);
}

	.menu-toggle:hover {
		background: var(--bg-hover);
	}

/* -----------------------------------------------------------------------------
   Main content area
----------------------------------------------------------------------------- */
.main {
	margin-left: var(--sidebar-width);
	padding-top: var(--topbar-height);
	min-height: 100vh;
}

.main-container {
	padding: 24px;
	max-width: 1600px;
	margin: 0 auto;
}

.backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(15,23,42,.5);
	z-index: 1035;
	backdrop-filter: blur(2px);
}

/* -----------------------------------------------------------------------------
   Page header
----------------------------------------------------------------------------- */
.page-header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.page-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--text);
	margin: 0;
}

.page-subtitle {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 2px;
}

.page-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.breadcrumb-nav {
	font-size: 12px;
	color: var(--text-faint);
	margin-bottom: 4px;
}

	.breadcrumb-nav a {
		color: var(--text-muted);
	}

	.breadcrumb-nav .sep {
		margin: 0 6px;
		opacity: .5;
	}

/* -----------------------------------------------------------------------------
   Cards
----------------------------------------------------------------------------- */
.card {
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.card-header {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.card-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	margin: 0;
}

.card-body {
	padding: 20px;
}

.card-footer {
	padding: 14px 20px;
	border-top: 1px solid var(--border);
	background: var(--bg-muted);
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Stat cards */
.stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin-bottom: 24px;
}

.stat-card {
	position: relative;
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 18px 20px;
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform .15s ease, box-shadow .15s ease;
}

	.stat-card::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 3px;
		background: var(--accent, var(--brand-500));
	}

	.stat-card:hover {
		transform: translateY(-2px);
		box-shadow: var(--shadow-md);
	}

.stat-label {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: .05em;
	font-weight: 600;
}

.stat-value {
	font-size: 28px;
	font-weight: 700;
	margin-top: 4px;
	color: var(--text);
	font-variant-numeric: tabular-nums;
}

.stat-meta {
	font-size: 12px;
	color: var(--text-faint);
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.stat-card.accent-success {
	--accent: var(--success-500);
}

.stat-card.accent-warning {
	--accent: var(--warning-500);
}

.stat-card.accent-danger {
	--accent: var(--danger-500);
}

/* -----------------------------------------------------------------------------
   Buttons (Bootstrap overrides — keep b5 classes working)
----------------------------------------------------------------------------- */
.btn {
	border-radius: var(--radius-md);
	font-weight: 500;
	font-size: 13.5px;
	padding: 8px 16px;
	transition: all .15s ease;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

	.btn:focus-visible {
		outline: none;
		box-shadow: 0 0 0 3px rgba(59,130,246,.3);
	}

.btn-primary {
	background: var(--brand-600);
	border-color: var(--brand-600);
	color: #fff;
}

	.btn-primary:hover {
		background: var(--brand-700);
		border-color: var(--brand-700);
	}

.btn-outline-secondary {
	background: transparent;
	color: var(--text-muted);
	border-color: var(--border-strong);
}

	.btn-outline-secondary:hover {
		background: var(--bg-hover);
		color: var(--text);
		border-color: var(--border-strong);
	}

.btn-success {
	background: var(--success-600);
	border-color: var(--success-600);
	color: #fff;
}

	.btn-success:hover {
		background: var(--success-500);
	}

.btn-danger {
	background: var(--danger-600);
	border-color: var(--danger-600);
	color: #fff;
}

	.btn-danger:hover {
		background: var(--danger-500);
	}

.btn-warning {
	background: var(--warning-500);
	border-color: var(--warning-500);
	color: #1f2937;
}

.btn-sm {
	padding: 5px 11px;
	font-size: 12.5px;
	border-radius: var(--radius-sm);
}

/* Icon-only button */
.btn-icon {
	padding: 6px 8px;
}

/* -----------------------------------------------------------------------------
   Forms
----------------------------------------------------------------------------- */
.form-label {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 6px;
	display: block;
}

.form-help {
	font-size: 11.5px;
	color: var(--text-faint);
	margin-top: 4px;
}

.form-control, .form-select {
	background: var(--bg-surface);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	color: var(--text);
	font-size: 13.5px;
	padding: 8px 12px;
	transition: border-color .15s ease, box-shadow .15s ease;
}

	.form-control:focus, .form-select:focus {
		border-color: var(--brand-500);
		box-shadow: 0 0 0 3px rgba(59,130,246,.18);
		outline: none;
	}

	.form-control::placeholder {
		color: var(--text-faint);
	}

	.form-control.is-invalid, .form-select.is-invalid {
		border-color: var(--danger-500);
	}

.invalid-feedback, .text-danger {
	font-size: 12px;
	color: var(--danger-600) !important;
}

.form-check-input {
	width: 16px;
	height: 16px;
	border: 1px solid var(--border-strong);
}

	.form-check-input:checked {
		background-color: var(--brand-600);
		border-color: var(--brand-600);
	}

/* Input-group with leading icon */
.input-icon-wrap {
	position: relative;
}

	.input-icon-wrap .form-control {
		padding-left: 38px;
	}

	.input-icon-wrap > i {
		position: absolute;
		left: 12px;
		top: 50%;
		transform: translateY(-50%);
		color: var(--text-faint);
		font-size: 14px;
	}

/* -----------------------------------------------------------------------------
   Tables
----------------------------------------------------------------------------- */
.table-wrap {
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.table-toolbar {
	padding: 14px 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--border);
	background: var(--bg-muted);
}

.table-scroll {
	overflow-x: auto;
}

.table {
	width: 100%;
	margin: 0;
	color: var(--text);
	border-collapse: collapse;
	font-size: 13.5px;
}

	.table thead th {
		background: var(--bg-muted);
		color: var(--text-muted);
		font-size: 11.5px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: .04em;
		padding: 12px 14px;
		border-bottom: 1px solid var(--border);
		white-space: nowrap;
		text-align: left;
	}

	.table tbody td {
		padding: 12px 14px;
		border-bottom: 1px solid var(--border);
		vertical-align: middle;
	}

	.table tbody tr:last-child td {
		border-bottom: 0;
	}

	.table tbody tr:hover {
		background: var(--bg-hover);
	}

	.table .actions {
		white-space: nowrap;
	}

		.table .actions .btn {
			padding: 4px 8px;
			font-size: 12px;
		}

/* -----------------------------------------------------------------------------
   Badges & status pills
----------------------------------------------------------------------------- */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 9px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.4;
	border: 1px solid transparent;
}

.badge-success {
	background: #dcfce7;
	color: #166534;
	border-color: #bbf7d0;
}

.badge-danger {
	background: #fee2e2;
	color: #991b1b;
	border-color: #fecaca;
}

.badge-warning {
	background: #fef3c7;
	color: #92400e;
	border-color: #fde68a;
}

.badge-info {
	background: var(--brand-50);
	color: var(--brand-700);
	border-color: var(--brand-100);
}

.badge-muted {
	background: var(--bg-muted);
	color: var(--text-muted);
	border-color: var(--border);
}

[data-theme="dark"] .badge-success {
	background: rgba(16,185,129,.15);
	color: #6ee7b7;
	border-color: rgba(16,185,129,.3);
}

[data-theme="dark"] .badge-danger {
	background: rgba(239,68,68,.15);
	color: #fca5a5;
	border-color: rgba(239,68,68,.3);
}

[data-theme="dark"] .badge-warning {
	background: rgba(245,158,11,.15);
	color: #fcd34d;
	border-color: rgba(245,158,11,.3);
}

[data-theme="dark"] .badge-info {
	background: rgba(59,130,246,.15);
	color: #93c5fd;
	border-color: rgba(59,130,246,.3);
}

/* -----------------------------------------------------------------------------
   Alerts
----------------------------------------------------------------------------- */
.alert {
	border-radius: var(--radius-md);
	padding: 12px 16px;
	border: 1px solid transparent;
	font-size: 13.5px;
	margin-bottom: 16px;
}

.alert-success {
	background: #ecfdf5;
	color: #065f46;
	border-color: #a7f3d0;
}

.alert-danger {
	background: #fef2f2;
	color: #7f1d1d;
	border-color: #fecaca;
}

.alert-warning {
	background: #fffbeb;
	color: #78350f;
	border-color: #fde68a;
}

.alert-info {
	background: var(--brand-50);
	color: var(--brand-700);
	border-color: var(--brand-100);
}

[data-theme="dark"] .alert-success {
	background: rgba(16,185,129,.1);
	color: #6ee7b7;
	border-color: rgba(16,185,129,.3);
}

[data-theme="dark"] .alert-danger {
	background: rgba(239,68,68,.1);
	color: #fca5a5;
	border-color: rgba(239,68,68,.3);
}

[data-theme="dark"] .alert-warning {
	background: rgba(245,158,11,.1);
	color: #fcd34d;
	border-color: rgba(245,158,11,.3);
}

[data-theme="dark"] .alert-info {
	background: rgba(59,130,246,.1);
	color: #93c5fd;
	border-color: rgba(59,130,246,.3);
}

/* -----------------------------------------------------------------------------
   LOGIN PAGE
----------------------------------------------------------------------------- */
.auth-layout {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	background: var(--bg-app);
	position: relative;
	overflow: hidden;
}

@media (min-width: 992px) {
	.auth-layout {
		grid-template-columns: 1.1fr 1fr;
	}
}

.auth-hero {
	display: none;
	position: relative;
	background: radial-gradient(circle at 30% 20%, rgba(59,130,246,.4), transparent 50%), radial-gradient(circle at 80% 80%, rgba(99,102,241,.4), transparent 50%), #0f172a;
	color: #fff;
	padding: 48px;
	overflow: hidden;
}

@media (min-width: 992px) {
	.auth-hero {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
}

.auth-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.auth-hero-brand {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 600;
}

.auth-hero-content {
	position: relative;
	max-width: 480px;
}

	.auth-hero-content h1 {
		font-size: 36px;
		font-weight: 700;
		line-height: 1.15;
		margin-bottom: 16px;
		background: linear-gradient(135deg, #fff, #cbd5e1);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}

	.auth-hero-content p {
		font-size: 15px;
		color: rgba(255,255,255,.7);
		line-height: 1.6;
	}

.auth-hero-foot {
	position: relative;
	font-size: 12px;
	color: rgba(255,255,255,.5);
}

.auth-form-side {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 20px;
	background: var(--bg-surface);
}

.auth-card {
	width: 100%;
	max-width: 420px;
}

	.auth-card h2 {
		font-size: 24px;
		font-weight: 700;
		margin-bottom: 6px;
	}

	.auth-card .lead {
		color: var(--text-muted);
		margin-bottom: 28px;
		font-size: 14px;
	}

/* -----------------------------------------------------------------------------
   Empty state
----------------------------------------------------------------------------- */
.empty-state {
	text-align: center;
	padding: 56px 20px;
	color: var(--text-muted);
}

	.empty-state i {
		font-size: 36px;
		color: var(--text-faint);
		margin-bottom: 12px;
		display: block;
	}

	.empty-state h4 {
		font-size: 16px;
		font-weight: 600;
		color: var(--text);
		margin-bottom: 4px;
	}

	.empty-state p {
		font-size: 13px;
		color: var(--text-faint);
		margin: 0;
	}

/* -----------------------------------------------------------------------------
   Utilities
----------------------------------------------------------------------------- */
.section-divider {
	height: 1px;
	background: var(--border);
	margin: 24px 0;
}

.kbd {
	display: inline-block;
	padding: 2px 6px;
	border: 1px solid var(--border-strong);
	border-radius: 4px;
	background: var(--bg-muted);
	font-family: var(--font-mono);
	font-size: 11px;
	line-height: 1;
	color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   Responsive breakpoints
----------------------------------------------------------------------------- */

/* tablet & below — collapse sidebar */
@media (max-width: 991.98px) {
	.sidebar {
		transform: translateX(-100%);
		box-shadow: 4px 0 20px rgba(0,0,0,.15);
	}

		.sidebar.open {
			transform: translateX(0);
		}

	.topbar {
		left: 0;
	}

	.main {
		margin-left: 0;
	}

	.menu-toggle {
		display: grid;
		place-items: center;
	}

	.backdrop.show {
		display: block;
	}
}

/* phone */
@media (max-width: 575.98px) {
	.main-container {
		padding: 16px;
	}

	.page-title {
		font-size: 18px;
	}

	.stat-value {
		font-size: 22px;
	}

	.topbar {
		padding: 0 14px;
		gap: 8px;
	}

	.user-name-line, .user-role-line {
		display: none;
	}

	.user-chip {
		padding: 4px;
	}

	.topbar-title {
		font-size: 14px;
	}

	.table thead th, .table tbody td {
		padding: 10px 12px;
	}

	.card-body {
		padding: 16px;
	}

	.auth-form-side {
		padding: 24px 16px;
	}
}

/* print */
@media print {
	.sidebar, .topbar, .menu-toggle, .page-actions, .table-toolbar {
		display: none !important;
	}

	.main {
		margin-left: 0;
		padding-top: 0;
	}

	.main-container {
		padding: 0;
	}

	.card {
		box-shadow: none;
		border: 1px solid #ddd;
		break-inside: avoid;
	}
}
