﻿.code-embed {
    background: #ffffff; /* 🤍 weißer Hintergrund */
    border-radius: 10px;
    padding: 1rem;
    margin: 2rem 0;
    position: relative;
    /* feine Linie + sanfter Schatten */
    border: 1px solid #e0e3f0;
    box-shadow: 0 6px 18px rgba(63, 81, 181, 0.12);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3f51b5;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

    .code-header span {
        font-size: 0.9rem;
    }

.code-copy {
    background: #3f51b5;
    border: none;
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
}


    .code-copy:hover {
        background: #5c6bc0;
    }

pre {
    margin: 0;
    overflow-x: auto;
    max-height: 300px;
}

code {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
    display: block;
}

/* sichtbare Scrollbars */
pre::-webkit-scrollbar {
    height: 10px;
}

pre::-webkit-scrollbar-track {
    background: #1b1818;
}

pre::-webkit-scrollbar-thumb {
    background: #3f51b5;
    border-radius: 5px;
}
