.bus-shell {
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 80%);
	border-radius: 40px 40px 28px 28px;
	padding: 18px 16px 22px;
	border: 3px solid rgba(0, 0, 0, 0.08);
	box-shadow:
		inset 0 0 12px rgba(0, 0, 0, 0.05),
		0 12px 25px rgba(15, 23, 42, 0.15);
	max-width: 420px;
	margin-inline: auto;
	position: relative;
}



.bus-shell::before {
	left: 32px;
}

.bus-shell::after {
	right: 32px;
}

.seat-grid {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 4px 8px 8px;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 26px;
}

.seat-row {
	display: grid;
	grid-auto-flow: column;
	gap: 3px;
	align-items: center;
}

.seat-cell {
	width: 34px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 600;
	color: #ffffff;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	user-select: none;
}

.seat-cell:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.seat-cell-seat {
	background: linear-gradient(135deg, #0d6efd, #4dabf7);
}

.seat-cell-single {
	background: linear-gradient(135deg, #20c997, #63e6be);
}

.seat-cell-sleeper {
	background: linear-gradient(135deg, #845ef7, #b197fc);
}

.seat-cell-sold {
	background: linear-gradient(135deg, #ff6b6b, #fa5252);
	color: #fff !important;
	box-shadow: inset 0 0 0 2px rgba(255,255,255,0.4);
}

.seat-cell-available {
	cursor: pointer;
}

.seat-cell-selected {
	background: linear-gradient(135deg, #7048e8, #9775fa) !important;
	color: #fff;
	box-shadow: 0 8px 18px rgba(18,184,134,0.4);
}

.seat-cell-door {
	background: linear-gradient(135deg, #ffc107, #ffd43b);
	color: #212529;
}

.seat-cell-driver {
	background: linear-gradient(135deg, #fd7e14, #ffc078);
}

.seat-cell-empty {
	background: rgba(33, 37, 41, 0.08);
	color: #6c757d;
	cursor: default;
	box-shadow: none;
}

.seat-cell-empty:hover {
	transform: none;
	box-shadow: none;
}

.seat-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.seat-legend span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
}

.seat-legend .legend-color {
	width: 18px;
	height: 18px;
	border-radius: 4px;
}

.seat-grid .row-label {
	font-size: 0.85rem;
	color: #6c757d;
	text-align: right;
	padding-right: 6px;
}

.seat-builder-tools {
	background: #ffffff;
	border-radius: 12px;
	padding: 1.25rem;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.seat-builder-tools button {
	min-width: 150px;
}

.seat-preview-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

