.batsymbols {
	font-family: 'Roboto', sans-serif;
	text-align: center;
}
.batsymbols svg {
	max-width: 100%;
	height: auto;
	background: #ffd60a;
	border-radius: 0.5rem;
}
#bat {
	fill: #000;
}
#viz-container {
	background: var(--bs-body-bg);
	padding: 2rem;
	border-radius: 0.5rem;
}

/* Controls wrapper */
.controls {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

/* Segmented filter control */
.filter-control,
.speed-control {
	display: inline-flex;
	align-items: center;
	background: #2a2a2a;
	border-radius: 0.5rem;
	padding: 0.25rem;
	gap: 0.125rem;
}
.filter-btn,
.speed-btn {
	background: transparent;
	border: none;
	color: #888;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-family: inherit;
	cursor: pointer;
	border-radius: 0.375rem;
	transition: all 0.2s ease;
}
.filter-btn:hover,
.speed-btn:hover {
	color: #ccc;
}
.filter-btn.active,
.speed-btn.active {
	background: #444;
	color: #fff;
}
.speed-label {
	color: #666;
	font-size: 0.75rem;
	padding: 0 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Rotator / picker */
.rotator {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	background: #1a1a1a;
	border-radius: 0.5rem;
	padding: 0.5rem 1rem;
	margin-top: 1rem;
	position: relative;
	overflow: hidden;
}
.rotator::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 2rem;
	border-top: 1px solid #3a5a7a;
	border-bottom: 1px solid #3a5a7a;
	pointer-events: none;
	z-index: 1;
}
.rotator-column {
	position: relative;
	height: 6rem;
	overflow: hidden;
}
.col-year { width: 4rem; }
.col-name { width: 12rem; }
.col-location { width: 10rem; }
.col-medium { width: 5rem; }
.col-comment { width: 14rem; }
.rotator-track {
	position: absolute;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.rotator-slot {
	padding: 0.375rem 0.5rem;
	line-height: 1.25rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	color: #555;
	font-size: 0.85rem;
	opacity: 0.5;
	transform: scale(0.9);
	transition: opacity 0.5s ease, color 0.5s ease, transform 0.5s ease;
}
.rotator-slot.current {
	color: #fff;
	opacity: 1;
	transform: scale(1);
}
