/* Hide the auto-generated section numbers in the sidebar */
.sidebar-section-number {
    display: none !important;
}

/* Hide the auto-generated section numbers in the page headers */
.content header .section-header .section-number {
    display: none !important;
}

/* Allows wide diagrams to be scrollable instead of shrinking to microscopic sizes */
.content main img {
    max-width: 100%;
    height: auto;
}

/* Optional: Create a specific class for panoramic/wide architecture diagrams */
.wide-diagram {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.wide-diagram img {
    max-width: none; /* Prevents mdbook from forcing it to shrink */
    min-width: 1200px; /* Forces a readable size */
}