/* 
    Mkdoc-Admonition Styles 
    !!! tip
    !!! warning
    !!! danger
    !!! note

*/


/* 
    Mkdocs > [!NOTE] style
    Blockquote style
*/
.md-typeset blockquote {
    margin: 1.5625em 0;
    padding: 0 0.8rem 0.6rem;
    color: var(--md-default-fg-color);
    border: 0.075rem solid #848784;
    border-radius: 0.2rem;
    box-shadow: var(--md-shadow-z1);
}

/* First line: admonition title */
.md-typeset blockquote > p:first-child {
    margin: 0 -0.8rem 0.6rem;
    padding: 0.4rem 0.8rem;
    font-weight: 700;
    background-color: rgba(68, 138, 255, 0.1);
}

/* Body */
.md-typeset blockquote > p:not(:first-child) {
    margin: 0.6rem 0 0;
}

