/* 公演グループ */
.performance-group {
	border: 1px solid #e0d9cc;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.performance-group-header {
	background: #f5f0e8;
	padding: 12px 16px;
	font-weight: bold;
	font-size: 0.95rem;
}

.performance-group-meta {
	font-size: 0.8rem;
	color: #888;
	font-weight: normal;
	margin-top: 2px;
}

/* チケット行 */
.ticket-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-bottom: 1px solid #f0ebe2;
	gap: 8px;
}

.ticket-row:last-child {
	border-bottom: none;
}

.ticket-code {
	font-family: monospace;
	font-size: 0.85rem;
	color: #666;
}

.ticket-type {
	font-size: 0.9rem;
	flex: 1;
}

.ticket-price {
	font-size: 0.85rem;
	color: #888;
	min-width: 60px;
	text-align: right;
}

.badge-reserved {
	background: #e8f5e9;
	color: #2e7d32;
	font-size: 0.75rem;
	padding: 3px 8px;
	border-radius: 20px;
	font-weight: bold;
}

.badge-cancelled {
	background: #f5f5f5;
	color: #999;
	font-size: 0.75rem;
	padding: 3px 8px;
	border-radius: 20px;
	font-weight: bold;
}

.badge-attended {
	background: #e3f2fd;
	color: #1565c0;
	font-size: 0.75rem;
	padding: 3px 8px;
	border-radius: 20px;
	font-weight: bold;
}

/* 戻るバー */
.back-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid #333;
	border-radius: 4px;
	padding: 10px 16px;
	cursor: pointer;
	background: #fff;
	user-select: none;
}

.back-bar:hover {
	background: #f5f5f5;
}

.back-bar-icon {
	font-size: 1.6rem;
	line-height: 1;
	color: #c8602a;
	background: #c8602a;
	color: #fff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding-bottom: 2px;
}

.back-bar-text {
	flex: 1;
	text-align: center;
}

.back-bar-code {
	font-weight: bold;
	font-family: monospace;
	font-size: 1rem;
	letter-spacing: 2px;
}

.back-bar-label {
	font-size: 0.85rem;
	color: #555;
}

#codeSuggestions .list-group-item {
	cursor: pointer;
	font-family: monospace;
	font-size: 0.9rem;
	padding: 8px 12px;
}

#codeSuggestions .list-group-item:hover {
	background: #f5f0e8;
}

.cancel-btn {
	font-size: 0.75rem;
	padding: 3px 10px;
	border-radius: 20px;
	border: 1px solid #ccc;
	background: #fff;
	color: #888;
	cursor: pointer;
	white-space: nowrap;
}

.cancel-btn:hover {
	border-color: #c00;
	color: #c00;
}
