.json-viewer {
	color: #000;
	padding-left: 20px;
}

.json-viewer ul {
	list-style-type: none;
	margin: 0;
	margin: 0 0 0 1px;
	border-left: 1px dotted #ccc;
	padding-left: 2em;
	/* font-size: 12px; */
	font-size: 12px;
}

.json-viewer .hide {
	display: none;
}

.json-viewer .type-string {
	color: #0B7500;
}

.json-viewer .type-date {
	color: #CB7500;
}

.json-viewer .type-boolean {
	color: #1A01CC;
	font-weight: bold;
}

.json-viewer .type-number {
	color: #1A01CC;
}

.json-viewer .type-null, .json-viewer .type-undefined {
	color: #90a;
}

.json-viewer a.list-link {
	color: #000;
	text-decoration: none;
	position: relative;
}

.json-viewer a.list-link:before {
	color: #aaa;
	content: "\25BC";
	position: absolute;
	display: inline-block;
	width: 1em;
	left: -1em;
}

.json-viewer a.list-link.collapsed:before {
	content: "\25B6";
}

.json-viewer a.list-link.empty:before {
	content: "";
}

.json-viewer .items-ph {
	color: #aaa;
	padding: 0 1em;
}

.json-viewer .items-ph:hover {
	text-decoration: underline;
}

/* MQTT Connection Status Styles */
.mqtt-connected {
	background-color: #d4edda !important; /* Hellgrün */
	border: 2px solid #28a745 !important;
	border-radius: 5px;
	padding: 10px;
	transition: background-color 0.3s ease;
}

.mqtt-disconnected {
	background-color: #f8d7da !important; /* Hellrot */
	border: 2px solid #dc3545 !important;
	border-radius: 5px;
	padding: 10px;
	transition: background-color 0.3s ease;
}

.mqtt-connecting {
	background-color: #fff3cd !important; /* Hellgelb */
	border: 2px solid #ffc107 !important;
	border-radius: 5px;
	padding: 10px;
	transition: background-color 0.3s ease;
}