@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html, body {
	padding: 0;
	margin: 0;
}
body * {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

@page {
    size: A4 portrait;
}

.page-break {
	page-break-after: always;
}

.warning-image {
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-bottom: 3px;
}

.meal-delivery-warning {
	padding-bottom: 5px;
	font-size: 13px;
	color: #000;
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: center;
}

.week-print h3 {
    width: 100%;
    text-align: center;
}

.print-header-logo {
	width: 100%;
}

.print-header p {
	font-size: 20px;
}

.centered {
	width: 100%;
	text-align: center;
}

.bordered {
	border: 3px solid #000;
	padding: 10px;
}

.allergies {
    padding: 20px;
    font-size: 14px;
}

.meal-print {
	border-bottom: 1px solid #aaa;
	display: flex;
	flex-direction: column;
}

.meal-info {
	display: flex;
	flex-direction: row;
	height: 100%;
    align-items: center;
}

.meal-date {
	min-width: 150px;
	text-align: center;
	color: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1
	
}

.meal-dates {
	/*height: 100%;*/
	border-right: 1px solid #edebef;
	padding-left: 5px;
	padding-right: 5px;
	
	display: flex;
	flex-direction: column;
}

.meal-date-dayofweek {
	font-size: 16px;
}

.meal-date-day {
	font-size: 24px;
	font-weight: bold;
}

.meal-date-month {
	font-size: 16px;
}

.meal-courses {
    flex: 1;
}

.meal-course {
	font-size: 14px;
	display: flex;
	margin: 5px;
	flex-direction: row;
	color: #000;
}

.meal-course .icon {
	background-size: cover;
	margin-right: 10px;
	width: 12px;
	height: 12px;
}

.meal-course .text {
	line-height: 1;
	flex: 1;
}

.meal-course .icon.large {
	width: 18px;
	height: 18px;
}

.meal-course .text.large {
    font-size: 16px;
    line-height: 1.3;
}

.meal-soup .icon {
	background-image: url('../img/soup.png');
}

.meal-main .icon {
	background-image: url('../img/main.png');
}

.meal-dessert .icon {
	background-image: url('../img/dessert.png');
}

.variations-table {
    font-size: 12px;
}

.allergenen-img {
	width: 75%;
}

.allergenen-qr {
	width: 100px;
	height: 100px;
}