/* Site logo styling */
.site-logo {
    max-width: 180px;      /* Adjust maximum width to fit your layout */
    height: auto;          /* Maintain original aspect ratio */
    display: block;        /* Prevent layout gaps from inline rendering */
    margin-bottom: 1rem;   /* Add spacing below the logo */
}

pre {
    overflow-x: auto;
    /* Disable uneven mobile font scaling */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

pre code {
    /* Use block and max-content to prevent inline whitespace issues */
    display: block;
    min-width: 100%;
    width: max-content;
    /* Force a universally aligned monospace font stack */
    font-family: "Courier New", Courier, ui-monospace, monospace;
}