.copy-button {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    color: #191919;
    cursor: pointer;
    background: transparent;
    background-color: #fff;
    border-radius: 4px;
    border-style: dashed;
    border-color: #b3b3b3;
    border-width: 1px;
}

.copy-button:hover {
    color: #191919;
    background-color: #F9F9FB;
    box-shadow: 0px 1px 8px #F9F9FB;
}
 
.copy-button svg {
    width: 1em;
    margin-left: 0.25em;
    opacity: 0.5;
    transition: opacity 0.3s;
}
 
.copy-button:hover svg {
    opacity: 1;
}

.article-body table {
         font-size: 16px;
         table-layout: fixed;
         width: -webkit-fill-available !important;
         margin-bottom: 20px;
         border: 1px solid var(--ENVATOGREY50);
}

div.article-body > p > iframe {
         width: -webkit-fill-available;
}

.article-body table > tbody > thead, .article-body table > tbody > tr > th:first-of-type {
         background: var(--ENVATOGREY25);
         font-weight: 600;
         border: none !important;
        padding: 15px;
}

.article-body table > tbody > tr > td {
         border-left: none;
         border-right: none;
         border: 1px solid var(--ENVATOGREY50);
}

.article-body table > tbody {
    border-left: 1px solid var(--ENVATOGREY50);
    border-right: 1px solid var(--ENVATOGREY50);
}
       
.article-body table > thead, .article-body table > tbody > tr > th  {
       background: var(--ENVATOGREY25);
       font-weight: 600;
       border: 1px solid var(--ENVATOGREY50);
}

.article-body table > thead > tr > th, .article-body table > tbody > tr > td { 
       padding: 15px;
       text-align: left;
       vertical-align: middle;
} 

.article-body table > thead > tr > th {
    border-style: none !important;
}

.envato-hint p:first-of-type {
       margin-right: 5px;
}   
    /* Code blocks. */
    pre[class*='language-'] {
        padding: 2.5em 2em;
        margin: 0px;
        overflow: auto;
    }
    
    :not(pre) > code[class*='language-'],
    pre[class*='language-'] {
        background: #fff;
    }
    
.code-wrapper {
    position: relative;
}    