.stats-grid {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 24px;
	align-items: start;
	padding: 20px;
}
.stat-box {
	background: rgba(40, 184, 176, 0.10);
	border: 1px solid rgba(40, 184, 176, 0.3);
	border-radius: 6px;
	padding: 20px;
}
.stat-box h2 {
	color: rgb(0, 208, 0);
	margin: 0 0 16px 0;
	font-size: 1.1em;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 1px solid rgba(40,184,176,0.3);
	padding-bottom: 8px;
}
#pieCanvas {
	max-width: 340px;
	margin: 0 auto;
	display: block;
}
/* Pie-Legende */
.pie-legend {
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	justify-content: center;
}
.pie-legend-item {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.82em;
	color: #ccc;
}
.pie-legend-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	flex-shrink: 0;
}
/* Setup-Liste */
.setup-search {
	width: 100%;
	padding: 8px 10px;
	background: #1a1a1a;
	border: 1px solid rgba(40,184,176,0.35);
	color: #e0e0e0;
	border-radius: 4px;
	margin-bottom: 12px;
	box-sizing: border-box;
	font-size: 0.9em;
}
.setup-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 72vh;
	overflow-y: auto;
	padding-right: 4px;
}
.setup-item {
	background: rgba(0,0,0,0.35);
	border: 1px solid rgba(40,184,176,0.2);
	border-radius: 5px;
	padding: 10px 14px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.setup-item:hover {
	border-color: rgba(40,184,176,0.55);
}
.setup-count {
	font-size: 1.4em;
	font-weight: bold;
	color: #ffcc00;
	min-width: 40px;
	text-align: center;
	line-height: 1;
	padding-top: 2px;
}
.setup-count span {
	display: block;
	font-size: 0.45em;
	color: #888;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.setup-body {
	flex: 1;
}
.setup-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 6px;
}
.setup-raids {
	font-size: 0.78em;
	color: #777;
	line-height: 1.5;
}
.setup-raids b {
	color: #aaa;
}
.role-badge {
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.80em;
	font-weight: bold;
	display: inline-block;
	white-space: nowrap;
}
@media (max-width: 860px) {
	.stats-grid { grid-template-columns: 1fr; }
}
.setup-list::-webkit-scrollbar { width: 5px; }
.setup-list::-webkit-scrollbar-track { background: #111; }
.setup-list::-webkit-scrollbar-thumb { background: rgba(40,184,176,0.4); border-radius: 3px; }