.lcm-frontend-wrap {
	--lcm-bg: #f4f7fb;
	--lcm-card: #ffffff;
	--lcm-border: #dce6f5;
	--lcm-border-strong: #cfdcf1;
	--lcm-text: #16213f;
	--lcm-muted: #6b7894;
	--lcm-primary: #2563eb;
	--lcm-primary-strong: #1d4ed8;
	--lcm-primary-soft: rgba(37, 99, 235, 0.1);
	--lcm-shadow: 0 18px 44px rgba(20, 41, 88, 0.08);
	--lcm-sticky-menu-offset: 92px;
	--lcm-sticky-anchor-offset: calc(var(--lcm-sticky-menu-offset) + 24px);
	width: min(1680px, calc(100vw - 32px));
	max-width: none;
	margin: 0;
	padding: 24px 0 56px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
	color: var(--lcm-text);
}

/* Hard fallback for themes that aggressively style post content wrappers. */
body .lcm-frontend-wrap {
	display: block !important;
	width: min(1680px, calc(100vw - 32px)) !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 24px 0 56px !important;
	position: relative !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%) !important;
	color: var(--lcm-text) !important;
}

body .lcm-frontend-wrap *,
body .lcm-frontend-wrap *::before,
body .lcm-frontend-wrap *::after {
	box-sizing: border-box !important;
}

body .lcm-frontend-wrap .lcm-shell,
body .lcm-frontend-wrap .lcm-shell-content {
	display: grid !important;
	gap: 24px !important;
}

body .lcm-frontend-wrap .lcm-shell-body {
	display: grid !important;
	grid-template-columns: 296px minmax(0, 1fr) !important;
	gap: 24px !important;
	align-items: start !important;
}

body .lcm-frontend-wrap .lcm-shell-sidebar {
	display: grid !important;
	gap: 18px !important;
	position: sticky !important;
	top: var(--lcm-sticky-menu-offset) !important;
	align-self: start !important;
}

body .lcm-frontend-wrap .lcm-card,
body .lcm-frontend-wrap .lcm-side-filter,
body .lcm-frontend-wrap .lcm-side-nav {
	border: 1px solid var(--lcm-border) !important;
	background: rgba(255, 255, 255, 0.96) !important;
	box-shadow: var(--lcm-shadow) !important;
}

body .lcm-frontend-wrap .lcm-card {
	padding: 30px 32px !important;
	border-radius: 26px !important;
}

body .lcm-frontend-wrap .lcm-side-filter,
body .lcm-frontend-wrap .lcm-side-nav {
	border-radius: 24px !important;
	padding: 18px !important;
}

body .lcm-frontend-wrap .lcm-side-nav {
	display: grid !important;
	gap: 12px !important;
}

body .lcm-frontend-wrap .lcm-side-nav a {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 16px 18px !important;
	border-radius: 18px !important;
	color: var(--lcm-text) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	text-decoration: none !important;
}

body .lcm-frontend-wrap .lcm-side-nav__icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 34px !important;
	height: 34px !important;
	border-radius: 12px !important;
	background: #eef4ff !important;
	color: var(--lcm-primary) !important;
	font-size: 11px !important;
	font-weight: 800 !important;
}

body .lcm-frontend-wrap .lcm-mobile-toolbar {
	display: none !important;
}

body .lcm-frontend-wrap .lcm-section-head,
body .lcm-frontend-wrap .lcm-month-filter__controls,
body .lcm-frontend-wrap .lcm-stat-card,
body .lcm-frontend-wrap .lcm-trend-item__head {
	display: flex !important;
}

body .lcm-frontend-wrap .lcm-section-head {
	align-items: flex-start !important;
	justify-content: space-between !important;
	gap: 18px !important;
	margin-bottom: 22px !important;
}

body .lcm-frontend-wrap .lcm-quick-entry-grid {
	display: grid !important;
	grid-template-columns: 150px minmax(180px, 1fr) 150px 150px minmax(190px, 1fr) auto !important;
	gap: 14px !important;
	align-items: end !important;
}

body .lcm-frontend-wrap .lcm-overview-grid,
body .lcm-frontend-wrap .lcm-stats-grid,
body .lcm-frontend-wrap .lcm-budget-strip {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 16px !important;
}

body .lcm-frontend-wrap .lcm-mobile-cards,
body .lcm-frontend-wrap .lcm-month-filter--mobile,
body .lcm-frontend-wrap .lcm-mobile-budget-summary,
body .lcm-frontend-wrap .lcm-mobile-analytics,
body .lcm-frontend-wrap .lcm-mobile-trend-summary,
body .lcm-frontend-wrap .lcm-mobile-trend-note {
	display: none !important;
}

@media (max-width: 1240px) {
	body .lcm-frontend-wrap {
		width: calc(100vw - 24px) !important;
		padding-top: 24px !important;
		padding-bottom: 32px !important;
	}

	body .lcm-frontend-wrap .lcm-shell-body {
		grid-template-columns: 1fr !important;
	}

	body .lcm-frontend-wrap .lcm-shell-sidebar {
		position: static !important;
	}

	body .lcm-frontend-wrap .lcm-side-nav {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	}

	body .lcm-frontend-wrap .lcm-read-panel,
	body .lcm-frontend-wrap .lcm-budget-strip,
	body .lcm-frontend-wrap .lcm-overview-grid,
	body .lcm-frontend-wrap .lcm-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 900px) {
	body .lcm-frontend-wrap .lcm-side-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	body .lcm-frontend-wrap .lcm-quick-entry-grid {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 767px) {
	body .lcm-frontend-wrap {
		width: calc(100vw - 16px) !important;
		padding: calc(var(--lcm-sticky-menu-offset) + 12px) 0 20px !important;
	}

	body .lcm-frontend-wrap .lcm-shell-sidebar {
		display: none !important;
	}

	body .lcm-frontend-wrap .lcm-mobile-toolbar {
		display: flex !important;
		justify-content: flex-end !important;
	}

	body .lcm-frontend-wrap .lcm-card {
		padding: 18px 16px !important;
		border-radius: 22px !important;
	}

	body .lcm-frontend-wrap .lcm-month-filter--mobile,
	body .lcm-frontend-wrap .lcm-mobile-budget-summary,
	body .lcm-frontend-wrap .lcm-mobile-analytics,
	body .lcm-frontend-wrap .lcm-mobile-trend-summary,
	body .lcm-frontend-wrap .lcm-mobile-trend-note {
		display: block !important;
	}

	body .lcm-frontend-wrap .lcm-desktop-table,
	body .lcm-frontend-wrap .lcm-budget-strip,
	body .lcm-frontend-wrap .lcm-table-note {
		display: none !important;
	}

	body .lcm-frontend-wrap .lcm-mobile-cards {
		display: block !important;
	}

	body .lcm-frontend-wrap .lcm-overview-grid,
	body .lcm-frontend-wrap .lcm-stats-grid,
	body .lcm-frontend-wrap .lcm-mobile-trend-summary {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	body .lcm-frontend-wrap .lcm-mobile-budget-summary {
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}
}

.lcm-frontend-wrap * {
	box-sizing: border-box;
}

.lcm-shell {
	display: grid;
	gap: 24px;
}

.lcm-shell-body {
	display: grid;
	grid-template-columns: 296px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.lcm-shell-sidebar {
	position: sticky;
	top: 24px;
	display: grid;
	gap: 18px;
}

.lcm-side-filter,
.lcm-side-nav,
.lcm-card {
	border: 1px solid var(--lcm-border);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--lcm-shadow);
}

.lcm-side-filter,
.lcm-side-nav {
	border-radius: 24px;
}

.lcm-side-filter {
	padding: 18px;
}

.lcm-side-nav {
	display: grid;
	gap: 12px;
	padding: 18px;
}

.lcm-side-nav a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	border-radius: 18px;
	color: var(--lcm-text);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lcm-side-nav a:hover,
.lcm-side-nav a.is-active {
	background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.04));
	color: var(--lcm-primary);
	transform: translateX(2px);
}

.lcm-side-nav__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: #eef4ff;
	color: var(--lcm-primary);
	font-size: 11px;
	font-weight: 800;
}

.lcm-shell-content {
	display: grid;
	gap: 24px;
}

.lcm-mobile-toolbar {
	display: none;
}

.lcm-card {
	padding: 30px 32px;
	border-radius: 26px;
}

.lcm-section-card {
	scroll-margin-top: 32px;
}

.lcm-section-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.lcm-section-head__copy {
	min-width: 0;
}

.lcm-section-head h3,
.lcm-password-card h2,
.lcm-empty-state h3 {
	margin: 0 0 6px;
	color: var(--lcm-text);
	font-size: clamp(24px, 2vw, 44px);
	line-height: 1.15;
}

.lcm-section-head p,
.lcm-password-card p,
.lcm-empty-state p {
	margin: 0;
	color: var(--lcm-muted);
	line-height: 1.75;
}

.lcm-month-filter {
	display: grid;
	gap: 8px;
	min-width: 260px;
}

.lcm-month-filter label,
.lcm-password-form label {
	font-size: 13px;
	font-weight: 700;
	color: var(--lcm-text);
	white-space: nowrap;
}

.lcm-month-filter__controls {
	display: flex;
	gap: 10px;
	align-items: center;
}

.lcm-month-filter select,
.lcm-month-filter button,
.lcm-password-form input,
.lcm-password-form button {
	height: 46px;
	border-radius: 12px;
}

.lcm-month-filter select,
.lcm-password-form input {
	width: 100%;
	padding: 0 14px;
	border: 1px solid var(--lcm-border-strong);
	background: #fff;
	color: var(--lcm-text);
	font-size: 14px;
}

.lcm-month-filter button,
.lcm-password-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border: 0;
	background: linear-gradient(135deg, var(--lcm-primary), var(--lcm-primary-strong));
	box-shadow: 0 14px 26px rgba(37, 99, 235, 0.18);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lcm-month-filter button:hover,
.lcm-password-form button:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 30px rgba(37, 99, 235, 0.22);
}

.lcm-quick-entry-card {
	border-color: rgba(37, 99, 235, 0.24);
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 32%),
		rgba(255, 255, 255, 0.96);
}

.lcm-quick-entry-mode {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.lcm-quick-entry-mode label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid var(--lcm-border);
	border-radius: 999px;
	background: #fff;
	color: var(--lcm-text);
	font-size: 14px;
	font-weight: 800;
}

.lcm-quick-entry-grid {
	display: grid;
	grid-template-columns: 150px minmax(180px, 1fr) 150px 150px minmax(190px, 1fr) auto;
	gap: 14px;
	align-items: end;
}

.lcm-quick-entry-field {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.lcm-quick-entry-field span {
	color: var(--lcm-text);
	font-size: 13px;
	font-weight: 800;
}

.lcm-quick-entry-field input,
.lcm-quick-entry-field select {
	width: 100%;
	height: 46px;
	padding: 0 14px;
	border: 1px solid var(--lcm-border-strong);
	border-radius: 12px;
	background: #fff;
	color: var(--lcm-text);
	font-size: 14px;
}

.lcm-quick-entry-field input:focus,
.lcm-quick-entry-field select:focus {
	border-color: var(--lcm-primary);
	outline: none;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.lcm-quick-entry-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--lcm-primary), var(--lcm-primary-strong));
	box-shadow: 0 14px 26px rgba(37, 99, 235, 0.18);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	white-space: nowrap;
}

.lcm-quick-entry-preview,
.lcm-quick-entry-notice,
.lcm-quick-entry-empty {
	margin: 14px 0 0;
	padding: 12px 14px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
}

.lcm-quick-entry-preview {
	border: 1px solid var(--lcm-border);
	background: rgba(255, 255, 255, 0.76);
	color: var(--lcm-muted);
}

.lcm-quick-entry-preview strong {
	color: var(--lcm-primary);
	font-size: 18px;
}

.lcm-quick-entry-notice.is-success {
	border: 1px solid rgba(16, 185, 129, 0.24);
	background: rgba(16, 185, 129, 0.1);
	color: #0f8f68;
}

.lcm-quick-entry-notice.is-error,
.lcm-quick-entry-empty {
	border: 1px solid rgba(239, 68, 68, 0.22);
	background: rgba(239, 68, 68, 0.08);
	color: #b4232c;
}

.lcm-month-filter--sidebar .lcm-month-filter__controls {
	flex-direction: column;
	align-items: stretch;
}

.lcm-month-filter--sidebar select,
.lcm-month-filter--sidebar button {
	width: 100%;
}

.lcm-month-filter--sidebar button {
	white-space: nowrap;
}

.lcm-month-filter--mobile,
.lcm-heading-mobile,
.lcm-mobile-budget-summary,
.lcm-mobile-analytics,
.lcm-mobile-trend-summary,
.lcm-mobile-trend-note {
	display: none;
}

.lcm-read-panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 18px;
}

.lcm-read-panel__item {
	padding: 18px 20px;
	border: 1px solid var(--lcm-border);
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.lcm-read-panel__item label {
	display: block;
	margin-bottom: 8px;
	color: var(--lcm-muted);
	font-size: 12px;
	font-weight: 700;
}

.lcm-read-panel__value {
	color: var(--lcm-text);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.lcm-overview-grid,
.lcm-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.lcm-overview-card {
	padding: 20px 22px;
	border: 1px solid var(--lcm-border);
	border-radius: 20px;
	background: linear-gradient(180deg, #fbfdff, #f6f9ff);
}

.lcm-overview-card span,
.lcm-overview-card small {
	display: block;
	color: var(--lcm-muted);
}

.lcm-overview-card strong {
	display: block;
	margin-top: 8px;
	font-size: 28px;
	line-height: 1.1;
	color: var(--lcm-text);
}

.lcm-overview-card small {
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.6;
}

.lcm-overview-card.is-primary {
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	border-color: transparent;
}

.lcm-overview-card.is-primary span,
.lcm-overview-card.is-primary small,
.lcm-overview-card.is-primary strong {
	color: #fff;
}

.lcm-budget-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 20px;
}

.lcm-budget-strip__item,
.lcm-mobile-mini-card {
	padding: 16px 18px;
	border: 1px solid var(--lcm-border);
	border-radius: 18px;
	background: linear-gradient(180deg, #fbfdff, #f7faff);
}

.lcm-budget-strip__item span,
.lcm-mobile-mini-card span {
	display: block;
	color: var(--lcm-muted);
	font-size: 12px;
}

.lcm-budget-strip__item strong,
.lcm-mobile-mini-card strong {
	display: block;
	margin-top: 8px;
	color: var(--lcm-text);
	font-size: 22px;
	line-height: 1.2;
}

.lcm-mobile-mini-card.is-accent strong,
.lcm-mobile-mini-card.is-actual strong {
	color: #1b63ff;
}

.lcm-mobile-mini-card.is-remaining strong {
	color: #2f4db4;
}

.lcm-desktop-table {
	overflow-x: auto;
}

.lcm-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--lcm-border);
	border-radius: 18px;
	overflow: hidden;
}

.lcm-table th,
.lcm-table td {
	padding: 15px 12px;
	border-right: 1px solid #e6edf8;
	border-bottom: 1px solid #e6edf8;
	text-align: center;
	vertical-align: middle;
	background: #fff;
}

.lcm-table th:last-child,
.lcm-table td:last-child {
	border-right: 0;
}

.lcm-table tbody tr:last-child td,
.lcm-table tfoot tr:last-child th,
.lcm-table tfoot tr:last-child td {
	border-bottom: 0;
}

.lcm-table thead th {
	background: #f8fbff;
	color: #213456;
	font-size: 14px;
	font-weight: 700;
}

.lcm-table tbody td,
.lcm-table tfoot th,
.lcm-table tfoot td {
	font-size: 14px;
	color: var(--lcm-text);
}

.lcm-table tfoot th,
.lcm-table tfoot td {
	background: #fbfdff;
	font-weight: 700;
}

.lcm-table tbody td:first-child,
.lcm-table tfoot th:first-child {
	text-align: left;
}

.lcm-inline-note {
	margin-top: 4px;
	color: var(--lcm-muted);
	font-size: 12px;
}

.lcm-table-note {
	margin: 14px 0 0;
	color: var(--lcm-muted);
	font-size: 13px;
	line-height: 1.75;
	text-align: center;
}

.lcm-mobile-cards {
	display: none;
}

.lcm-mobile-expense-card {
	padding: 18px;
	border: 1px solid var(--lcm-border);
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.lcm-mobile-expense-card + .lcm-mobile-expense-card {
	margin-top: 14px;
}

.lcm-mobile-expense-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.lcm-mobile-expense-card__head strong {
	display: block;
	font-size: 22px;
	line-height: 1.2;
}

.lcm-mobile-expense-card__type {
	display: inline-block;
	margin-top: 6px;
	color: var(--lcm-muted);
	font-size: 12px;
}

.lcm-mobile-expense-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	color: var(--lcm-primary);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.lcm-mobile-expense-block + .lcm-mobile-expense-block {
	margin-top: 16px;
}

.lcm-mobile-expense-block > label {
	display: block;
	margin-bottom: 10px;
	color: var(--lcm-text);
	font-size: 15px;
	font-weight: 800;
}

.lcm-mobile-expense-block.is-planned > label::before,
.lcm-mobile-expense-block.is-actual > label::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 18px;
	margin-right: 8px;
	border-radius: 999px;
	vertical-align: -3px;
}

.lcm-mobile-expense-block.is-planned > label::before {
	background: linear-gradient(180deg, #2563eb, #1d4ed8);
}

.lcm-mobile-expense-block.is-actual > label::before {
	background: linear-gradient(180deg, #38d39f, #20b592);
}

.lcm-mobile-expense-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.lcm-mobile-expense-grid div {
	padding: 12px;
	border: 1px solid rgba(37, 99, 235, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
}

.lcm-mobile-expense-grid span {
	display: block;
	color: var(--lcm-muted);
	font-size: 11px;
	line-height: 1.5;
}

.lcm-mobile-expense-grid strong {
	display: block;
	margin-top: 8px;
	color: var(--lcm-text);
	font-size: 18px;
	line-height: 1.2;
}

.lcm-mobile-expense-note {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.lcm-mobile-expense-note span {
	display: block;
	color: var(--lcm-muted);
	font-size: 12px;
	font-weight: 700;
}

.lcm-mobile-expense-note p {
	margin: 8px 0 0;
	color: var(--lcm-text);
	font-size: 14px;
	line-height: 1.7;
}

.lcm-stats-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lcm-stat-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 22px;
	border: 1px solid var(--lcm-border);
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.lcm-stat-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: #eef4ff;
	color: var(--lcm-primary);
	font-size: 18px;
	font-weight: 800;
}

.lcm-stat-card span {
	display: block;
	color: var(--lcm-muted);
}

.lcm-stat-card strong {
	display: block;
	margin-top: 6px;
	font-size: 28px;
	line-height: 1.1;
}

.lcm-mobile-analytics-card,
.lcm-mobile-composition-card {
	padding: 16px;
	border: 1px solid var(--lcm-border);
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.lcm-mobile-analytics-card h4,
.lcm-mobile-composition-card h4,
.lcm-mobile-trend-note h4 {
	margin: 0 0 14px;
	color: var(--lcm-text);
	font-size: 18px;
	line-height: 1.2;
}

.lcm-mobile-analytics__body {
	display: grid;
	grid-template-columns: 138px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.lcm-mobile-donut {
	position: relative;
	display: grid;
	align-content: center;
	justify-items: center;
	width: 128px;
	height: 128px;
	border-radius: 50%;
	background:
		radial-gradient(circle at center, #fff 0 48px, transparent 49px),
		conic-gradient(#2563eb 0 var(--lcm-donut-ratio), #e8efff var(--lcm-donut-ratio) 100%);
}

.lcm-mobile-donut span {
	color: var(--lcm-muted);
	font-size: 12px;
}

.lcm-mobile-donut strong {
	margin-top: 4px;
	color: var(--lcm-text);
	font-size: 14px;
	line-height: 1.2;
}

.lcm-mobile-analytics__metrics {
	display: grid;
	gap: 12px;
}

.lcm-mobile-analytics__metric {
	padding: 12px;
	border: 1px solid rgba(37, 99, 235, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
}

.lcm-mobile-analytics__metric-copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.lcm-mobile-analytics__metric-copy span,
.lcm-mobile-analytics__metric em,
.lcm-mobile-composition-item em {
	color: var(--lcm-muted);
	font-size: 12px;
	font-style: normal;
}

.lcm-mobile-analytics__metric-copy strong {
	color: var(--lcm-text);
	font-size: 16px;
	line-height: 1.2;
}

.lcm-mobile-analytics__bar,
.lcm-mobile-composition-item__bar {
	height: 8px;
	margin-top: 10px;
	border-radius: 999px;
	background: #e7eefb;
	overflow: hidden;
}

.lcm-mobile-analytics__bar span,
.lcm-mobile-composition-item__bar span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #2f74ff, #2563eb);
}

.lcm-mobile-analytics__metric.is-actual .lcm-mobile-analytics__bar span {
	background: linear-gradient(90deg, #6fe2c3, #2563eb);
}

.lcm-mobile-analytics__metric em,
.lcm-mobile-composition-item em {
	display: block;
	margin-top: 8px;
}

.lcm-mobile-composition-list {
	display: grid;
	gap: 12px;
}

.lcm-mobile-composition-item {
	padding: 12px;
	border: 1px solid rgba(37, 99, 235, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
}

.lcm-mobile-composition-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.lcm-mobile-composition-item__head strong,
.lcm-mobile-composition-item__head span {
	font-size: 14px;
	line-height: 1.2;
}

.lcm-mobile-composition-item__head span {
	color: var(--lcm-text);
	font-weight: 700;
}

.lcm-trend-list {
	display: grid;
	gap: 18px;
}

.lcm-trend-item {
	padding: 20px 22px;
	border: 1px solid var(--lcm-border);
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.lcm-trend-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.lcm-trend-item__head strong {
	font-size: 16px;
}

.lcm-trend-item__head span {
	color: var(--lcm-muted);
	font-size: 13px;
}

.lcm-trend-metric + .lcm-trend-metric {
	margin-top: 14px;
}

.lcm-trend-metric label {
	display: block;
	margin-bottom: 6px;
	color: var(--lcm-muted);
	font-size: 12px;
	font-weight: 700;
}

.lcm-trend-metric em {
	display: inline-block;
	margin-top: 6px;
	color: var(--lcm-text);
	font-size: 13px;
	font-style: normal;
	font-weight: 700;
}

.lcm-progress {
	height: 12px;
	border-radius: 999px;
	background: #e9eff8;
	overflow: hidden;
}

.lcm-progress span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #7fb1ff, #2563eb);
}

.lcm-progress.is-actual span {
	background: linear-gradient(90deg, #8fd2c4, #2563eb);
}

.lcm-mobile-trend-note__box {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px;
	border: 1px solid rgba(37, 99, 235, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
}

.lcm-mobile-trend-note__box span {
	display: inline-flex;
	flex: 0 0 24px;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.12);
	color: var(--lcm-primary);
	font-size: 13px;
	font-weight: 800;
}

.lcm-mobile-trend-note__box p {
	margin: 0;
	color: var(--lcm-muted);
	font-size: 13px;
	line-height: 1.7;
}

.lcm-password-card {
	max-width: 520px;
	margin: 0 auto;
}

.lcm-password-card__inner {
	display: grid;
	gap: 16px;
}

.lcm-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--lcm-primary), var(--lcm-primary-strong));
	color: #fff;
	font-size: 16px;
	font-weight: 800;
}

.lcm-password-form {
	display: grid;
	gap: 10px;
}

.lcm-password-form button {
	width: 100%;
}

.lcm-alert {
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 14px;
}

.lcm-alert.is-error {
	border: 1px solid rgba(220, 38, 38, 0.18);
	background: rgba(220, 38, 38, 0.08);
	color: #b91c1c;
}

.lcm-empty-state {
	text-align: center;
}

@media (min-width: 1241px) {
	.lcm-shell-sidebar {
		position: sticky;
		top: var(--lcm-sticky-menu-offset);
		z-index: 50;
		align-self: start;
	}

	.lcm-section-card {
		scroll-margin-top: var(--lcm-sticky-anchor-offset);
	}
}

@media (max-width: 1240px) {
	.lcm-frontend-wrap {
		width: calc(100vw - 24px);
		padding-top: 24px;
		padding-bottom: 32px;
	}

	.lcm-read-panel,
	.lcm-budget-strip,
	.lcm-overview-grid,
	.lcm-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcm-shell-body {
		grid-template-columns: 1fr;
	}

	.lcm-shell-sidebar {
		position: static;
	}

	.lcm-side-nav {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.lcm-quick-entry-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcm-quick-entry-submit {
		width: 100%;
	}
}

@media (max-width: 900px) {
	.lcm-section-head,
	.lcm-trend-item__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.lcm-month-filter,
	.lcm-month-filter__controls {
		width: 100%;
	}

	.lcm-side-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcm-quick-entry-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.lcm-frontend-wrap {
		width: calc(100vw - 16px);
		padding: calc(var(--lcm-sticky-menu-offset) + 12px) 0 20px;
	}

	.lcm-shell-content {
		gap: 18px;
	}

	.lcm-mobile-toolbar {
		display: flex;
		justify-content: flex-end;
		margin-bottom: -2px;
	}

	.lcm-shell-sidebar {
		display: none;
	}

	.lcm-card {
		padding: 18px 16px;
		border-radius: 22px;
	}

	.lcm-quick-entry-mode {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcm-quick-entry-mode label {
		justify-content: center;
	}

	.lcm-section-head {
		flex-direction: row;
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 18px;
	}

	.lcm-section-head__copy {
		flex: 1 1 auto;
	}

	.lcm-section-head h3,
	.lcm-empty-state h3 {
		font-size: 24px;
	}

	.lcm-section-head p {
		font-size: 13px;
		line-height: 1.7;
	}

	.lcm-month-filter--mobile,
	.lcm-mobile-budget-summary,
	.lcm-mobile-analytics,
	.lcm-mobile-trend-summary,
	.lcm-mobile-trend-note {
		display: block;
	}

	.lcm-month-filter--mobile {
		flex: 0 0 176px;
		min-width: 176px;
		gap: 0;
	}

	.lcm-month-filter--mobile label {
		display: none;
	}

	.lcm-month-filter--mobile .lcm-month-filter__controls {
		display: block;
	}

	.lcm-month-filter--mobile select {
		width: 100%;
		height: 38px;
		padding: 0 34px 0 38px;
		border-radius: 12px;
		background-color: #fff;
		background-image:
			url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Crect x='2' y='3' width='10' height='9' rx='2' fill='none' stroke='%232563eb' stroke-width='1.4'/%3E%3Cpath d='M4.2 1.8v2.4M9.8 1.8v2.4M2.2 5.2h9.6' stroke='%232563eb' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"),
			url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5 6 7.5 9 4.5' fill='none' stroke='%236b7894' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
		background-position: 14px 50%, calc(100% - 12px) 50%;
		background-repeat: no-repeat, no-repeat;
		background-size: 14px 14px, 12px 12px;
		font-size: 14px;
	}

	.lcm-heading-desktop {
		display: none;
	}

	.lcm-heading-mobile {
		display: inline;
	}

	.lcm-read-panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		margin-bottom: 14px;
	}

	.lcm-read-panel__item {
		position: relative;
		min-height: 94px;
		padding: 14px 14px 14px 52px;
		border-radius: 16px;
	}

	.lcm-read-panel__item::before {
		position: absolute;
		top: 16px;
		left: 14px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 26px;
		border-radius: 10px;
		background: #eef4ff;
		color: var(--lcm-primary);
		font-size: 12px;
		font-weight: 800;
	}

	.lcm-read-panel__item:nth-child(1)::before {
		content: "MO";
	}

	.lcm-read-panel__item:nth-child(2)::before {
		content: "$";
	}

	.lcm-overview-grid,
	.lcm-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.lcm-overview-card,
	.lcm-stat-card {
		border-radius: 18px;
	}

	.lcm-overview-card {
		padding: 16px 14px;
	}

	.lcm-overview-card strong {
		font-size: 20px;
	}

	.lcm-overview-card.is-primary {
		grid-column: 1 / -1;
		padding: 18px 18px 18px 72px;
		position: relative;
	}

	.lcm-overview-card.is-primary::before {
		content: "$";
		position: absolute;
		top: 18px;
		left: 18px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.2);
		font-size: 18px;
		font-weight: 800;
	}

	.lcm-mobile-budget-summary {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
		margin-bottom: 16px;
	}

	.lcm-mobile-mini-card {
		padding: 12px;
		border-radius: 16px;
	}

	.lcm-mobile-mini-card strong {
		font-size: 16px;
	}

	.lcm-budget-strip,
	.lcm-table-note {
		display: none;
	}

	.lcm-desktop-table {
		display: none;
	}

	.lcm-mobile-cards {
		display: block;
	}

	.lcm-mobile-expense-card {
		padding: 16px;
	}

	.lcm-mobile-expense-card__head strong {
		font-size: 18px;
	}

	.lcm-mobile-expense-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.lcm-mobile-expense-grid div {
		padding: 10px;
		border-radius: 14px;
	}

	.lcm-mobile-expense-grid strong {
		font-size: 14px;
	}

	.lcm-stats-grid {
		margin-bottom: 16px;
	}

	.lcm-stat-card {
		padding: 14px 12px;
		gap: 10px;
	}

	.lcm-stat-card__icon {
		width: 34px;
		height: 34px;
		border-radius: 12px;
		font-size: 14px;
	}

	.lcm-stat-card strong {
		font-size: 16px;
	}

	.lcm-mobile-analytics {
		display: grid;
		gap: 16px;
	}

	.lcm-mobile-analytics__body {
		grid-template-columns: 138px minmax(0, 1fr);
	}

	.lcm-mobile-trend-summary {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		margin-bottom: 16px;
	}

	.lcm-trend-list {
		gap: 14px;
	}

	.lcm-trend-item {
		padding: 16px;
		border-radius: 20px;
	}

	.lcm-trend-item__head {
		flex-direction: row;
		align-items: flex-start;
	}

	.lcm-trend-item__head strong {
		font-size: 18px;
	}
}
