.code-box {
    background: #f6f8fa;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #d0d7de;
    margin: 20px 0;
    font-family: "JetBrains Mono", monospace;
    position: relative;
    overflow-x: auto;
}

.code-title {
    font-weight: bold;
    margin-bottom: 12px;
    color: #444;
    font-size: 14px;
}

.code-box pre {
    margin: 0;
    background: transparent;
    border: 0;
    padding: 0;
    white-space: pre-wrap;
    color: #111;
    font-size: 14px;
    line-height: 1.6;
}

.copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffffff;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.2s;
}

.copy-btn:hover {
    background: #f0f0f0;
}

.code-box a,
pre a,
code a {
    pointer-events: none;
    color: inherit !important;
    text-decoration: none !important;
}


.code-box a,
pre a,
code a {
    pointer-events: none;
    color: inherit !important;
    text-decoration: none !important;
}


.copy-wrapper {
    position: relative;
    margin: 20px 0;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffffff;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    z-index: 10;
    transition: 0.2s;
}

.copy-btn:hover {
    background: #f3f4f6;
}

pre {
    background: #f6f8fa;
    border: 1px solid #d0d7de;
    border-radius: 14px;
    padding: 20px;
    overflow-x: auto;
    font-family: "JetBrains Mono", monospace;
    line-height: 1.6;
}

