.codesnippet-container pre {
    background-color: var(--oxford-blue);
    padding: 16px;
    padding-bottom: 20px;
    border: 1px solid var(--celtic-blue-a20);
    border-left: 4px solid var(--bleu-de-france);
    border-radius: 12px;
    position: relative;
    overflow: auto;
    color: var(--white-a90);
}

.codesnippet-container pre > .copy-button {
    display: flex;
    align-items: center;
    gap: 4px;
    position: sticky;
    bottom: 100%;
    left: calc(100% - 70px);
    background-color: var(--white);
    color: var(--azure);
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.codesnippet-container pre > .copy-button .copy-icon {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.codesnippet-container .snippet-label {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.codesnippet-container .sub-text {
    color: var(--black-a80);
    font-size: 0.9rem;
    line-height: 1.8rem;
    margin: 1.2rem 0;
}

.codesnippet-container pre code {
    font-size: 0.85rem;
    line-height: 1.6;
    display: block;
    white-space: pre;
}

@media (min-width: 2000px) {
    .codesnippet-container pre code {
        font-size: calc(0.85rem * 1.25);
        line-height: calc(1.6 * 1.25);
    }

    .codesnippet-container .sub-text {
        font-size: calc(0.9rem * 1.25);
        line-height: calc(1.8rem * 1.25);
    }
}