﻿.ticket-content > div {
    flex: 1;
}

.ticket-line {
    flex: 2;
}

.ticket-date {
    flex: 1.5;
}

.ticket-amount {
    flex: 1;
}


.checkout-grid-container {
    max-width: 100%;
}

/* Header row */
.checkout-header {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    font-size: 14px;
}

    .checkout-header > div {
        flex: 1;
    }

.header-game {
    text-align: left;
}

.header-line {
    flex: 2;
}

.header-date {
    flex: 1.5;
}

.header-amount {
    flex: 1;
}

.header-remove {
    width: 32px;
}

/* Ticket spacing */
.checkout-row-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Ticket styling */
.ticket-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.ticket-triangle-left,
.ticket-triangle-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.ticket-triangle-left {
    left: -1px;
    border-width: 15px 0px 15px 15px;
    border-color: transparent transparent transparent #D9D9D9;
}

.ticket-triangle-right {
    right: 0;
    border-width: 15px 15px 15px 0px;
    border-color: transparent #D9D9D9 transparent transparent;
}

.ticket-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ball-circle {
    width: 32px;
    height: 32px;
    background-color: #007EFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.btn-remove {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
}

.checkout-header {
    font-size: 18px;
}

@media(max-width: 576px) {
    .ball-circle {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .checkout-row-wrapper {
        font-size: 8px;
    }

    .checkout-header{
        font-size:12px;
    }
}
