﻿.ticket-container {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    page-break-inside: avoid;
}

.ticket-card {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    min-width: 220px;
    height: fit-content;
    padding: 8px 16px;
    border: 1px solid #333;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
    page-break-inside: avoid;
}

.ticket-info {
    flex: 1;
    padding-right: 10px;
    text-align:center;
}

.qr-section {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-section img {
    width: 120px;
    height: 100px;
}

.ticket-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}

@media print {
    body {
        margin: 0;
        padding: 0;
    }

    .ticket-card {
        page-break-inside: avoid;
    }
}