.chart-container {
  
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 60px;
  display: none;
}

.chart-wrapper {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  height: 300px;
}

.chart-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

canvas {
  width: 100% !important;
  height: 100% !important;
}

.graph {
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.graph:hover {
  background-color: #45a049;
}