.code-section {
    margin: 50px auto;
    max-width: 900px;
}

.code-header {
    background-color: #333;
    padding: 10px 15px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    display: flex;
    align-items: center;
}

.dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.file-name {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 10px;
    font-family: monospace;
}

.code-container {
    background-color: var(--bg-panel);
    padding: 20px;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
    overflow-x: auto;
}

pre {
    margin: 0;
}

code {
    font-family: 'Consolas', 'Courier New', monospace;
    color: var(--text-main);
    line-height: 1.5;
    font-size: 0.95rem;
    white-space: pre;
}

.code-footer {
    margin-top: 30px;
    text-align: center;
}