pre {
    position: relative;
    border-radius: 8px;
    margin: 1.5rem 0;
}

pre code {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    display: block;
    overflow-x: auto;
}

/* Light theme */
pre code[theme="github"] {
    background: #f6f8fa;
}

/* Dark theme */
.dark-theme pre code[theme="monokai"] {
    background: #272822;
}

.copy-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: var(--accent-color);
    border: none;
    border-radius: 4px;
    color: var(--bg-dark);
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
}
