  body {
            font-family: Arial, sans-serif;
            text-align: center;
            font-size: 14px;
            width: 21cm; /* Breite für DIN A4 */
            margin: 0 auto;
        }

        .banderolen-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            page-break-inside: avoid;
        }

        .banderole {
            width: 21cm;
            height: 3.5cm;
            border: 2px solid black;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px;
            margin: 10px 0;
            position: relative;
            box-sizing: border-box;
        }

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

        .traveler-name {
            font-size: 1.5em;
            font-weight: bold;
            text-align: center;
            flex-grow: 1;
        }

        .traveler-anzahl {
            font-size: 1.6em;
            font-weight: bold;
            padding-right: 55px;
        }
        .print-only {
    display: none;
}


        /* Verstecke nicht benötigte Elemente beim Drucken */
        @media print {
 .print-only {
        display: block;
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
    }
            body {
                width: 21cm;
                height: 29.7cm;
            }
            .no-print {
                display: none;
            }
            .banderolen-container {
                display: block;
                page-break-after: always;
            }
        }