:root {
	color-scheme: light dark;
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
	--font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

	--bg-canvas: #f8fafc;
	--bg-surface: #ffffff;
	--bg-surface-subtle: #f1f5f9;
	--bg-surface-hover: #f8fafc;
	--bg-elevated: #ffffff;

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

	--border-default: #e2e8f0;
	--border-strong: #cbd5e1;
	--border-focus: #4f46e5;

	--brand: #4f46e5;
	--brand-hover: #4338ca;
	--brand-subtle: #eef2ff;
	--brand-text: #4338ca;

	--success-bg: #ecfdf5;
	--success-text: #065f46;
	--success-border: #a7f3d0;
	--success-accent: #10b981;

	--warning-bg: #fffbeb;
	--warning-text: #92400e;
	--warning-border: #fde68a;
	--warning-accent: #f59e0b;

	--danger-bg: #fef2f2;
	--danger-text: #991b1b;
	--danger-border: #fecaca;
	--danger-accent: #ef4444;

	--info-bg: #f0f9ff;
	--info-text: #075985;
	--info-border: #bae6fd;
	--info-accent: #0284c7;

	--purple-bg: #faf5ff;
	--purple-text: #6b21a8;
	--purple-border: #e9d5ff;
	--purple-accent: #9333ea;

	--shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
	--shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
	--shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.09), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.06);

	--radius-sm: 4px;
	--radius-md: 6px;
	--radius-lg: 10px;
	--radius-xl: 14px;
	--radius-full: 9999px;

	--ring-focus: 0 0 0 3px rgba(79, 70, 229, 0.18);
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg-canvas: #0b0f19;
		--bg-surface: #111827;
		--bg-surface-subtle: #1e293b;
		--bg-surface-hover: #1e293b;
		--bg-elevated: #1a2234;

		--text-primary: #f8fafc;
		--text-secondary: #cbd5e1;
		--text-muted: #94a3b8;
		--text-subtle: #64748b;

		--border-default: #1f2937;
		--border-strong: #374151;
		--border-focus: #818cf8;

		--brand: #6366f1;
		--brand-hover: #818cf8;
		--brand-subtle: rgba(99, 102, 241, 0.15);
		--brand-text: #a5b4fc;

		--success-bg: rgba(16, 185, 129, 0.15);
		--success-text: #6ee7b7;
		--success-border: rgba(16, 185, 129, 0.3);
		--success-accent: #34d399;

		--warning-bg: rgba(245, 158, 11, 0.15);
		--warning-text: #fcd34d;
		--warning-border: rgba(245, 158, 11, 0.3);
		--warning-accent: #fbbf24;

		--danger-bg: rgba(239, 68, 68, 0.15);
		--danger-text: #fca5a5;
		--danger-border: rgba(239, 68, 68, 0.3);
		--danger-accent: #f87171;

		--info-bg: rgba(2, 132, 199, 0.15);
		--info-text: #7dd3fc;
		--info-border: rgba(2, 132, 199, 0.3);
		--info-accent: #38bdf8;

		--purple-bg: rgba(147, 51, 234, 0.15);
		--purple-text: #d8b4fe;
		--purple-border: rgba(147, 51, 234, 0.3);
		--purple-accent: #c084fc;

		--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 -1px rgba(0, 0, 0, 0.45);
		--shadow-lg: 0 10px 18px -3px rgba(0, 0, 0, 0.5);
		--shadow-xl: 0 20px 28px -5px rgba(0, 0, 0, 0.6);

		--ring-focus: 0 0 0 3px rgba(129, 140, 248, 0.25);
	}
}

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

body {
	background-color: var(--bg-canvas);
	color: var(--text-primary);
	font-family: var(--font-sans);
	font-size: 13.5px;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
}

/* Layout */
.app-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.top-nav {
	height: 56px;
	background: var(--bg-surface);
	border-bottom: 1px solid var(--border-default);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 24px;
	position: sticky;
	top: 0;
	z-index: 30;
}

.brand-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: -0.01em;
	color: var(--text-primary);
}

.brand-icon {
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, var(--brand), #818cf8);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-md);
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 2px 4px rgba(79, 70, 229, 0.25);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.main-content {
	flex: 1;
	padding: 20px 24px 40px;
	max-width: 1680px;
	width: 100%;
	margin: 0 auto;
}

/* Header & Metric Strip */
.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 18px;
}

.header-titles h1 {
	font-size: 20px;
	font-weight: 650;
	letter-spacing: -0.02em;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-titles p {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 2px;
}

/* Stage Count Summary KPI Strip */
.stage-kpi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
	gap: 10px;
	margin-bottom: 20px;
}

.kpi-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-lg);
	padding: 10px 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.15s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

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

.kpi-card.active {
	border-color: var(--brand);
	background: var(--brand-subtle);
}

.kpi-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.kpi-stage-name {
	font-size: 11.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 5px;
}

.kpi-indicator-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
}

.kpi-count {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-primary);
	font-variant-numeric: tabular-nums;
	line-height: 1.1;
}

.kpi-meta {
	font-size: 11px;
	color: var(--text-subtle);
	margin-top: 2px;
}

/* Toolbar & Filters */
.controls-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 18px;
	background: var(--bg-surface);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-lg);
	padding: 8px 12px;
}

.controls-left, .controls-right {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

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

.search-box input {
	width: 100%;
	height: 32px;
	padding: 0 10px 0 30px;
	font-size: 13px;
	border: 1px solid var(--border-default);
	border-radius: var(--radius-md);
	background: var(--bg-canvas);
	color: var(--text-primary);
	outline: none;
	transition: all 0.15s ease;
}

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

.search-icon-svg {
	position: absolute;
	left: 9px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-subtle);
	pointer-events: none;
	width: 14px;
	height: 14px;
}

.select-filter {
	height: 32px;
	padding: 0 24px 0 9px;
	font-size: 12.5px;
	border: 1px solid var(--border-default);
	border-radius: var(--radius-md);
	background: var(--bg-canvas);
	color: var(--text-primary);
	outline: none;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 7px center;
}

.select-filter:focus {
	border-color: var(--brand);
	box-shadow: var(--ring-focus);
}

/* View Switcher */
.view-tabs {
	display: inline-flex;
	background: var(--bg-surface-subtle);
	padding: 2px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-default);
}

.view-tab-btn {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	border: none;
	background: transparent;
	color: var(--text-muted);
	border-radius: calc(var(--radius-md) - 2px);
	cursor: pointer;
	transition: all 0.1s ease;
}

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

.view-tab-btn.active {
	background: var(--bg-surface);
	color: var(--text-primary);
	box-shadow: var(--shadow-xs);
	font-weight: 600;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 32px;
	padding: 0 12px;
	font-size: 13px;
	font-weight: 500;
	border-radius: var(--radius-md);
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.15s ease;
	white-space: nowrap;
	text-decoration: none;
}

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

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

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

.btn-secondary:hover {
	background: var(--bg-surface-subtle);
	border-color: var(--border-strong);
}

.btn-ghost {
	background: transparent;
	color: var(--text-secondary);
	padding: 0 8px;
}

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

.btn-danger {
	background: var(--danger-bg);
	border-color: var(--danger-border);
	color: var(--danger-text);
}

.btn-danger:hover {
	background: var(--danger-accent);
	color: #fff;
}

.btn-sm {
	height: 26px;
	padding: 0 8px;
	font-size: 12px;
}

/* Kanban Board Layout */
.kanban-board {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 16px;
	min-height: calc(100vh - 280px);
	align-items: flex-start;
}

.kanban-column {
	flex: 0 0 290px;
	width: 290px;
	background: var(--bg-surface-subtle);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 240px);
	transition: border-color 0.15s ease;
}

.kanban-column.drag-over {
	border-color: var(--brand);
	background: var(--brand-subtle);
}

.kanban-col-header {
	padding: 10px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--border-default);
	background: var(--bg-surface);
	border-top-left-radius: calc(var(--radius-lg) - 1px);
	border-top-right-radius: calc(var(--radius-lg) - 1px);
}

.col-header-left {
	display: flex;
	align-items: center;
	gap: 7px;
}

.col-title {
	font-size: 12.5px;
	font-weight: 650;
	color: var(--text-primary);
	letter-spacing: -0.01em;
}

.col-badge-count {
	font-size: 11px;
	font-weight: 600;
	padding: 1px 7px;
	border-radius: var(--radius-full);
	background: var(--bg-surface-subtle);
	color: var(--text-secondary);
	border: 1px solid var(--border-default);
	font-variant-numeric: tabular-nums;
}

.kanban-col-cards {
	padding: 10px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	min-height: 120px;
}

/* Kanban Card */
.job-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-md);
	padding: 12px;
	box-shadow: var(--shadow-xs);
	cursor: grab;
	transition: all 0.15s ease;
	position: relative;
	user-select: none;
}

.job-card:hover {
	border-color: var(--border-strong);
	box-shadow: var(--shadow-sm);
	transform: translateY(-1px);
}

.job-card.dragging {
	opacity: 0.4;
	transform: scale(0.98);
}

.card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 6px;
}

.card-company {
	font-size: 13.5px;
	font-weight: 650;
	color: var(--text-primary);
	line-height: 1.2;
}

.card-role {
	font-size: 12.5px;
	color: var(--text-secondary);
	margin-bottom: 8px;
	line-height: 1.3;
}

.card-meta-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 8px;
	font-size: 11.5px;
	color: var(--text-muted);
}

.meta-item {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 10px;
}

.tag-pill {
	font-size: 10.5px;
	padding: 1px 6px;
	border-radius: var(--radius-sm);
	background: var(--bg-surface-subtle);
	color: var(--text-muted);
	border: 1px solid var(--border-default);
}

.card-notes-preview {
	background: var(--bg-canvas);
	border-left: 2px solid var(--brand);
	padding: 6px 8px;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 11.5px;
	color: var(--text-secondary);
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 8px;
	border-top: 1px solid var(--border-default);
	font-size: 11.5px;
}

.card-quick-actions {
	display: flex;
	align-items: center;
	gap: 4px;
}

.stage-move-btn {
	width: 22px;
	height: 22px;
	border: 1px solid var(--border-default);
	border-radius: var(--radius-sm);
	background: var(--bg-surface-subtle);
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 11px;
}

.stage-move-btn:hover:not(:disabled) {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
}

.stage-move-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* Priority & Status Badges */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 500;
	padding: 1px 6px;
	border-radius: var(--radius-sm);
	white-space: nowrap;
}

.badge-high {
	background: var(--danger-bg);
	color: var(--danger-text);
	border: 1px solid var(--danger-border);
}

.badge-medium {
	background: var(--warning-bg);
	color: var(--warning-text);
	border: 1px solid var(--warning-border);
}

.badge-low {
	background: var(--bg-surface-subtle);
	color: var(--text-muted);
	border: 1px solid var(--border-default);
}

.badge-offer {
	background: var(--success-bg);
	color: var(--success-text);
	border: 1px solid var(--success-border);
	font-weight: 600;
}

/* Table View */
.table-container {
	background: var(--bg-surface);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-xs);
}

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

.custom-table th {
	background: var(--bg-surface-subtle);
	padding: 10px 14px;
	font-size: 11.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border-default);
}

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

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

/* Slide-over Drawer for Notes & Details */
.drawer-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.4);
	backdrop-filter: blur(2px);
	z-index: 50;
	display: flex;
	justify-content: flex-end;
}

.drawer-content {
	width: 100%;
	max-width: 560px;
	background: var(--bg-surface);
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-xl);
	border-left: 1px solid var(--border-default);
	animation: slideInRight 0.22s ease-out;
}

@keyframes slideInRight {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

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

.drawer-title-wrap h2 {
	font-size: 17px;
	font-weight: 650;
	color: var(--text-primary);
}

.drawer-title-wrap p {
	font-size: 12.5px;
	color: var(--text-muted);
}

.drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.drawer-footer {
	padding: 14px 20px;
	border-top: 1px solid var(--border-default);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--bg-surface-subtle);
}

/* Notes Section in Drawer */
.notes-section-card {
	background: var(--bg-canvas);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-md);
	padding: 14px;
}

.notes-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.notes-section-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 6px;
}

.notes-timeline {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 12px;
}

.note-item {
	background: var(--bg-surface);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-md);
	padding: 10px 12px;
	position: relative;
}

.note-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
	font-size: 11px;
	color: var(--text-subtle);
}

.note-author-type {
	font-weight: 600;
	color: var(--brand-text);
}

.note-content {
	font-size: 12.5px;
	color: var(--text-secondary);
	white-space: pre-wrap;
	line-height: 1.45;
}

.add-note-box {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
}

.add-note-textarea {
	width: 100%;
	padding: 8px 10px;
	font-size: 13px;
	font-family: inherit;
	border: 1px solid var(--border-default);
	border-radius: var(--radius-md);
	background: var(--bg-surface);
	color: var(--text-primary);
	min-height: 70px;
	resize: vertical;
	outline: none;
}

.add-note-textarea:focus {
	border-color: var(--brand);
	box-shadow: var(--ring-focus);
}

/* Modal Dialog */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	backdrop-filter: blur(2px);
	z-index: 60;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.modal-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-default);
	border-radius: var(--radius-xl);
	width: 100%;
	max-width: 580px;
	box-shadow: var(--shadow-xl);
	overflow: hidden;
	animation: modalEnter 0.18s ease-out;
}

@keyframes modalEnter {
	from { opacity: 0; transform: scale(0.97) translateY(6px); }
	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-header h3 {
	font-size: 16px;
	font-weight: 650;
	color: var(--text-primary);
}

.modal-body {
	padding: 20px;
	max-height: 70vh;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

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

/* Form Controls */
.form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

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

.form-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.form-row-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
}

.input-text, .input-select, .input-textarea {
	width: 100%;
	height: 34px;
	padding: 0 10px;
	font-size: 13px;
	font-family: inherit;
	border: 1px solid var(--border-default);
	border-radius: var(--radius-md);
	background: var(--bg-surface);
	color: var(--text-primary);
	outline: none;
	transition: all 0.15s ease;
}

.input-textarea {
	height: auto;
	padding: 8px 10px;
	resize: vertical;
}

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

/* Key Stats / Analytics Banner */
.analytics-banner {
	background: linear-gradient(135deg, var(--bg-surface), var(--bg-surface-subtle));
	border: 1px solid var(--border-default);
	border-radius: var(--radius-lg);
	padding: 16px 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.progress-funnel-bar {
	display: flex;
	height: 10px;
	border-radius: var(--radius-full);
	overflow: hidden;
	width: 100%;
	background: var(--border-default);
	margin-top: 8px;
}

.funnel-seg {
	height: 100%;
	transition: width 0.3s ease;
}

/* Empty State */
.empty-placeholder {
	padding: 40px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
}

.empty-placeholder svg {
	color: var(--text-subtle);
	margin-bottom: 12px;
}

/* Utilities */
.text-brand { color: var(--brand); }
.text-success { color: var(--success-accent); }
.text-warning { color: var(--warning-accent); }
.text-muted { color: var(--text-muted); }
.font-mono { font-family: var(--font-mono); }

/* Quick Close Button */
.close-btn {
	background: transparent;
	border: none;
	color: var(--text-muted);
	cursor: pointer;
	padding: 4px;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
}

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

@media (max-width: 768px) {
	.top-nav { padding: 0 14px; }
	.main-content { padding: 14px; }
	.form-row-2, .form-row-3 { grid-template-columns: 1fr; }
	.kanban-column { flex: 0 0 260px; }
	.search-box { width: 100%; }
}
