/* Chart Canvas Styling */
.chart-content canvas {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent;
  box-shadow: none !important;
  border: none;
  outline: none;
  max-width: 100%;
}

/* Ensure no shadows on chart containers */
.chart-content {
  box-shadow: none !important;
  border: none;
  overflow: hidden;
}

/* Chart container responsive styling */
.chart {
  position: relative;
  width: 100%;
}

.chart-title {
  font-family: "Lato", sans-serif;
  text-align: center;
}

/* Remove any inherited shadows */
.charts canvas,
.chart-content canvas {
  box-shadow: none !important;
  filter: none !important;
}

/* Responsive canvas sizing */
@media screen and (max-width: 1024px) {
  .chart-content canvas {
    max-width: 100%;
    height: 250px !important;
  }
}

@media screen and (max-width: 768px) {
  .chart-content canvas {
    max-width: 100%;
    height: 250px !important;
    width: 100% !important;
  }

  .chart-title {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .chart-content canvas {
    max-width: 100%;
    height: 200px !important;
    width: 100% !important;
  }

  .chart-title {
    font-size: 12px;
  }
}
