:root {
    --primary-color: #fd7e14;
    /* Bootstrap orange-500 */
    --primary-hover: #e66b0d;
    --ticket-size: 50px;
}

.body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.bg-orange {
    background-color: var(--primary-color) !important;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.ticket {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    background-color: var(--primary-color);
    color: white;
    user-select: none;
}

.ticket:hover {
    transform: scale(1.05);
    background-color: var(--primary-hover);
}

.ticket.sold {
    background-color: #6c757d;
    /* Gray */
    cursor: not-allowed;
    opacity: 0.8;
}

.ticket.locked {
    background-color: #ffc107;
    /* Warning yellow for pending? Or just gray/disabled */
    cursor: not-allowed;
    opacity: 0.6;
}

.ticket.selected {
    background-color: #198754;
    /* Green for selected */
    border: 3px solid #0f5132;
    transform: scale(1.1);
}

.pagination {
    justify-content: center;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-link {
    color: var(--primary-color);
}

.hidden {
    display: none;
}