@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f9fc;
  color: #333;
  margin: 0;
  padding: 0;
}

.chart-container {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 147, 224, 0.1);
  position: relative;
  z-index: 1;
}


.chart-container h2 {
  text-align: center;
  color: #0093e0;
  margin-bottom: 20px;
}

/* Prevent chart container from overlapping sidebar */
.container {
  margin-left: 250px; /* same as sidebar width */
}

