.ticket-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 24px;
    width: 50%;
}

.ticket-header {
    font-weight: bold;
    margin-bottom: 8px;
}

.ticket-price {
    font-size: 20px;
    font-weight: bold;
}

.ticket-fee {
    font-size: 14px;
    color: #888;
    margin-left: 4px;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
}

.general-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.general-btn.minus {
    background: #f0f0f0;
    color: #555;
}

.general-btn.plus {
    background: #02182e;
    color: white;
    margin-left: 4px;
}

.general-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.count {
    margin: 0 8px;
    font-size: 18px;
    font-weight: bold;
    transition: opacity 0.2s ease, transform 0.2s ease;
    min-width: 24px;
    text-align: center;
}

.count.hidden {
    opacity: 0;
    transform: scale(0.8);
}