/* Remove TransComp. prefix from function signatures */
.docstring-header .docstring-binding code::before {
    content: "";
}

/* Hide module prefix by targeting the specific text pattern */
.docstring-binding code {
    font-family: "JuliaMono", "Roboto Mono", monospace;
}

/* CSS to hide TransComp. text specifically */
.docstring-binding code:first-child {
    display: inline-block;
    font-family: "JuliaMono", "Roboto Mono", monospace;
}

/* Alternative approach using text-indent */
.docstring-header code {
    position: relative;
    font-family: "JuliaMono", "Roboto Mono", monospace;
}

/* Clean function signature styling */
.docs-signature {
    font-family: "JuliaMono", "Roboto Mono", monospace;
}

/* Remove the TransComp. prefix using visibility */
.docstring-binding code[id*="TransComp"] {
    font-family: "JuliaMono", "Roboto Mono", monospace;
}
