/* custom_highlight.css */

/* Remove background and border from code blocks */
.hljs {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Optional: reduce margin for cleaner look */
pre {
    margin: 0 0 1rem 0;
}

/* Optional: style text if needed */
pre code {
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
}
