<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.nylas-code {
    --line-number-color: rgba(255, 255, 255, .6);
    --icon-copy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(255,255,255,.6)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect width='8' height='4' x='8' y='2' rx='1' ry='1'/%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/%3E%3C/svg%3E");
    --icon-copied: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(255,255,255,.6)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect width='8' height='4' x='8' y='2' rx='1' ry='1'/%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/%3E%3Cpath d='m9 14 2 2 4-4'/%3E%3C/svg%3E");
    --code-copy-code-bg: rgb(32, 33, 39, .75);
    --code-copy-code-border-color: rgba(255,255,255,.34);
    --code-copy-code-active-text: rgba(255,255,255,.8);
    --code-copy-code-hover-bg: rgba(32, 33, 39, .75);
    --code-copy-copied-text-content: "Copied";

    font-size: 16px;
    line-height: 1.4;

    position: relative;
}

.nylas-code pre {
    padding: 1em 1em;
    margin: 0;
}

.nylas-code code {
    counter-reset: step;
    counter-increment: step 0;

    font-family: Inconsolata, monospace;
}
  
.nylas-code code .line::before {
    content: counter(step);
    counter-increment: step;
    width: 1em;
    margin-right: 1.5em;
    display: inline-block;
    text-align: right;
    color: var(--line-number-color);
}

.nylas-code .copy-code {
    direction: ltr;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    border: 1px solid var(--code-copy-code-border-color);
    border-radius: 4px;
    width: 40px;
    height: 40px;
    background-color: var(--code-copy-code-bg);
    opacity: 0;
    cursor: pointer;
    background-image: var(--icon-copy);
    background-position: 50%;
    background-size: 20px;
    background-repeat: no-repeat;
    transition: border-color .25s, background-color .25s, opacity .25s;
    padding: 0;
}

.nylas-code .copy-code:focus,
.nylas-code:hover .copy-code {
    opacity: 1;
}


.nylas-code .copy-code:hover {
    background-color: var(--code-copy-code-hover-bg);
}

.nylas-code .copy-code.copied {
    border-radius: 0 4px 4px 0;
    background-image: var(--icon-copied);
}

.nylas-code .copy-code.copied:before {
    position: relative;
    top: -1px;
    transform: translate(calc(-100% - 1px));
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--code-copy-code-border-color);
    border-right: 0;
    border-radius: 4px 0 0 4px;
    padding: 0 10px;
    width: fit-content;
    height: 40px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--code-copy-code-active-text);
    background-color: var(--code-copy-code-hover-bg);
    white-space: nowrap;
    content: var(--code-copy-copied-text-content);
}</pre></body></html>