/* LoveKin Design System */
.lk-root {
	--lk-font: "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Helvetica Neue", sans-serif;
	--lk-primary: #3b82f6;
	--lk-success: #10b981;
	--lk-warning: #f59e0b;
	--lk-danger: #ef4444;
	--lk-purple: #8b5cf6;
	--lk-bg: #f5f7fb;
	--lk-card: #ffffff;
	--lk-text: #0f172a;
	--lk-muted: #64748b;
	--lk-border: #e2e8f0;
	--lk-shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
	--lk-shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
	--lk-radius-sm: 4px;
	--lk-radius-md: 8px;
	--lk-radius-lg: 12px;
	--lk-radius-full: 9999px;
	--lk-space-1: 4px;
	--lk-space-2: 8px;
	--lk-space-3: 12px;
	--lk-space-4: 16px;
	--lk-space-5: 24px;
	--lk-space-6: 32px;
	--lk-space-7: 48px;
}

.lk-dashboard,
.lk-profile,
.lk-report,
.lk-card,
.lk-assessment {
	font-family: var(--lk-font);
	color: var(--lk-text);
}

.lk-dashboard {
	background: linear-gradient(120deg, #f8fafc 0%, #eef2ff 100%);
	padding: var(--lk-space-6);
	border-radius: var(--lk-radius-lg);
}

.lk-dashboard-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lk-space-5);
	margin-bottom: var(--lk-space-5);
}

.lk-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 12px;
	color: var(--lk-muted);
}

.lk-title {
	margin: 0;
	font-size: 28px;
}

.lk-quick-actions {
	display: flex;
	gap: var(--lk-space-3);
}

.lk-menu-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-full);
	background: #fff;
	color: var(--lk-text);
	font-weight: 600;
}

.lk-dashboard-tabs-wrap {
	margin-bottom: var(--lk-space-5);
}

.lk-dashboard-tabs {
	display: flex;
	gap: var(--lk-space-2);
	flex-wrap: wrap;
	margin-bottom: 0;
}

.lk-tab {
	padding: 10px 16px;
	border-radius: var(--lk-radius-full);
	background: rgba(255, 255, 255, 0.7);
	color: var(--lk-muted);
	text-decoration: none;
	font-weight: 600;
}

.lk-tab.is-active {
	background: var(--lk-card);
	color: var(--lk-text);
	box-shadow: var(--lk-shadow-sm);
}

.lk-card {
	background: var(--lk-card);
	border-radius: var(--lk-radius-lg);
	padding: var(--lk-space-5);
	box-shadow: var(--lk-shadow-sm);
	margin-bottom: var(--lk-space-5);
}

.lk-grid {
	display: grid;
	gap: var(--lk-space-5);
}

.lk-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--lk-space-4);
}

.lk-course-grid,
.lk-document-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--lk-space-4);
}

.lk-course-card,
.lk-document-card {
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-md);
	padding: var(--lk-space-4);
	background: #fff;
	box-shadow: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lk-course-card {
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.lk-course-card:hover,
.lk-document-card:hover {
	box-shadow: var(--lk-shadow-sm);
	transform: translateY(-2px);
}

.lk-course-actions {
	display: grid;
	gap: var(--lk-space-2);
	margin-top: auto;
}

.lk-course-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	gap: var(--lk-space-3);
}

.lk-course-body {
	display: flex;
	flex-direction: column;
	gap: var(--lk-space-2);
	flex: 1;
}

.lk-course-title {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: normal;
	overflow-wrap: break-word;
	hyphens: none;
}

.lk-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: var(--lk-radius-full);
	font-size: 12px;
	font-weight: 600;
	width: fit-content;
}

.lk-status-pill--ready {
	background: rgba(16, 185, 129, 0.12);
	color: var(--lk-success);
}

.lk-status-pill--assessment-open {
	background: rgba(16, 185, 129, 0.12);
	color: var(--lk-success);
}

.lk-status-pill--assessment-pending {
	background: rgba(59, 130, 246, 0.12);
	color: #1d4ed8;
}

.lk-course-desc {
	color: var(--lk-muted);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: normal;
	overflow-wrap: break-word;
	hyphens: none;
}

.lk-course-metrics {
	font-size: 13px;
	color: var(--lk-muted);
	padding-top: var(--lk-space-1);
}

.lk-button--icon {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.lk-course-actions .lk-button {
	width: 100%;
	min-height: 44px;
}

.lk-course-actions .lk-button + .lk-button {
	margin-top: 0;
}

.lk-course-actions .lk-button--ghost {
	background: #fff;
}

.lk-button:focus-visible,
.lk-tab:focus-visible,
.lk-course-card:focus-within {
	outline: 2px solid rgba(59, 130, 246, 0.4);
	outline-offset: 2px;
}

@media (max-width: 1024px) {
	.lk-course-grid {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}
}

@media (max-width: 640px) {
	.lk-course-grid {
		grid-template-columns: 1fr;
	}
}

.lk-button {

	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: var(--lk-radius-full);
	border: none;
	background: var(--lk-primary, #3b82f6);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lk-button:hover {
	transform: translateY(-1px);
	box-shadow: var(--lk-shadow-sm);
}

.lk-button--ghost {
	background: transparent;
	border: 1px solid var(--lk-primary, #3b82f6);
	color: var(--lk-primary, #3b82f6);
}

.lk-button--ghost:hover {
	background: rgba(59, 130, 246, 0.08);
	border-color: var(--lk-primary);
}

.lk-button--danger {
	background: var(--lk-danger);
}

.lk-badge {
	display: inline-flex;
	padding: 4px 10px;
	border-radius: var(--lk-radius-full);
	font-size: 12px;
	font-weight: 600;
	background: #e2e8f0;
	color: var(--lk-text);
}

.lk-meta {
	font-size: 12px;
	color: var(--lk-muted);
}

.lk-badge--primary {
	background: rgba(59, 130, 246, 0.1);
	color: var(--lk-primary);
}

.lk-badge--success {
	background: rgba(16, 185, 129, 0.1);
	color: var(--lk-success);
}

.lk-badge--pending {
	background: rgba(245, 158, 11, 0.1);
	color: var(--lk-warning);
}

.lk-badge--approved {
	background: rgba(16, 185, 129, 0.1);
	color: var(--lk-success);
}

.lk-badge--rejected {
	background: rgba(239, 68, 68, 0.1);
	color: var(--lk-danger);
}

.lk-avatar {
	width: 64px;
	height: 64px;
	border-radius: var(--lk-radius-full);
	background: #e2e8f0;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 24px;
	color: var(--lk-primary);
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.lk-avatar--hero {
	width: 124px;
	height: 124px;
	font-size: 42px;
	box-shadow:
		0 10px 30px rgba(59, 130, 246, 0.18),
		inset 0 0 0 4px #ffffff;
}

.lk-profile-card {
	display: flex;
	gap: var(--lk-space-3);
	align-items: center;
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-md);
	padding: var(--lk-space-3);
}

.lk-form input:not([type="checkbox"]):not([type="radio"]),
.lk-form textarea,
.lk-form select,
.lk-form-grid input:not([type="checkbox"]):not([type="radio"]),
.lk-form-grid select,
.lk-upload input:not([type="checkbox"]):not([type="radio"]),
.lk-upload select,
.lk-upload textarea {
	width: 100%;
	padding: 10px 12px;
	border-radius: var(--lk-radius-md);
	border: 1px solid var(--lk-border);
	margin-bottom: var(--lk-space-3);
}

.lk-form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--lk-space-3);
}

.lk-table {
	width: 100%;
	border-collapse: collapse;
}

.lk-table th,
.lk-table td {
	text-align: left;
	padding: var(--lk-space-3);
	border-bottom: 1px solid var(--lk-border);
}

.lk-table th {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lk-muted);
}

.lk-table tbody tr:nth-child(odd) {
	background: #f8fafc;
}

.lk-table tbody tr:hover {
	background: #eef2ff;
}

.lk-report-hero {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--lk-space-4);
	margin-bottom: var(--lk-space-5);
}

.lk-hero-card {
	background: #fff;
	border-radius: var(--lk-radius-md);
	padding: var(--lk-space-4);
	box-shadow: var(--lk-shadow-sm);
}

.lk-hero-card--stat {
	display: flex;
	flex-direction: column;
	gap: var(--lk-space-3);
	min-height: 120px;
}

.lk-hero-head {
	display: flex;
	align-items: center;
	gap: var(--lk-space-2);
}

.lk-hero-head h3 {
	margin: 0;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lk-muted);
}

.lk-hero-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(59, 130, 246, 0.12);
	color: var(--lk-primary);
	font-size: 18px;
}

.lk-hero-body {
	display: flex;
	align-items: baseline;
	gap: var(--lk-space-2);
	flex-wrap: wrap;
}

.lk-hero-value {
	font-size: 28px;
	font-weight: 700;
}

.lk-report-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--lk-space-4);
	margin-bottom: var(--lk-space-5);
}

.lk-score-pill {
	display: inline-flex;
	padding: 4px 10px;
	border-radius: var(--lk-radius-full);
	background: rgba(15, 23, 42, 0.05);
	color: var(--lk-text);
	border: 1px solid rgba(15, 23, 42, 0.1);
}

.lk-score-pill::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lk-score-color, var(--lk-primary));
	margin-right: 8px;
	margin-top: 6px;
}

.lk-remark-form {
	display: grid;
	gap: var(--lk-space-2);
}

.lk-remark-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--lk-space-2);
}

.lk-remark-form .lk-button {
	padding: 6px 14px;
	font-size: 13px;
}

.lk-inline-saved {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: var(--lk-radius-full);
	font-size: 12px;
	font-weight: 600;
	color: var(--lk-success);
	background: rgba(16, 185, 129, 0.12);
	border: 1px solid rgba(16, 185, 129, 0.28);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
}

.lk-inline-saved[hidden] {
	display: none !important;
}

.lk-inline-saved.is-visible {
	opacity: 1;
	visibility: visible;
}

.lk-question {
	border: 1px solid var(--lk-border);
	padding: var(--lk-space-4);
	border-radius: var(--lk-radius-md);
	margin-bottom: var(--lk-space-4);
}

.lk-option {
	display: flex;
	gap: var(--lk-space-2);
	padding: var(--lk-space-2);
	border-radius: var(--lk-radius-md);
	border: 1px solid transparent;
}

.lk-option:hover {
	border-color: var(--lk-border);
	background: #f8fafc;
}

.lk-result {
	margin-top: var(--lk-space-5);
	padding: var(--lk-space-4);
	border-radius: var(--lk-radius-md);
	background: #f8fafc;
	text-align: center;
}

.lk-assessment-result {
	margin-bottom: var(--lk-space-5);
}

.lk-result-label {
	margin: 0 0 var(--lk-space-3);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lk-muted);
}

.lk-result-score {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 8px solid var(--lk-score-color, var(--lk-primary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	margin: 0 auto var(--lk-space-3);
}

.lk-review {
	margin-top: var(--lk-space-4);
	text-align: left;
}

.lk-review-list {
	list-style: none;
	padding: 0;
	margin: var(--lk-space-3) 0 0;
}

.lk-review-list li {
	padding: var(--lk-space-3);
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-md);
	margin-bottom: var(--lk-space-3);
}

.lk-assessment-template {
	max-width: 960px;
	margin: 0 auto;
	padding: var(--lk-space-6) var(--lk-space-4);
}

.lk-assessment-hero {
	background: linear-gradient(120deg, #eef2ff 0%, #f8fafc 100%);
	border-radius: var(--lk-radius-lg);
	padding: var(--lk-space-6);
	margin-bottom: var(--lk-space-5);
}

.lk-hero-inner {
	max-width: 960px;
	margin: 0 auto;
}

.lk-hero-meta {
	color: var(--lk-muted);
	margin: var(--lk-space-2) 0 var(--lk-space-4);
}

.lk-hero-stats {
	display: flex;
	gap: var(--lk-space-5);
	flex-wrap: wrap;
	margin-bottom: var(--lk-space-4);
}

.lk-hero-stats span {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lk-muted);
}

.lk-hero-stat-label {
	color: var(--lk-primary);
}

.lk-hero-stats strong {
	display: block;
	font-size: 22px;
}

.lk-assessment-card {
	max-width: 960px;
	margin: 0 auto;
	padding: var(--lk-space-3);
}

.lk-assessment-inner {
	padding: var(--lk-space-5) var(--lk-space-3);
	border-radius: var(--lk-radius-lg);
	background: #fff;
	box-shadow: none !important;
	border: 1px solid var(--lk-border);
}

.lk-course-template {
	max-width: 960px;
	margin: 0 auto;
	padding: var(--lk-space-6) var(--lk-space-4);
}

.lk-course-hero {
	background: linear-gradient(120deg, #eef2ff 0%, #f8fafc 100%);
	border-radius: var(--lk-radius-lg);
	padding: var(--lk-space-6);
	margin-bottom: var(--lk-space-5);
}

.lk-hero-actions {
	display: flex;
	gap: var(--lk-space-3);
	flex-wrap: wrap;
}

.lk-course-card-full {
	padding: var(--lk-space-5);
}

.lk-course-image {
	width: 100%;
	border-radius: var(--lk-radius-md);
	margin-bottom: var(--lk-space-4);
}

.lk-course-content {
	color: var(--lk-text);
	line-height: 1.7;
}

/* Dashboard enhancements */
.lk-stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--lk-space-4);
	margin-bottom: var(--lk-space-5);
}

.lk-stat-card {
	display: flex;
	align-items: center;
	gap: var(--lk-space-4);
	padding: var(--lk-space-4);
	border-radius: var(--lk-radius-lg);
	background: var(--lk-card);
	border: 1px solid var(--lk-border);
	box-shadow: var(--lk-shadow-sm);
}

.lk-icon {
	width: 48px;
	height: 48px;
	border-radius: var(--lk-radius-full);
	background: rgba(59, 130, 246, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--lk-primary);
	font-size: 20px;
}

.lk-stat-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lk-muted);
}

.lk-stat-value {
	display: block;
	font-size: 26px;
	font-weight: 700;
	margin: 4px 0;
}

.lk-stat-meta {
	font-size: 12px;
	color: var(--lk-muted);
}

.lk-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lk-space-3);
	margin-bottom: var(--lk-space-3);
}

.lk-toolbar {
	display: flex;
	align-items: center;
	gap: var(--lk-space-3);
	flex-wrap: wrap;
}

.lk-toolbar select {
	padding: 8px 12px;
	border-radius: var(--lk-radius-full);
	border: 1px solid var(--lk-border);
	background: #fff;
}

.lk-search {
	display: flex;
	align-items: center;
	gap: var(--lk-space-2);
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-full);
	padding: 6px 12px;
	background: #fff;
}

.lk-search input {
	border: none;
	outline: none;
	background: transparent;
	min-width: 160px;
}

.lk-activity {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--lk-space-3);
}

.lk-activity-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lk-space-3);
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-md);
	padding: var(--lk-space-3);
}

.lk-activity-item strong {
	display: block;
}

.lk-activity-actions {
	display: flex;
	align-items: center;
	gap: var(--lk-space-2);
}

.lk-empty {
	color: var(--lk-muted);
	padding: var(--lk-space-3);
}

.lk-page-hidden {
	display: none !important;
}

.lk-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lk-space-3);
	margin-top: var(--lk-space-3);
}

.lk-page-label {
	font-size: 12px;
	color: var(--lk-muted);
}

.lk-pagination .lk-button {
	min-width: 88px;
	min-height: 40px;
}

.lk-profile-grid {
	display: grid;
	grid-template-columns: minmax(260px, 320px) 1fr;
	gap: var(--lk-space-6);
}

.lk-profile-grid > .lk-card {
	margin-bottom: 0;
}

.lk-profile-aside {
	display: flex;
	flex-direction: column;
	gap: var(--lk-space-4);
	padding: var(--lk-space-5);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.94) 45%, rgba(236, 242, 255, 0.75) 100%);
	border: 1px solid rgba(148, 163, 184, 0.2);
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.lk-profile-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--lk-space-2);
	padding-bottom: var(--lk-space-3);
	border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.lk-profile-hero h3 {
	margin: var(--lk-space-2) 0 0;
	font-size: clamp(20px, 2.2vw, 25px);
	line-height: 1.2;
	letter-spacing: 0;
}

.lk-profile-hero .lk-badge {
	margin-top: 2px;
	font-size: 13px;
	padding: 6px 12px;
}

.lk-profile-meta-card {
	display: grid;
	gap: var(--lk-space-3);
	padding: var(--lk-space-3);
	border-radius: var(--lk-radius-md);
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(148, 163, 184, 0.24);
}

.lk-profile-meta-row {
	display: flex;
	align-items: flex-start;
	gap: var(--lk-space-2);
}

.lk-profile-meta-icon {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(59, 130, 246, 0.14);
	color: #1d4ed8;
	flex-shrink: 0;
	font-size: 16px;
}

.lk-profile-meta-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lk-muted);
	margin-bottom: 2px;
}

.lk-profile-meta-value {
	display: block;
	font-size: 16px;
	line-height: 1.35;
	color: #0f172a;
}

.lk-profile-meta-value--muted {
	color: #475569;
	font-weight: 500;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.lk-profile-meta p {
	margin: 0 0 var(--lk-space-2);
	color: var(--lk-muted);
	line-height: 1.45;
}

.lk-profile-stats {
	display: grid;
	gap: var(--lk-space-2);
	background: rgba(255, 255, 255, 0.86);
	border-radius: var(--lk-radius-md);
	padding: var(--lk-space-3);
	border: 1px solid rgba(148, 163, 184, 0.24);
}

.lk-profile-stat-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lk-space-2);
	padding: 8px 0;
	border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.lk-profile-stat-row:last-child {
	border-bottom: 0;
}

.lk-profile-stat-head {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--lk-muted);
}

.lk-profile-stat-head .dashicons {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(59, 130, 246, 0.14);
	color: #1d4ed8;
	font-size: 14px;
}

.lk-profile-stat-head span:last-child {
	font-size: 12px;
	color: var(--lk-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.lk-profile-stats strong {
	font-size: 20px;
	letter-spacing: -0.01em;
}

.lk-profile-form {
	padding: clamp(22px, 2.4vw, 34px);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.lk-profile-form h3 {
	margin-bottom: var(--lk-space-4);
	font-size: clamp(22px, 2.4vw, 25px);
	line-height: 1.15;
	letter-spacing: 0;
}

.lk-profile-form .lk-field-grid {
	gap: var(--lk-space-4);
	margin-bottom: var(--lk-space-2);
}

.lk-profile-form .lk-help-text {
	margin-top: 6px;
}

.lk-field {
	margin-bottom: var(--lk-space-4);
}

.lk-field label {
	display: block;
	margin-bottom: var(--lk-space-2);
	font-weight: 500;
	letter-spacing: 0.01em;
}

.lk-profile-save-button {
	min-height: 52px;
	padding: 0 26px;
	font-weight: 700;
	letter-spacing: 0.01em;
	font-size: 16px;
	box-shadow: 0 8px 22px rgba(59, 130, 246, 0.26);
}

.lk-profile-save-button:hover {
	box-shadow: 0 12px 26px rgba(59, 130, 246, 0.32);
}

.lk-field input,
.lk-field textarea,
.lk-field select {
	width: 100%;
	padding: 10px 12px;
	border-radius: var(--lk-radius-md);
	border: 1px solid var(--lk-border);
}

.lk-input {
	width: 100%;
	padding: 10px 12px;
	border-radius: var(--lk-radius-md);
	border: 1px solid var(--lk-border);
}

.lk-field-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--lk-space-3);
}

.lk-help-text {
	display: block;
	font-size: 12px;
	color: var(--lk-muted);
	margin-top: 4px;
}

.is-hidden {
	display: none !important;
}

.lk-dropzone {
	position: relative;
	border: 2px dashed rgba(59, 130, 246, 0.32);
	border-radius: var(--lk-radius-md);
	padding: var(--lk-space-5) var(--lk-space-4);
	text-align: center;
	color: var(--lk-muted);
	background: linear-gradient(160deg, #fbfdff 0%, #f2f7ff 100%);
	cursor: pointer;
}

.lk-dropzone input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	margin: 0;
}

.lk-dropzone.is-dragover {
	border-color: var(--lk-primary);
	background: rgba(59, 130, 246, 0.12);
	color: var(--lk-primary);
}

.lk-dropzone-content {
	display: grid;
	justify-items: center;
	gap: 6px;
}

.lk-dropzone-icon {
	font-size: 24px;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(59, 130, 246, 0.16);
	color: #1d4ed8;
}

.lk-dropzone-title {
	display: block;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	color: #334155;
}

.lk-dropzone-subtitle {
	display: block;
	font-size: 13px;
	color: #64748b;
}

.lk-file-selected {
	font-size: 13px;
	color: #1d4ed8;
	margin-top: 10px;
	font-weight: 500;
}

.lk-profile-image-preview {
	margin-top: 10px;
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-md);
	padding: 10px;
	background: #f8fafc;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.lk-profile-image-preview[hidden] {
	display: none !important;
}

.lk-profile-image-preview img {
	max-width: 100%;
	max-height: 170px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--lk-radius-md);
	display: block;
}

.lk-image-crop-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(15, 23, 42, 0.72);
	display: grid;
	place-items: center;
	padding: var(--lk-space-4);
}

.lk-image-crop-modal[hidden] {
	display: none !important;
}

.lk-image-crop-dialog {
	width: min(560px, 100%);
	background: #ffffff;
	border-radius: var(--lk-radius-lg);
	padding: var(--lk-space-4);
	box-shadow: var(--lk-shadow-md);
	border: 1px solid rgba(148, 163, 184, 0.35);
	max-height: calc(100vh - 40px);
	overflow: auto;
}

.lk-image-crop-dialog h4 {
	margin: 0 0 var(--lk-space-2);
}

.lk-image-crop-canvas-wrap {
	margin-top: var(--lk-space-3);
	background: #eef2f7;
	border-radius: var(--lk-radius-md);
	padding: var(--lk-space-2);
	aspect-ratio: 1 / 1;
	min-height: 300px;
	max-height: 70vh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lk-image-crop-canvas-wrap > img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 8px;
	background: #ffffff;
	visibility: visible;
}

.lk-image-crop-canvas-wrap .cropper-container {
	width: 100% !important;
	height: 100% !important;
}

.lk-image-crop-canvas-wrap .cropper-modal {
	background: rgba(15, 23, 42, 0.28);
}

.lk-image-crop-controls {
	display: grid;
	gap: var(--lk-space-2);
	margin-top: var(--lk-space-3);
}

.lk-image-crop-controls label {
	font-size: 13px;
	font-weight: 600;
	color: var(--lk-text);
}

.lk-image-crop-controls input[type="range"] {
	margin-top: 6px;
	margin-bottom: 0;
}

.lk-image-crop-actions {
	margin-top: var(--lk-space-3);
	display: flex;
	justify-content: flex-end;
	gap: var(--lk-space-2);
}

.lk-crop-actions {
	margin-top: 8px;
	display: flex;
	align-items: center;
	gap: var(--lk-space-2);
}

.lk-crop-error {
	margin: 8px 0 0;
	color: var(--lk-danger);
	font-size: 13px;
}

.lk-report-return {
	margin-bottom: var(--lk-space-3);
}

.lk-auth-shell {
	max-width: 980px;
	margin: 0 auto;
	padding: var(--lk-space-6) var(--lk-space-3);
	display: grid;
	place-items: center;
	position: relative;
	overflow: hidden;
}

.lk-auth-shell::before {
	content: "";
	position: absolute;
	width: min(72vw, 720px);
	height: min(72vw, 720px);
	background:
		radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.24), transparent 55%),
		radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.2), transparent 60%),
		radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.08), transparent 70%);
	filter: blur(6px);
	z-index: 0;
	pointer-events: none;
}

.lk-auth-shell .lk-auth-card {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	background: linear-gradient(150deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(59, 130, 246, 0.18);
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.lk-auth-shell .lk-auth-card--register {
	max-width: 760px;
}

.lk-auth-header {
	margin-bottom: var(--lk-space-4);
}

.lk-auth-header h3 {
	margin: 0;
	font-size: clamp(26px, 3vw, 34px);
	line-height: 1.15;
}

.lk-auth-subtitle {
	margin: 10px 0 0;
	color: var(--lk-muted);
	line-height: 1.5;
}

.lk-auth-form .lk-field {
	margin-bottom: var(--lk-space-3);
}

.lk-auth-form input:not([type="checkbox"]):not([type="radio"]),
.lk-auth-form select,
.lk-auth-form textarea {
	margin-bottom: 0;
	min-height: 46px;
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.14);
}

.lk-auth-form textarea {
	min-height: 110px;
	resize: vertical;
}

.lk-auth-form input:not([type="checkbox"]):not([type="radio"]):focus,
.lk-auth-form select:focus,
.lk-auth-form textarea:focus {
	border-color: rgba(59, 130, 246, 0.8);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
	outline: none;
}

.lk-auth-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lk-space-3);
	margin-top: var(--lk-space-2);
	margin-bottom: var(--lk-space-4);
	flex-wrap: wrap;
}

.lk-auth-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--lk-text);
}

.lk-auth-checkbox input {
	width: 16px;
	height: 16px;
	min-height: 16px;
	padding: 0;
	border: 1px solid var(--lk-border);
	border-radius: 3px;
	background: #fff;
	margin: 0;
	flex: 0 0 auto;
}

.lk-auth-link {
	font-weight: 600;
	text-decoration: none;
	color: var(--lk-primary);
}

.lk-auth-link:hover {
	text-decoration: underline;
}

.lk-auth-submit {
	width: 100%;
	min-height: 48px;
	font-size: 15px;
	letter-spacing: 0.01em;
}

.lk-auth-switch {
	margin: var(--lk-space-4) 0 0;
	font-size: 14px;
	color: var(--lk-muted);
}

.lk-auth-switch a {
	font-weight: 700;
	color: var(--lk-primary);
	text-decoration: none;
}

.lk-auth-switch a:hover {
	text-decoration: underline;
}

.lk-auth-inline {
	display: grid;
	gap: var(--lk-space-3);
	justify-items: start;
}

.lk-profile-card {
	display: flex;
	flex-direction: column;
	gap: var(--lk-space-3);
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-md);
	padding: var(--lk-space-3);
}

.lk-profile-main {
	display: flex;
	align-items: center;
	gap: var(--lk-space-3);
}

.lk-credentials-card {
	margin-top: 0;
	padding: var(--lk-space-3) var(--lk-space-3) var(--lk-space-4);
	border: 1px solid rgba(148, 163, 184, 0.24);
	border-radius: var(--lk-radius-md);
	background: rgba(255, 255, 255, 0.86);
	display: grid;
	gap: var(--lk-space-3);
}

.lk-credential-head {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.lk-credential-head .dashicons {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(59, 130, 246, 0.14);
	color: #1d4ed8;
	font-size: 15px;
}

.lk-credentials-card h4 {
	margin: 0;
	font-size: 18px;
}

.lk-credential-email {
	margin: 0;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.55;
	color: #334155;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.lk-credential-password-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--lk-space-3);
	flex-wrap: wrap;
}

.lk-credential-actions {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.lk-credential-password-wrap code {
	padding: 8px 12px;
	border-radius: 6px;
	background: #e2e8f0;
	font-size: 14px;
	min-width: 128px;
	text-align: center;
	color: #0f172a;
}

.lk-credential-action-btn {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(59, 130, 246, 0.5);
	background: #fff;
	color: #2563eb;
	cursor: pointer;
	padding: 0;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}

.lk-credential-action-btn .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.lk-credential-action-btn:hover:not([disabled]) {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
	background: rgba(59, 130, 246, 0.08);
}

.lk-credential-action-btn:focus-visible {
	outline: 2px solid rgba(37, 99, 235, 0.45);
	outline-offset: 2px;
}

.lk-credential-action-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.lk-credential-message {
	margin: 0;
	font-size: 12px;
}

[data-lk-credential-message].is-error {
	color: var(--lk-danger);
}

.lk-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.lk-pending-dashboard {
	max-width: 760px;
	margin: 0 auto;
}

.lk-pending-card {
	margin: 0;
}

.lk-pending-actions {
	margin-top: var(--lk-space-4);
	display: flex;
	gap: var(--lk-space-2);
}

.lk-profile-actions {
	display: flex;
	gap: var(--lk-space-2);
	flex-wrap: wrap;
}

.lk-course-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lk-space-2);
	margin-bottom: var(--lk-space-2);
}

.lk-course-desc {
	color: var(--lk-muted);
}

.lk-course-meta {
	margin-bottom: var(--lk-space-3);
}

.lk-report-filters {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--lk-space-3);
	margin-bottom: var(--lk-space-4);
	padding: var(--lk-space-3);
	background: #fff;
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-md);
}

.lk-report-filters select,
.lk-report-filters input,
.lk-report-filters button {
	min-height: 44px;
}

.lk-trend {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	padding: 2px 8px;
	border-radius: var(--lk-radius-full);
	margin-top: 0;
	font-weight: 600;
}

.lk-trend--up {
	color: var(--lk-success);
	background: rgba(16, 185, 129, 0.12);
}

.lk-trend--down {
	color: var(--lk-danger);
	background: rgba(239, 68, 68, 0.12);
}

.lk-trend .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
}

.lk-timeline {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--lk-space-3);
}

.lk-timeline li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lk-space-3);
	padding: var(--lk-space-3);
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-md);
}

.lk-timeline-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: inline-block;
}

.lk-stepper {
	display: flex;
	gap: var(--lk-space-2);
	flex-wrap: wrap;
	margin-bottom: var(--lk-space-4);
}

.lk-step {
	padding: 8px 14px;
	border-radius: var(--lk-radius-full);
	border: 1px solid var(--lk-border);
	color: var(--lk-muted);
	font-weight: 600;
}

.lk-step.is-active {
	background: var(--lk-primary);
	color: #fff;
	box-shadow: var(--lk-shadow-sm);
}

.lk-step.is-complete {
	background: rgba(16, 185, 129, 0.12);
	color: var(--lk-success);
	border-color: rgba(16, 185, 129, 0.3);
}

.lk-form-error {
	padding: var(--lk-space-3);
	border-radius: var(--lk-radius-md);
	background: rgba(239, 68, 68, 0.12);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: var(--lk-danger);
	margin-bottom: var(--lk-space-3);
}

.is-invalid {
	border-color: var(--lk-danger) !important;
}

.lk-input-group.is-invalid {
	border-color: var(--lk-danger) !important;
}

.lk-input-group {
	display: flex;
	align-items: center;
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-md);
	padding: 0 12px;
	background: #fff;
}

.lk-input-prefix {
	color: var(--lk-muted);
	font-weight: 600;
	margin-right: 8px;
}

.lk-input-group input {
	border: none;
	padding: 10px 0;
	width: 100%;
	outline: none;
}

.lk-step-panel {
	display: none;
}

.lk-step-panel.is-active {
	display: block;
}

.lk-step-actions {
	display: flex;
	justify-content: flex-end;
	gap: var(--lk-space-2);
	margin-top: var(--lk-space-3);
}

.lk-review-card {
	border: 1px solid var(--lk-border);
	border-radius: var(--lk-radius-md);
	padding: var(--lk-space-4);
	background: #f8fafc;
}

.lk-review-list {
	list-style: none;
	padding: 0;
	margin: var(--lk-space-3) 0 0;
	display: grid;
	gap: var(--lk-space-2);
}

.lk-alert {
	padding: var(--lk-space-3);
	border-radius: var(--lk-radius-md);
	margin-bottom: var(--lk-space-4);
	border: 1px solid transparent;
	position: relative;
	padding-right: 44px;
}

.lk-alert-close {
	position: absolute;
	top: 8px;
	right: 8px;
	border: 0;
	background: transparent;
	color: currentColor;
	font-size: 20px;
	line-height: 1;
	padding: 0;
	width: 24px;
	height: 24px;
	cursor: pointer;
	opacity: 0.75;
}

.lk-alert-close:hover {
	opacity: 1;
}

.lk-alert--success {
	background: rgba(16, 185, 129, 0.12);
	border-color: rgba(16, 185, 129, 0.3);
	color: var(--lk-success);
}

.lk-alert--info {
	background: rgba(59, 130, 246, 0.12);
	border-color: rgba(59, 130, 246, 0.28);
	color: #1d4ed8;
}

.lk-alert--error {
	background: rgba(239, 68, 68, 0.12);
	border-color: rgba(239, 68, 68, 0.3);
	color: var(--lk-danger);
}

.lk-progress {
	width: 100%;
	height: 8px;
	border-radius: var(--lk-radius-full);
	background: #e2e8f0;
	overflow: hidden;
	margin-bottom: var(--lk-space-4);
}

.lk-progress-bar {
	height: 100%;
	background: linear-gradient(120deg, var(--lk-primary), var(--lk-purple));
}

.lk-button--primary {
	background: var(--lk-primary);
}

.lk-button[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
	box-shadow: none;
}

.lk-badge--warning {
	background: rgba(245, 158, 11, 0.1);
	color: var(--lk-warning);
}

.lk-badge--danger {
	background: rgba(239, 68, 68, 0.1);
	color: var(--lk-danger);
}

.lk-documents-panel {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(59, 130, 246, 0.12);
}

.lk-documents-header {
	align-items: flex-start;
	margin-bottom: var(--lk-space-4);
}

.lk-documents-subtitle {
	margin: 6px 0 0;
}

.lk-documents-summary {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}

.lk-documents-toolbar {
	margin-bottom: var(--lk-space-4);
}

.lk-document-grid--refined {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.lk-document-card--refined {
	display: flex;
	flex-direction: column;
	gap: var(--lk-space-3);
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--lk-radius-lg);
	background: #fff;
}

.lk-document-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lk-space-2);
}

.lk-document-card-head h4 {
	margin: 0;
	font-size: 18px;
}

.lk-doc-type {
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.lk-document-desc {
	margin: 0;
	color: var(--lk-muted);
	line-height: 1.55;
}

.lk-document-meta-row {
	display: flex;
	align-items: center;
	gap: var(--lk-space-2);
	flex-wrap: wrap;
	padding-top: var(--lk-space-2);
	border-top: 1px dashed rgba(100, 116, 139, 0.35);
}

.lk-document-actions {
	margin-top: auto;
}

.lk-empty-state {
	padding: var(--lk-space-6);
	text-align: center;
	border: 1px dashed rgba(100, 116, 139, 0.35);
	border-radius: var(--lk-radius-md);
	background: rgba(241, 245, 249, 0.6);
}

.lk-empty-state h4 {
	margin: 0 0 var(--lk-space-2);
	font-size: 20px;
}

.lk-empty-state p {
	margin: 0;
	color: var(--lk-muted);
}

.lk-archive-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(59, 130, 246, 0.12);
}

.lk-archive-header {
	align-items: flex-start;
}

.lk-archive-header h3 {
	margin-bottom: 6px;
}

.lk-archive-header .lk-meta {
	margin: 0;
}

.lk-archive-kpis {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-end;
}

.lk-archive-upload {
	border: 1px solid rgba(59, 130, 246, 0.18);
	background: rgba(255, 255, 255, 0.9);
	border-radius: var(--lk-radius-md);
	padding: var(--lk-space-4);
	margin-bottom: var(--lk-space-4);
}

.lk-archive-upload .lk-field {
	margin-bottom: 0;
}

.lk-archive-upload-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--lk-space-4);
}

.lk-archive-upload-actions {
	display: flex;
	align-items: center;
	gap: var(--lk-space-2);
	margin-top: var(--lk-space-3);
}

.lk-archive-toolbar {
	margin-bottom: var(--lk-space-3);
}

.lk-file-picker {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--lk-space-2);
	border: 1px dashed rgba(59, 130, 246, 0.38);
	border-radius: var(--lk-radius-md);
	padding: 10px 12px;
	background: rgba(248, 250, 252, 0.9);
	cursor: pointer;
	margin-bottom: 6px;
}

.lk-file-picker input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	margin: 0;
	padding: 0;
	border: 0;
	min-height: 0;
}

.lk-file-picker-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 12px;
	border-radius: var(--lk-radius-full);
	background: var(--lk-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
}

.lk-file-picker-name {
	color: var(--lk-muted);
	font-size: 14px;
}

.lk-table--archive {
	margin-top: var(--lk-space-2);
}

.lk-table-actions {
	display: flex;
	align-items: center;
	gap: var(--lk-space-2);
	flex-wrap: wrap;
}

.lk-table-actions .lk-button {
	min-height: 38px;
}

@media (max-width: 768px) {
	.lk-auth-shell {
		padding: var(--lk-space-4) var(--lk-space-2);
	}

	.lk-auth-shell .lk-auth-card,
	.lk-auth-shell .lk-auth-card--register {
		max-width: 100%;
	}

	.lk-auth-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.lk-profile-grid {
		grid-template-columns: 1fr;
		gap: var(--lk-space-4);
	}

	.lk-profile-aside,
	.lk-profile-form {
		padding: var(--lk-space-4);
	}

	.lk-avatar--hero {
		width: 108px;
		height: 108px;
		font-size: 38px;
	}

	.lk-profile-hero h3 {
		font-size: clamp(20px, 6.2vw, 24px);
	}

	.lk-profile-form h3 {
		font-size: clamp(21px, 6.6vw, 25px);
	}

	.lk-credential-password-wrap {
		flex-direction: column;
		align-items: flex-start;
	}

	.lk-profile-save-button {
		width: 100%;
	}

	.lk-stat-card {
		flex-direction: row;
		align-items: flex-start;
	}

	.lk-step-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.lk-table {
		display: block;
		overflow-x: auto;
	}

	.lk-documents-header {
		flex-direction: column;
	}

	.lk-documents-summary {
		align-items: flex-start;
	}

	.lk-documents-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.lk-documents-toolbar .lk-search {
		width: 100%;
	}

	.lk-documents-toolbar .lk-search input {
		min-width: 0;
		width: 100%;
	}

	.lk-documents-toolbar select {
		width: 100%;
		border-radius: var(--lk-radius-md);
	}

	.lk-archive-header {
		flex-direction: column;
	}

	.lk-archive-kpis {
		align-items: flex-start;
	}

	.lk-archive-upload-grid {
		grid-template-columns: 1fr;
	}

	.lk-archive-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.lk-archive-toolbar .lk-search {
		width: 100%;
	}

	.lk-archive-toolbar .lk-search input {
		min-width: 0;
		width: 100%;
	}

	.lk-archive-toolbar select {
		width: 100%;
		border-radius: var(--lk-radius-md);
	}

	.lk-table--archive thead {
		display: none;
	}

	.lk-table--archive,
	.lk-table--archive tbody,
	.lk-table--archive tr,
	.lk-table--archive td {
		display: block;
		width: 100%;
	}

	.lk-table--archive tr {
		border: 1px solid var(--lk-border);
		border-radius: var(--lk-radius-md);
		padding: var(--lk-space-3);
		margin-bottom: var(--lk-space-3);
		background: #fff;
	}

	.lk-table--archive tbody tr:nth-child(odd),
	.lk-table--archive tbody tr:hover {
		background: #fff;
	}

	.lk-table--archive td {
		border: 0;
		padding: 0;
		margin-bottom: var(--lk-space-2);
	}

	.lk-table--archive td:last-child {
		margin-bottom: 0;
	}

	.lk-table--archive td::before {
		content: attr(data-label);
		display: block;
		font-size: 12px;
		color: var(--lk-muted);
		text-transform: uppercase;
		letter-spacing: 0.06em;
		margin-bottom: 4px;
	}
}

@media (max-width: 640px) {
	.lk-dashboard {
		overflow-x: hidden;
		padding: var(--lk-space-4);
	}

	.lk-dashboard-header {
		display: grid;
		grid-template-columns: 1fr;
		align-items: start;
		gap: var(--lk-space-3);
	}

	.lk-dashboard-header > div:first-child {
		grid-column: 1 / -1;
		order: 1;
	}

	.lk-dashboard-header > .lk-quick-actions {
		order: 2;
	}

	.lk-menu-toggle {
		display: inline-flex;
		grid-column: 1 / -1;
		justify-self: start;
		order: 3;
	}

	.lk-quick-actions {
		grid-column: 1 / -1;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
	}

	.lk-dashboard-tabs-wrap {
		position: relative;
		margin-bottom: var(--lk-space-4);
	}

	.lk-dashboard-tabs {
		display: none;
		margin: 0;
		padding: var(--lk-space-3);
		border: 1px solid var(--lk-border);
		border-radius: var(--lk-radius-md);
		background: #fff;
		box-shadow: var(--lk-shadow-sm);
	}

	.lk-dashboard.is-menu-open .lk-dashboard-tabs {
		display: grid;
		grid-template-columns: 1fr;
	}

	.lk-tab {
		text-align: left;
	}

	.lk-report {
		overflow-x: hidden;
	}

	.lk-report-filters {
		grid-template-columns: 1fr;
	}

	.lk-report-table thead {
		display: none;
	}

	.lk-report-table,
	.lk-report-table tbody,
	.lk-report-table tr,
	.lk-report-table td {
		display: block;
		width: 100%;
	}

	.lk-report-table tr {
		border: 1px solid var(--lk-border);
		border-radius: var(--lk-radius-md);
		padding: var(--lk-space-3);
		margin-bottom: var(--lk-space-3);
		background: #fff;
	}

	.lk-report-table tbody tr:nth-child(odd),
	.lk-report-table tbody tr:hover {
		background: #fff;
	}

	.lk-report-table td {
		border: 0;
		padding: 0;
		margin-bottom: var(--lk-space-2);
	}

	.lk-report-table td:last-child {
		margin-bottom: 0;
	}

	.lk-report-table td::before {
		content: attr(data-label);
		display: block;
		font-size: 12px;
		color: var(--lk-muted);
		text-transform: uppercase;
		letter-spacing: 0.06em;
		margin-bottom: 4px;
	}

	.lk-remark-actions {
		justify-content: flex-start;
	}

	.lk-pagination {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.lk-page-label {
		width: 100%;
	}
}

@media (max-width: 360px) {
	.lk-stat-card {
		flex-direction: column;
		align-items: flex-start;
	}
}
