.tb-seat-booking { margin-top: 20px; max-width: 640px; }

.tb-show-picker { margin-bottom: 14px; }
.tb-show-picker select { width: 100%; max-width: 420px; padding: 6px; }

.tb-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; font-size: 13px; }
.tb-legend-item { display: inline-flex; align-items: center; gap: 6px; }
.tb-swatch { display: inline-block; width: 14px; height: 14px; border-radius: 3px; }
.tb-swatch-free   { background: #fff; border: 2px solid #ccc; }
.tb-swatch-mine   { background: #2c7be5; }
.tb-swatch-held   { background: #f0b429; }
.tb-swatch-booked { background: #999; }

.tb-seatmap-view {
	background: #fafafa;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	padding: 18px;
	overflow-x: auto;
	margin-bottom: 16px;
}

.tb-fe-row { display: flex; align-items: center; gap: 5px; margin-bottom: 5px; white-space: nowrap; }
.tb-fe-row-label { width: 20px; font-size: 12px; font-weight: 600; color: #777; text-align: right; margin-right: 6px; }

.tb-fe-seat {
	width: 28px;
	height: 28px;
	border-radius: 5px;
	border: 2px solid #ccc;
	background: #fff;
	font-size: 10px;
	cursor: pointer;
	flex: 0 0 auto;
	padding: 0;
}
.tb-fe-seat:hover:not(:disabled) { transform: scale(1.08); }
.tb-fe-mine   { background: #2c7be5; border-color: #2c7be5; color: #fff; }
.tb-fe-held   { background: #fdf1d6; border-color: #f0b429; cursor: not-allowed; }
.tb-fe-booked { background: #eee; border-color: #ccc; color: #bbb; cursor: not-allowed; }
.tb-fe-seat:disabled { opacity: .8; }

.tb-selection-summary {
	border-top: 1px solid #eee;
	padding-top: 10px;
	margin-bottom: 14px;
}
.tb-selected-row { display: flex; justify-content: space-between; font-size: 13px; padding: 2px 0; }
.tb-selection-total { font-weight: 600; margin-top: 6px; }
.tb-hold-timer { color: #b32d2e; font-size: 13px; margin-top: 6px; }

.tb-notice { padding: 10px; background: #fff8e5; border: 1px solid #f0d38a; border-radius: 4px; }
