.code-editor {
            font-family: 'Courier New', 'Fira Code', monospace;
            font-size: 0.9rem;
            background: #1e1e2f;
            color: #f8f8f2;
            border-radius: 8px;
            padding: 1rem;
            white-space: pre-wrap;
            overflow-x: auto;
            min-height: 280px;
            max-height: 500px;
        }
        .input-textarea {
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            background: #f8f9fa;
            border: 1px solid #ced4da;
        }
        .result-header {
            background: #2d2d44;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px 8px 0 0;
            font-weight: 600;
        }
        .action-buttons {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }
        .example-preset {
            background-color: #e9ecef;
            border-radius: 20px;
            padding: 0.2rem 0.8rem;
            font-size: 0.8rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .example-preset:hover {
            background-color: #d4d8dd;
            transform: translateY(-1px);
        }
        .badge-version {
            font-size: 0.7rem;
            vertical-align: middle;
        }
        .property-table td, .deep-dive {
            text-align: justify;
        }
        .info-callout {
            background: #eef2fa;
            border-left: 4px solid #0d6efd;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 6px;
        }
        .keyword {
            color: #c678dd;
        }
        .string {
            color: #98c379;
        }