body {
	font-family: Arial, sans-serif;
	text-align: center;
	background-color: #f4f4f4;
	overflow: auto;
}

h1 {
	color: #333;
}

#statusContainer {
	margin: 20px auto;
	width: 80%;
	background: white;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	overflow: scroll;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}

th,
td {
	padding: 10px;
	border: 1px solid #ddd;
	text-align: left;
}

th {
	background: #007bff;
	color: white;
}

.online {
	color: green;
	font-weight: bold;
}

.offline {
	color: red;
	font-weight: bold;
}

.error {
	color: orange;
	font-weight: bold;
}

.updating {
	color: blue;
	font-weight: bold;
}

a {
	text-decoration: none;
	color: #007bff;
}

a:hover {
	text-decoration: underline;
}

.controls {
	margin-bottom: 10px;
}

.chart-container {
	width: 100%;
	max-width: 600px;
	margin: auto;
}