/* =========================================
   SKELETON SHIMMER LOADER
   ========================================= */

/* The Container mimicking the Meal Card */
.skeleton-card {
	background: #FFFFFF;
	border-radius: 16px;
	border: 1px solid #F1F5F9;
	padding: 20px;
	margin-bottom: 24px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* The "Shimmer" Animation Class */
.skeleton-shimmer {
	background: #f6f7f8;
	background-image: linear-gradient(
		to right,
		#f6f7f8 0%,
		#edeef1 20%,
		#f6f7f8 40%,
		#f6f7f8 100%
	);
	background-repeat: no-repeat;
	background-size: 1200px 100%; 
	animation-duration: 1.2s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	animation-name: shimmer;
	animation-timing-function: linear;
	border-radius: 8px; /* Soft corners for shapes */
}

@keyframes shimmer {
	0% { background-position: -1200px 0; }
	100% { background-position: 1200px 0; }
}

/* --- Internal Shapes --- */

/* Header Shape (Mimics "Breakfast") */
.skeleton-header {
	height: 24px;
	width: 40%;
	margin-bottom: 20px;
}

/* Food Row Shapes */
.skeleton-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skeleton-text-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 60%;
}

.skeleton-line-long {
	height: 14px;
	width: 100%;
}

.skeleton-line-short {
	height: 10px;
	width: 60%;
}

/* Mimics the Blue Pill */
.skeleton-pill {
	height: 24px;
	width: 80px;
	border-radius: 20px;
}

/* Footer Shape */
.skeleton-footer {
	height: 50px;
	width: 100%;
	margin-top: 15px;
	border-radius: 12px;
}