body {
	margin: 0px;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: var(--surface-b);
	font-family: var(--font-family);
	font-weight: normal;
	color: var(--text-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.ui-layout-unit {
	background-color: var(--surface-b) !important;
}

.chart-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 20px;
	width: 100%;
	margin-bottom: 20px;
}

.chart-container {
	display: flex;
	flex-direction: column;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 10px;
	background: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chart-actions {
	display: flex;
	justify-content: center;
	margin-top: 10px;
	padding: 5px 0;
	gap: 10px;
}

.chart-btn {
	min-width: 100px;
}

.three-column-grid {
	grid-template-columns: repeat(3, 1fr);
}

.current-status-panel {
	margin-bottom: 20px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.status-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}

.status-card {
	padding: 15px;
	background: white;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.status-title {
	font-weight: bold;
	color: #555;
	margin-bottom: 5px;
}

.status-value {
	font-size: 24px;
	font-weight: bold;
	color: #2c3e50;
}

@media ( max-width : 1200px) {
	.three-column-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media ( max-width : 768px) {
	.chart-grid {
		grid-template-columns: 1fr;
	}
	.three-column-grid {
		grid-template-columns: 1fr;
	}
	.status-grid {
		grid-template-columns: 1fr;
	}
}

.chart-title {
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
	color: #333;
}