#x-panel-revenue {
	transition: background-color 0.3s;
}

#x-panel-revenue:hover {
	background-color: #f0f0f0;
	/* Beispiel: hellgrauer Hintergrund beim Hover */
	cursor: pointer;
}

#revenue-plus {
	/* WICHTIG: position: relative, damit absolute Kinder (Labels) sich darauf beziehen */
	position: relative;
	width: 100%;
	height: 400px;
	background: #fff;
}
/* Labels in den Balken */
.segment-label {
	position: absolute;
	font-size: 12px;
	font-weight: bold;
	background: rgba(255, 255, 255, 0.7);
	padding: 2px 4px;
	border-radius: 3px;
	pointer-events: none;
	text-align: center;
	white-space: nowrap;
}
/* Tooltip */
#tooltip {
	position: absolute;
	display: none;
	border: 1px solid #ccc;
	background: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	pointer-events: none;
	z-index: 9999;
}

.highlight-box {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 5px;
	color: #155724;
	padding: 15px;
	margin-bottom: 15px;
}

.quick-facts li {
	margin-bottom: 5px;
	padding-left: 17px;
}

.chart-container {
	width: 100%;
	height: 400px;
	margin: 20px 0;
}