.trinkwasserampel-block {
	display: flex;
	flex-direction: row;
	gap: 0px;
	padding-top: 40px;
}


.ampel-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: #444;
	align-items: center;
	justify-items: center;
	padding: 12px;
	border-radius: 8px;
	border: 2px solid #333;
}


.ampel-licht {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #333;
	flex-shrink: 0;
	opacity: 0.2;
	transition: opacity 0.3s ease;
}

.ampel-licht.rot   { background: #cc0000; border: 2px solid #333; }
.ampel-licht.gelb  { background: #ffcc00; border: 2px solid #333; }
.ampel-licht.gruen { background: #00cc00; border: 2px solid #333; }


.ampel-text-container {}

.ampel-text {
	display: flex;
	align-items: center;
	font-size: 16px;
	height: 78px;
	max-width: 340px;
	line-height: 18px;
	padding-left: 14px;
	color: white;
	border-radius: 8px;
	margin-left: 4px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.ampel-text.rot   { background: #cc0000; }
.ampel-text.gelb  { background: #ffcc00; }
.ampel-text.gruen { background: #00cc00; }


.status-rot .ampel-licht.rot,
.status-rot .ampel-text.rot,
.status-gelb .ampel-licht.gelb,
.status-gelb .ampel-text.gelb,
.status-gruen .ampel-licht.gruen,
.status-gruen .ampel-text.gruen {
	opacity: 1;
}
