:host {
  display: block;
  width: 100%;
  height: 100%;
}
.chart-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  pointer-events: none; /* This makes sure the text doesn't interfere with clicking on the image */
}