/* Code Blocks */
.code-block-wrapper {
    background: #09101A;
    border-radius: 12px;
    padding: 1.5rem;
    color: #fff;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.code-block-wrapper h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
}

.code-snippet {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e0e0e0;
    overflow-x: auto;
    white-space: pre-wrap;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 6px;
}