.mermaid-wrapper {
  text-align: center;
  margin: 2rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  width: 100%;
}

.mermaid {
  display: block;
  background: transparent;
  border: none;
  text-align: center;
  max-width: 100%;
  font-size: 16px;
}

/* Ensure SVG fits properly */
.mermaid svg {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

/* Override Mermaid's inline styles */
.mermaid * {
  max-width: 100% !important;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .mermaid {
    filter: invert(0.9) hue-rotate(180deg);
  }
}

body[data-theme="dark"] .mermaid {
  filter: invert(0.9) hue-rotate(180deg);
}