
.lka-code-block{
    box-sizing:border-box;
    width:100%;
    max-width:none;
}
.lka-code-block *,
.lka-code-block *::before,
.lka-code-block *::after{
    box-sizing:border-box;
}
.lka-code-block--full{
    position:relative;
    left:50%;
    width:100vw;
    max-width:100vw;
    margin-left:-50vw;
    margin-right:-50vw;
}
.lka-code-block--flush{
    margin-top:0 !important;
    margin-bottom:0 !important;
}
.lka-code-block--flush > :first-child{
    margin-top:0 !important;
}
.lka-code-block--flush > :last-child{
    margin-bottom:0 !important;
}

/* Mobile hardening: prevent embedded dashboard sections from forcing raw-looking overflow. */
.lka-code-block img,
.lka-code-block svg,
.lka-code-block video,
.lka-code-block canvas{
    max-width:100%;
    height:auto;
}
.lka-code-block table{
    max-width:100%;
}
@media (max-width:782px){
    .lka-code-block{
        min-width:0;
        overflow-x:hidden;
    }
    .lka-code-block--full{
        left:50%;
        width:100vw;
        max-width:100vw;
        margin-left:-50vw;
        margin-right:-50vw;
    }
    .lka-code-block pre,
    .lka-code-block code{
        max-width:100%;
        white-space:pre-wrap;
        overflow-wrap:anywhere;
        word-break:break-word;
    }
}
