.formatted-code-block {
    position: relative;
    padding: 20px;
    background-color: #2d2d2d;
    border-radius: 8px;
    margin-bottom: 30px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.formatted-code-block pre {
    position: relative;
    /*margin-top: 25px;*/
    background-color: transparent;
    border: none;
    padding: 0;
}

.formatted-code-block pre code {
    font-family: monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #f8f8f2;
}

.copy-button {
    position: absolute;
    top: 5px;
    right: 10px;
    background: #008CBA;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.language-label {
    position: absolute;
    top: 5px;
    left: 10px;
    background-color: #555;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    text-transform: capitalize;
}
