

.pre-wrapper{
    background: #333333;
    border-radius: 5px;
    .pre-wrapper{
        .copy-btn{
            display: none;
            
        }
        pre{
            max-height: 700px;
            overflow: auto;
        }
    }
}
pre {
    position: relative;
    background-color: #333;  /* Black background */
    color: #fff;  /* White text color */
    padding: 15px;
    padding-top: 0px !important;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1.5em;
    line-height: 1.2;  /* Adjust the line height if needed */
    font-size: 14px !important;
}

pre code {
    display: inline;  /* Keep code inline */
    font-family: monospace;
    white-space: pre-wrap;  /* Preserve whitespace */
}

button.copy-btn {
    
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
}

button.copy-btn i {
    font-size: 1rem;
}
