.ticket {
    background-color: #fdfdfd;
    border: 1px solid #ccc;
    width: 250px;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    color: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    box-sizing: border-box;
    transform-origin: top center;
    transform: translateY(-100%) rotateX(-90deg);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.ticket-header {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #999;
    padding-bottom: 5px;
}

.ticket-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #999;
    padding-bottom: 5px;
}

.ticket-body > div {
    display: flex;
    justify-content: space-between;
}

.ticket-body > div:last-child {
    justify-content: center;
    font-style: italic;
    margin-top: 5px;
}


.ticket-footer {
    text-align: center;
    font-size: 10px;
    margin-top: 5px;
}

