/* Custom styles for code container and copy button */
.code-container {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 10.5px;
}

/* Copy button styles */
.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 12px;
    cursor: pointer;
    color: #007bff;
    padding: 5px;
    border-radius: 3px;
}
.copy-btn:focus {
    outline: none;
}
.copy-btn:hover {
    color: #0056b3;
}
.copy-btn.copied {
    color: green;
}
/* Padding for the code block to make room for the copy button */
pre {
    padding-top: 10px;
    padding-right: 60px; /* Make room for the copy button */
}
