/*
 * Pymdownx superfences: filename is a sibling of <pre> inside .highlight.
 * Without styles it sits on the box border and looks misaligned (RTD theme).
 */
.rst-content .highlight .filename {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0.45rem 0.75rem;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.82em;
    line-height: 1.35;
    color: #404040;
    background: #eef0f2;
    border-bottom: 1px solid #e1e4e5;
}

.rst-content .highlight .filename + pre {
    margin-top: 0;
}

.rst-content .highlight .filename + pre code {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
