.mindgnite-code-wrapper {
    max-width: 600px; /* or use width: 600px for fixed width */
    margin: 1em auto; /* centers the block */
    padding: 0.5em;
    margin: 20px 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
    background-color: #1e1e1e; /* Dark theme */
}

.mindgnite-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c2c2c;
    color: #fff;
    padding: 5px 8px;
    font-family: sans-serif;
    font-size: 0.9rem;
    border-bottom: 1px solid #444;
}

.mindgnite-lang-label {
    font-weight: bold;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.mindgnite-copy-button {
    background-color: #2c2c2c;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.mindgnite-copy-button:hover {
    background-color: #4CAF50;
}

.mindgnite-code {
    background: #1e1e1e;
    color: #f8f8f2;
    padding: 14px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    white-space: pre-wrap;
    overflow-x: auto;
}
/*.mindgnite-code code {
    color: #333;
}*/