body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    padding: 20px;
}
.ticket {
    border: 2px solid #ddd; /* Border around the ticket */
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
}
.ticket-header {
    padding: 10px;
    border-radius: 8px;
    color: #000;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-images {
    display: flex;
    overflow-x: scroll; /* Allow horizontal scrolling if needed */
    gap: 10px;
}

.team-image {
    height: 100px; /* Adjust size as needed */
    width: auto;
}

.selection-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.large-image {
    text-align: center;
}

.large-image img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .content {
        flex-direction: row;
        justify-content: space-between;
    }

    .team-images {
        overflow-x: hidden;
    }

    .selection-area {
        flex-direction: row;
        align-items: flex-start;
    }
}
.large-image img {
    max-width: 100%;
    height: auto;
}
.ticket-header.lose {
    background-color: #ff9800; /* Orange for Pending */
}