        html, body {
            font-family: 'Merriweather', serif;
            background-color: #FAEBD7;
            color: #333;
	    font-size: 22px;
            margin: 0;
            padding: 0;
        }

        header h1 {
            font-family: 'Tangerine', cursive;
	    font-weight: 700;
            font-size: 8em;
            color:  #333333;
            text-align: center;
            margin: 10px 0;
        }

        .menu-wrapper {
            width: 95vw;
            padding: 10px;
            margin: auto;
        }

        .menu-container {
            display: flex;
            align-items: stretch;
            gap: 15px;
        }

        .menu-section {
            flex: 1;
            padding: 10px;
            background-color: #FEFEFE;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }

        .dish {
            margin-bottom: 20px;
        }

        .dish-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 5px;
        }

        .dish-header h3 {
            font-size: 2.5em;
            color: #333333;
            margin: 0;
            display: flex;
            align-items: baseline;
	    margin-top: 20px;
        }

        .dish-header .english-name {
            font-size: 0.4em;
            color: #666;
            margin-left: 6px;
        }

        .price-block {
            text-align: right;
        }

        .price {
            font-size: 2.5em;
            font-weight: bold;
            color: #333333;
        }

        .dish-body {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
        }

        .dish-description {
            flex-grow: 1;
            font-size: 1.1em;
	    margin-right: 110px;
            line-height: 1.3;
	    font-weight: bold;
        }

        .dish-description p {
            margin: 0;
            font-weight: bold;
        }

        .price-info {
            font-size: 0.95em;
            white-space: nowrap;
            text-align: right;
            padding-top: 4px;
        }

        .dish-allergens {
            margin-top: 6px;
            font-size: 0.95em;
        }

        .dish-allergens strong {
            font-style: italic;
            font-weight: normal;
        }

        .dish-allergens em {
            font-style: italic;
        }

        .bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
        }

        .bottom-left-section {
            flex: 0 0 49%;
            padding: 10px;
            background-color: #fefefe;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin-top: 20px;
        }

        .logo-container {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .logo {
            width: 480px;
        }
/* MÅ komme før andre print-regler */
@page {
    size: A4 landscape;
    margin: 1cm;
}

/* Selve print-reglene */
@media print {

    html, body {
        width: 29.7cm;
        height: 21cm;
        background: white !important;
        color: black !important;
        font-size: 6pt;
        -webkit-print-color-adjust: exact;
        overflow: hidden;              /* hindrer sideskift */
    }

    /* Sikrer at innhold ikke brytes til ny side */
    .menu-wrapper,
    .menu-container,
    .menu-section,
    .bottom-row,
    .bottom-left-section {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    .menu-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .menu-container {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .menu-section {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.15) !important;
        border-radius: 6px !important;
        padding: 10px;
    }

    .bottom-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .bottom-left-section {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.15) !important;
        border-radius: 6px !important;
        padding: 10px;
        flex: 0 0 50%;
    }

    .logo-container {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .logo {
        width: 300px;
        height: auto;
    }

    header h1,
    .dish-header h3,
    .price,
    .dish-description,
    .dish-allergens,
    .price-info {
        color: black !important;
    }

    .english-name {
        color: #444 !important;
        font-style: italic;
    }
}

