body .highlight {
    margin: 20px 0;
}

body .highlight pre {
    padding: 15px 25px;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    overflow: auto;
}
.snippet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}
.snippet-header button {
    padding: 0;
    border: none;
    background-color: transparent;
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}
.snippet-header button:after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 19px;
    margin-left: 10px;
    background: url('/img/icons/copy-icon.svg');
    vertical-align: middle;
}
.snippet-lang {
    text-transform: capitalize;
}
