/* Discograph – Frontend */
.dcv-chart {
	position: relative;
	width: 100%;
	max-width: 100%;
}
.dcv-chart canvas {
	max-width: 100%;
}

/* Cover Pillars: horizontales Scrollen bei zu schmalem Viewport
   (Mindestbreite pro Balken), Wisch-Geste auf Touch-Geraeten. */
.dcv-chart--scroll {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x pan-y;
	scrollbar-width: thin;
}
.dcv-chart__inner {
	position: relative;
	height: 100%;
	min-width: 100%;
}
.dcv-chart--scroll canvas {
	max-width: none;
}
