/* Copy Button Styles */
.code-wrapper {
    position: relative;
    margin: 20px 0;
}

.copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    z-index: 10;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.4);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    box-shadow: 0 2px 8px rgba(86, 171, 47, 0.3);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* Adjust pre code blocks to accommodate the copy button */
.code-wrapper pre {
    padding-top: 50px !important;
    position: relative;
}

/* Ensure code blocks are scrollable if needed */
.code-wrapper pre code {
    display: block;
    overflow-x: auto;
}
