.k3ms-wrapper {
	max-width: 1200px;
	margin: auto;
	font-family: system-ui;
}

.k3ms-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	gap: 16px;
}

.k3ms-title {
	font-size: 26px;
	font-weight: 700;
	color: #0f2b41;
}

.k3ms-nav {
	background: #0e6769;
	color: white;
	border: none;
	padding: 10px 18px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 18px;
}

.k3ms-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 20px;
	text-decoration: none;
}

.k3ms-day-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}

.k3ms-day-tabs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	flex: 1;
}

.k3ms-day-tab,
.k3ms-day-step {
	border: 1px solid #d4dde1;
	background: #fff;
	color: #214154;
	border-radius: 8px;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	min-height: 40px;
}

.k3ms-day-tab.is-active {
	background: #0e6769;
	border-color: #0e6769;
	color: #fff;
}

.k3ms-day-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	flex: 0 0 40px;
}

.k3ms-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.k3ms-day {
	background: white;
	border-radius: 14px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	padding: 18px;
}

.k3ms-day:not(.is-active) {
	display: none;
}

.k3ms-day-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #0e6769;
	display: flex;
	align-items: center;
	gap: 6px;
}

.k3ms-meal {
	border-radius: 10px;
	padding: 12px;
	margin-bottom: 10px;
	background: #f6f8f9;
}

.k3ms-meal-header {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 4px;
}

.k3ms-meal-label {
	font-size: 12px;
	text-transform: uppercase;
	color: #666;
}

.k3ms-meal-content {
	font-size: 15px;
	font-weight: 600;
	color: #222;
}

.k3ms-allergenes {
	margin-top: 6px;
}

.k3ms-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 8px;
}

.k3ms-label {
	background: #e8f6ef;
	color: #1f6f43;
	border: 1px solid #bfe3cf;
	padding: 3px 7px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
}

.k3ms-allergene {
	background: #eef3f5;
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 11px;
	margin-right: 4px;
	display: inline-block;
}

/* couleurs repas */
.k3ms-entree {
	border-left: 4px solid #4CAF50;
}

.k3ms-plat {
	border-left: 4px solid #FF9800;
}

.k3ms-accompagnement {
	border-left: 4px solid #8BC34A;
}

.k3ms-laitier {
	border-left: 4px solid #03A9F4;
}

.k3ms-dessert {
	border-left: 4px solid #E91E63;
}

/* mobile */
@media ( max-width :900px) {
	.k3ms-grid {
		grid-template-columns: 1fr;
	}
	.k3ms-header {
		margin-bottom: 18px;
	}
	.k3ms-title {
		font-size: 20px;
		text-align: center;
	}
	.k3ms-day-nav {
		align-items: stretch;
	}
	.k3ms-day-tabs {
		display: flex;
		overflow-x: auto;
		scrollbar-width: thin;
	}
	.k3ms-day-tab {
		min-width: 104px;
		padding: 0 12px;
	}
	.k3ms-day {
		margin-bottom: 20px;
	}
}
