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

.k3ms-wrapper.is-loading {
	opacity: 0.55;
	pointer-events: none;
}

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

.k3ms-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
	margin: -12px 0 22px;
}

.k3ms-action {
	align-items: center;
	background: #fff;
	border: 1px solid #cbd8dd;
	border-radius: 8px;
	color: #214154;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	min-height: 38px;
	padding: 0 13px;
	text-decoration: none;
}

.k3ms-action:hover,
.k3ms-action:focus {
	background: #eef7f7;
	border-color: #0e6769;
	color: #0e6769;
}

.k3ms-action-pdf {
	background: #0e6769;
	border-color: #0e6769;
	color: #fff;
}

.k3ms-action-pdf:hover,
.k3ms-action-pdf:focus {
	background: #0b5456;
	color: #fff;
}

.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-actions {
		justify-content: center;
		margin-top: -4px;
	}
	.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;
	}
}

@media print {
	@page {
		margin: 12mm;
		size: A4 landscape;
	}

	body * {
		visibility: hidden;
	}

	.k3ms-wrapper,
	.k3ms-wrapper * {
		visibility: visible;
	}

	.k3ms-wrapper {
		font-family: Arial, sans-serif;
		left: 0;
		margin: 0;
		max-width: none;
		position: absolute;
		top: 0;
		width: 100%;
	}

	.k3ms-header {
		border-bottom: 3px solid #0e6769;
		margin-bottom: 12px;
		padding-bottom: 8px;
	}

	.k3ms-title {
		color: #0f2b41;
		font-size: 20px;
	}

	.k3ms-nav,
	.k3ms-actions,
	.k3ms-day-nav {
		display: none !important;
	}

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

	.k3ms-day,
	.k3ms-day:not(.is-active) {
		border: 1px solid #ccd8dd;
		border-radius: 0;
		box-shadow: none;
		display: block;
		margin: 0;
		padding: 8px;
		page-break-inside: avoid;
	}

	.k3ms-day-title {
		color: #0e6769;
		font-size: 14px;
		margin-bottom: 8px;
	}

	.k3ms-meal {
		background: #f6f8f9;
		margin-bottom: 6px;
		padding: 7px;
	}

	.k3ms-meal-label,
	.k3ms-label,
	.k3ms-allergene {
		font-size: 9px;
	}

	.k3ms-meal-content {
		font-size: 11px;
	}
}
