
	.card.svelte-1yj9cjw {
		background: var(--surface);
		border-radius: var(--radius-lg);
		padding: 18px;
		border: 1px solid var(--border);
		box-shadow: var(--shadow-sm);
		display: flex;
		align-items: center;
		gap: 18px;
		margin-bottom: 14px;
	}

	.ring-wrap.svelte-1yj9cjw {
		position: relative;
		width: 132px;
		height: 132px;
		flex-shrink: 0;
	}

	.ring.svelte-1yj9cjw {
		width: 100%;
		height: 100%;
		transform: rotate(-90deg);
	}

	.ring-track.svelte-1yj9cjw {
		fill: none;
		stroke: var(--surface-2);
		stroke-width: 12;
	}

	.ring-fill.svelte-1yj9cjw {
		fill: none;
		stroke: var(--brand);
		stroke-width: 12;
		stroke-linecap: round;
		transition:
			stroke-dashoffset 0.6s ease,
			stroke 0.2s;
	}

	.card.over.svelte-1yj9cjw .ring-fill:where(.svelte-1yj9cjw) {
		stroke: var(--danger);
	}

	.ring-center.svelte-1yj9cjw {
		position: absolute;
		inset: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1px;
	}

	.ring-value.svelte-1yj9cjw {
		font-size: 1.6rem;
		font-weight: 800;
		color: var(--text);
		letter-spacing: -0.02em;
		line-height: 1;
	}

	.ring-unit.svelte-1yj9cjw {
		font-size: 0.72rem;
		color: var(--text-subtle);
		font-weight: 600;
		letter-spacing: 0.05em;
		text-transform: uppercase;
	}

	.info.svelte-1yj9cjw {
		flex: 1;
		min-width: 0;
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

	.label.svelte-1yj9cjw {
		font-size: 0.7rem;
		font-weight: 700;
		color: var(--text-subtle);
		text-transform: uppercase;
		letter-spacing: 0.08em;
	}

	.headline.svelte-1yj9cjw {
		font-size: 1.05rem;
		font-weight: 700;
		color: var(--text);
		letter-spacing: -0.01em;
		line-height: 1.25;
	}

	.card.over.svelte-1yj9cjw .headline:where(.svelte-1yj9cjw) {
		color: var(--danger);
	}

	.goal.svelte-1yj9cjw {
		font-size: 0.78rem;
		color: var(--text-muted);
		margin-bottom: 10px;
	}

	.track.svelte-1yj9cjw {
		height: 6px;
		background: var(--surface-2);
		border-radius: 999px;
		overflow: hidden;
	}

	.track-fill.svelte-1yj9cjw {
		height: 100%;
		background: var(--brand);
		border-radius: 999px;
		transition:
			width 0.6s ease,
			background 0.2s;
	}

	.card.over.svelte-1yj9cjw .track-fill:where(.svelte-1yj9cjw) {
		background: var(--danger);
	}

	@media (min-width: 900px) {
		.card.svelte-1yj9cjw {
			padding: 24px 28px;
			gap: 28px;
			margin-bottom: 0;
			height: 100%;
		}

		.ring-wrap.svelte-1yj9cjw {
			width: 160px;
			height: 160px;
		}

		.ring-value.svelte-1yj9cjw {
			font-size: 2rem;
		}

		.headline.svelte-1yj9cjw {
			font-size: 1.25rem;
		}

		.goal.svelte-1yj9cjw {
			font-size: 0.85rem;
		}
	}

	.grid.svelte-1b3tqjl {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
		margin-bottom: 18px;
	}

	.cell.svelte-1b3tqjl {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--radius-md);
		padding: 12px;
		display: flex;
		flex-direction: column;
		gap: 6px;
		box-shadow: var(--shadow-sm);
	}

	.row.svelte-1b3tqjl {
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.badge.svelte-1b3tqjl {
		width: 24px;
		height: 24px;
		border-radius: 7px;
		background: var(--soft);
		color: var(--color);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.label.svelte-1b3tqjl {
		font-size: 0.7rem;
		font-weight: 600;
		color: var(--text-muted);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.value-row.svelte-1b3tqjl {
		display: flex;
		align-items: baseline;
		gap: 4px;
	}

	.value.svelte-1b3tqjl {
		font-size: 1.3rem;
		font-weight: 800;
		color: var(--text);
		letter-spacing: -0.02em;
		line-height: 1;
	}

	.unit.svelte-1b3tqjl {
		font-size: 0.72rem;
		color: var(--text-subtle);
		font-weight: 500;
	}

	.track.svelte-1b3tqjl {
		height: 4px;
		background: var(--surface-2);
		border-radius: 999px;
		overflow: hidden;
	}

	.track-fill.svelte-1b3tqjl {
		height: 100%;
		background: var(--color);
		border-radius: 999px;
		transition: width 0.5s ease;
	}

	@media (min-width: 900px) {
		.grid.svelte-1b3tqjl {
			grid-template-columns: 1fr;
			gap: 10px;
			margin-bottom: 0;
			height: 100%;
			align-content: stretch;
		}

		.cell.svelte-1b3tqjl {
			padding: 14px 16px;
			gap: 8px;
			flex: 1;
		}

		.value.svelte-1b3tqjl {
			font-size: 1.5rem;
		}

		.label.svelte-1b3tqjl {
			font-size: 0.78rem;
		}
	}

	.dashboard.svelte-1uha8ag {
		display: flex;
		flex-direction: column;
	}

	.success-banner.svelte-1uha8ag {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: var(--brand-soft);
		color: var(--brand-strong);
		padding: 10px 14px;
		border-radius: var(--radius-sm);
		margin-bottom: 14px;
		font-size: 0.86rem;
		font-weight: 600;
		border: 1px solid #bbf7d0;
		align-self: flex-start;
	}

	.page-header.svelte-1uha8ag {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 16px;
		margin-bottom: 16px;
	}

	.page-header.svelte-1uha8ag h1:where(.svelte-1uha8ag) {
		font-size: 1.4rem;
		font-weight: 800;
		color: var(--text);
		letter-spacing: -0.02em;
		margin: 0 0 2px;
	}

	.date-heading.svelte-1uha8ag {
		font-size: 0.85rem;
		color: var(--text-muted);
		font-weight: 500;
		margin: 0;
		text-transform: capitalize;
	}

	.header-cta.svelte-1uha8ag {
		display: none;
		align-items: center;
		gap: 6px;
		background: var(--brand);
		color: white;
		padding: 9px 14px;
		border-radius: 10px;
		text-decoration: none;
		font-size: 0.88rem;
		font-weight: 600;
		box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
		transition: background 0.15s;
	}

	.header-cta.svelte-1uha8ag:hover {
		background: var(--brand-strong);
	}

	.stats-grid.svelte-1uha8ag {
		display: flex;
		flex-direction: column;
		gap: 0;
		margin-bottom: 22px;
	}

	.section-header.svelte-1uha8ag {
		display: flex;
		align-items: center;
		gap: 8px;
		margin-bottom: 10px;
	}

	.section-title.svelte-1uha8ag {
		font-size: 0.78rem;
		font-weight: 700;
		color: var(--text-muted);
		text-transform: uppercase;
		letter-spacing: 0.07em;
		margin: 0;
	}

	.meal-count.svelte-1uha8ag {
		font-size: 0.7rem;
		background: var(--brand-soft);
		color: var(--brand-strong);
		padding: 1px 8px;
		border-radius: 999px;
		font-weight: 700;
	}

	.meals-list.svelte-1uha8ag {
		display: flex;
		flex-direction: column;
	}

	.empty-state.svelte-1uha8ag {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 40px 16px;
		background: var(--surface);
		border: 1px dashed var(--border-strong);
		border-radius: var(--radius-lg);
	}

	.empty-icon.svelte-1uha8ag {
		width: 56px;
		height: 56px;
		border-radius: 16px;
		background: var(--brand-soft);
		color: var(--brand-strong);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 14px;
	}

	.empty-title.svelte-1uha8ag {
		margin: 0 0 4px;
		font-size: 1rem;
		font-weight: 700;
		color: var(--text);
	}

	.empty-text.svelte-1uha8ag {
		margin: 0 0 18px;
		font-size: 0.88rem;
		color: var(--text-muted);
	}

	.cta-btn.svelte-1uha8ag {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		background: var(--brand);
		color: white;
		text-decoration: none;
		padding: 11px 20px;
		border-radius: 10px;
		font-weight: 600;
		font-size: 0.9rem;
		box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
		transition: background 0.15s;
	}

	.cta-btn.svelte-1uha8ag:hover {
		background: var(--brand-strong);
	}

	@media (min-width: 900px) {
		.header-cta.svelte-1uha8ag {
			display: inline-flex;
		}

		.page-header.svelte-1uha8ag h1:where(.svelte-1uha8ag) {
			font-size: 1.7rem;
		}

		.date-heading.svelte-1uha8ag {
			font-size: 0.95rem;
		}

		.stats-grid.svelte-1uha8ag {
			display: grid;
			grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
			gap: 14px;
			align-items: stretch;
		}

		.meals-list.svelte-1uha8ag {
			display: grid;
			grid-template-columns: 1fr;
			gap: 0;
		}
	}

	@media (min-width: 1200px) {
		.meals-list.svelte-1uha8ag {
			grid-template-columns: 1fr 1fr;
			column-gap: 12px;
		}

		.meals-list.svelte-1uha8ag .meal-card {
			margin-bottom: 12px;
		}
	}
