


/* This "pre" table was built to try to adjust the appearance of the table for the Redemption Walk-through. I didn't end up using it.
pre {
    font-family: inherit; /* Use the same font as the rest of the site 
    font-size: inherit;   /* Match the size of surrounding text 
    line-height: inherit; /* Match the spacing of surrounding text 
    white-space: pre; /* Preserve spacing and line breaks 
    background-color: transparent; /* Remove the default gray background 
    border: none; /* Remove the default border 
    padding: 0; /* Remove padding 
    margin: 0; /* Adjust margin to fit your layout 
}
*/

/* Use this to adjust the size and appearance of code ` */
code {
    font-family: monospace; /* Use a monospace font for code */
    font-size: 1.2em; /* Adjust the font size to match the surrounding text */
    background-color: #ffffff; /* Light gray background for visibility */
    padding: 2px 4px; /* Add some padding */
    border-radius: 4px; /* Optional: Rounded corners */
    color: #000000; /* Optional: Customize text color */
}


/* Use this to adjust the size and appearance of the full code block ``` */
pre {
    font-family: monospace; /* Consistent font */
    font-size: 1.2em; /* Match inline code size */
    background-color: #ffffff; /* Consistent background */
    padding: 10px; /* Padding around block */
    border: 1px solid #ccc; /* Border for block */
    border-radius: 4px; /* Rounded corners */
    overflow-x: auto; /* Horizontal scrolling */
}

pre code {
    color: #000000; /* Match text color */
}













