.ticket-container {
    margin: 0 auto;
    height: 100%;
    width: 100%;
    background-color: #FFFDE6;
    position: relative;
}
#ticket{
    height: 600px;
    width: 400px;
    margin: 0 auto;
}

.ticket-header {
    height: 30%;
    background: url('../img/ticket-header.png') top center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    text-align: center;
}

.ticket-logo {
    padding-top: 1.8rem;
    border: none;
}

.ticket-logo img {
    width: 70%;
    border: none;
}

.ticket-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem;
}

.ticket-content-left {
    width: 50%;
    display: 1;
    justify-content: center;
    align-items: center;
}

.ticket-content-left img {
    width: 100%;
    height: 100%;
    padding: 1rem 0rem;
}

.ticket-content-right {
    width: 50%;
    padding-left: 1rem;
}

.ticket-content-right tr {
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

.ticket-footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #0088ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}