pre {
    background-color: #300a24; /* Dark Ubuntu terminal background */
    border-left: 5px solid #e95420; /* Ubuntu orange border */
    padding: 15px; /* Space around the code */
    overflow-x: auto; /* Horizontal scroll for long lines */
    font-size: 14px; /* Adjust font size */
    font-family: 'Ubuntu Mono', monospace; /* Ubuntu terminal font */
    color: #eee; /* Light text color */
    border-radius: 5px; /* Rounded corners for a more modern look */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Subtle shadow for effect */
}

code {
    background-color: #300a24; /* Same dark background for inline code */
    padding: 2px 4px;
    border-radius: 3px;
    color: #eee; /* Light text color */
}

/* Optional: Style comments for code inside the block */
pre .comment {
    color: #7f9f7f; /* Greenish color for comments */
}

/* Optional: Style keywords for syntax highlighting */
pre .keyword {
    color: #c397d8; /* Purple color for keywords */
}

/* Optional: Style strings for syntax highlighting */
pre .string {
    color: #cc6666; /* Light red for strings */
}