/* Code Viewer Styles */
#viewer-container { max-width: 1200px; }

.editor-wrapper {
    background: #1e1e1e;
    border: 1px solid #444;
    border-radius: 4px;
    overflow: auto; /* Enables scrolling */
    max-height: 85vh;
}

pre {
    margin: 0;
    padding: 1rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    overflow: visible; /* Scrollbar is on the wrapper */
}

.logo { font-size: 1.2rem; color: #fff; }

/* Ensure selection is enabled */
code { user-select: text; }
