            body {  margin: 0;
                padding: 0;
                font-family: Arial, Helvetica, sans-serif;
                color:#0F3825
            }
            .print-only {
                display: none !important;
            }
            .screen-only {
                display: block;
            }
            span {
                width: 50px;
                color: #000000;
            }
                main {
                    background-color: #F5F1E3 !important;
                }
                footer{
                    padding-top: 140px;
                    max-width: 768px;
                    margin: 0 auto;
                    background-color: #F5F1E3 !important;
                    box-shadow: none;
                    padding-left: 5%;
                    padding-right: 5%;
                }
                h1 {
                        font-size: 60px;
                        font-weight: bold;
                        margin-bottom: 0px;
                        text-align: center;
                        color: #0F3825;
                }
                h2 {
                    font-size: 27px;
                    margin-top: 50px;
                    margin-bottom: -10px;
                    text-align: left;
                    margin-left: 37px;
                    min-width: 0px;
                    color: #0F3825;
                }
                h3 {
                    font-size: 30px;
                    margin-top: 30px;
                    margin-bottom: 0px;
                }
                h4 {
                    color: #000000;
                    margin-top: 0px;
                    margin-bottom: 10px;
                }
                h5 {
                    text-align: center;
                    font-size: 25px;
                }

            /* Mezery mezi sekcemi menu */
            section, ul {
                margin-bottom: 15px;
            }

            /* Každá položka menu je <li> */
            li {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                padding: 10px 0;
                border-bottom: 1px solid #0F3825;
                align-items: center;
                color: #0F3825;
            }

            /* Text položky (název jídla), tučné místo h4 */
            li > strong {
                margin: 0;
                font-size: 18px;
                flex: 1;
                min-width: 0;
                word-wrap: break-word;
            }

            /* Popis položky */
            li > p {
                margin: 5px 0 0 0;
                font-size: 14px;
                color: #000;
                flex-basis: 100%;
                white-space: pre-wrap;

            }

            /* Cena nebo zvýrazněný text vpravo */
            li > span {
                font-weight: bold;
                white-space: nowrap;
                margin-left: 20px;
                min-width: 50px;
                text-align: right;
                color: #000;
            }

            span, li > p, li > span, h4 {
                color: #0F3825 !important; /* Aby text nebyl černý, ale ladil do zelena */
            }

            .datum {
                text-align: left;
                font-weight: bold;
                font-style: italic;
            }
            /* Responzivita */
            @media (max-width: 764px) {
                li {
                    flex-direction: column;
                    align-items: flex-start;

                }
                li > span {
                    margin-top: 5px;
                    text-align: left;
                    margin-left: 0;
                }
            }

            /* Tiskové styly */
            @media print {

                body {
                    color: #000;
                    background: #fff;
                    margin: 0;
                    padding: 0;
                    font-family: Arial, Helvetica, sans-serif;
                }

                header {
                    position: relative !important;
                    background: none !important;
                    box-shadow: none !important;
                    padding-top: 20px !important;
                    justify-content: center !important;
                    align-items: center !important;
                }
                header .screen-only {
                    display: none !important;
                }


                .logo {
                    position: absolute !important;
                    top: 20px !important;
                    left: 80px !important;
                }
                .logo img {
                    height: 160px !important;
                }

                .QR {
                    position: absolute !important;
                    top: 50px !important;
                    right: 145px !important;
                }
                
                .QR img {
                    height: 120px !important;
                }
                
                .nadpis {
                    display: block !important;
                    text-align: center !important;
                    margin: 0 auto 20px auto !important;
                    padding-left: 0 !important;
                    padding-right: 0 !important;
                }
                .nadpis h1 {
                    font-size: 60px !important;
                    font-weight: bold !important;
                    color: #000 !important;
                    margin-bottom: 0 !important;
                }

                /* Skrytí navigace a tlačítek */
                nav, #menu-toggle {
                    display: none !important;
                }

                /* Footer (kde je menu) zobrazit jako main area */
                footer {
                    padding-top: 0 !important;
                    max-width: 768px !important;
                    margin: 10px auto 0 auto !important;
                    background: #fff !important;
                    box-shadow: none !important;
                    padding-left: 0 !important;
                    padding-right: 3% !important;
                }

                /* Oprava barev a stylu textu (v menu) */
                h2 {
                    font-size: 27px !important;
                    margin-top: 50px !important;
                    margin-bottom: -10px !important;
                    text-align: left !important;
                    margin-left: 37px !important;
                    color: #000 !important;
                }
                h3 {
                    font-size: 30px !important;
                    margin-top: 30px !important;
                    margin-bottom: 0 !important;
                    color: #000 !important;
                }
                h4 {
                    color: #000 !important;
                    margin-top: 0 !important;
                    margin-bottom: 10px !important;
                }
                h5 {
                    text-align: center !important;
                    font-size: 25px !important;
                    color: #000 !important;
                }

                /* Položky menu - černé, s podtržením */
                li {
                    display: flex !important;
                    justify-content: space-between !important;
                    border-bottom: 1px solid #000 !important;
                    padding: 10px 0 !important; 
                    color: #000 !important;
                    align-items: flex-start !important;
                }

                li > strong {
                    font-size: 18px !important;
                    font-weight: bold !important;
                    color: #000 !important;
                    flex: 1 1 auto !important;
                    max-width: calc(100% - 60px) !important;
                    word-wrap: break-word !important;
                }

                li > p {
                    font-size: 14px !important;
                    color: #000 !important;
                    white-space: pre-wrap !important;
                    flex-basis: auto !important;
                    margin-right: 5px !important;
                }

                li > span {
                    color: #000 !important;
                    margin-left: auto !important;
                    text-align: right !important;
                    min-width: 50px !important;
                    white-space: nowrap !important;
                }

                /* Skryjeme odkazy a interaktivní prvky */
                a {
                    color: black !important;
                    text-decoration: none !important;
                    pointer-events: none !important;
                }
                .print-only {
                    display: block !important;
                    text-align: center !important;
                    font-size: 60px !important;
                    font-weight: bold !important;
                    color: #000 !important;
                    margin-bottom: 0px !important;
                    padding: 0 !important;
                }
            }
