.watermark {
    fill: #CCCCCC;
    font-size: 65px;
    opacity: 0.25;
    pointer-events: none;
  }
  .bar-value {
    fill: #FFFFFF;
    font-size: 12px;
    pointer-events: none;
  }
  /* SVG passt sich der Breite des Containers an */
  .chart-svg {
    max-width: 100%;
    height: auto;
  }
  
  /* Hover-Effekt für die Balken */
  .chart-svg rect:hover {
    fill: #5a9bd4;
    cursor: pointer;
    transition: fill 0.2s ease-in-out;
  }
  /* Styling für den benutzerdefinierten Tooltip */
  #drawCharttooltip {
    position: absolute;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    z-index: 1000;
    white-space: pre-line;
  }

  /* Legenden-Styling */
  .chart-legend {
    margin-top: 10px;
  }
  .legend-item {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    font-size: 14px;
    cursor: pointer;
  }
  .legend-color {
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 5px;
    border: 1px solid #000;
  }