.code-container {
    position: relative; /* Important for the positioning of the button */
    margin-bottom: 20px;
}

.code-container pre {
    padding-bottom: -10px;
}

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: transparent;
    /*border: 1px solid #eee;*/
    border: none;
    color: #bbb;
    cursor: pointer;
    font-size: 12px;
    z-index: 10;
    /* Optional: Icon and text side by side */
    display: flex;
    align-items: center;
}

.copy-icon {
    margin-right: 5px;
}

