<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.dashboard-charts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.chart-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  width: 100%;
}

.chart-box {
  background-color: #35544c;
  border-radius: 20px;
  padding: 1.5rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  color: white; 
}

.chart-title {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: bold;
  color: white; 
}

.chart-box canvas {
  display: block;
  max-width: 100%;
  height: auto;
}</pre></body></html>