/* Custom CSS for inline code blocks */
        .inline-code {
            display: inline;
            padding: 2px 6px;
            margin: 0;
            font-family: 'Courier New', Consolas, monospace;
            background-color: #f4f4f4;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 0.9em;
            color: #333;
            white-space: nowrap;
        }

        /* Alternative version with darker theme */
        .inline-code-dark {
            display: inline;
            padding: 2px 6px;
            margin: 0;
            font-family: 'Courier New', Consolas, monospace;
            background-color: #2d2d2d;
            border: 1px solid #555;
            border-radius: 3px;
            font-size: 0.9em;
            color: #f8f8f2;
            white-space: nowrap;
        }

        /* Override any existing block-level code styling */
        code.inline-code,
        code.inline-code-dark {
            display: inline !important;
            white-space: nowrap !important;
            margin: 0 !important;
            padding: 2px 6px !important;
        }

        /* Demo content styling */
        .demo-content {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
        }

        h2 {
            color: #333;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }

        .example {
            margin: 15px 0;
            padding: 15px;
            background-color: #f9f9f9;
            border-left: 4px solid #007acc;
        }


/* Force desktop viewport behavior */
@viewport {
    width: 1024px;
    user-zoom: fixed;
}

/* Override mobile styles */
body {
    min-width: 1024px !important;
}
