CSS script to make mermaid table device width
/* Resize Mermaid diagrams to fit on the page by default */
.mermaid svg {
max-width: 100%;
height: auto;
}
/* Override resizing if desired */
.no-resize-mermaid .mermaid svg {
max-width: inherit;
height: inherit;
}
/* Make mindmap colors readable */
.theme-light .mermaid {
--color-red: #ff7777;
--color-orange: #ffbb99;
--color-yellow: #ffeeaa;
--color-green: #bbffbb;
--color-cyan: #bbffee;
--color-blue: #aaccff;
--color-purple: #ddbbff;
--color-pink: #ffcccc;
}