.converter-panel {
            background: #f8fafc;
            border-radius: 12px;
            padding: 1.2rem;
            margin: 1rem 0;
            border: 1px solid #e2e8f0;
        }
        .yaml-input, .json-output {
            font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
            font-size: 0.9rem;
            line-height: 1.5;
            background-color: #0f172a;
            color: #e2e8f0;
            border-radius: 8px;
            border: 1px solid #334155;
            padding: 1rem;
            width: 100%;
            min-height: 380px;
            resize: vertical;
        }
        .json-output {
            background-color: #0f172a;
            color: #cbd5e1;
            overflow: auto;
            white-space: pre-wrap;
        }
        .action-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 1rem 0;
        }
        .badge-tech {
            background-color: #1e293b;
            color: #94a3b8;
            font-weight: 500;
            padding: 0.3rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
        }
        .example-card {
            background-color: #f1f5f9;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            margin-bottom: 0.5rem;
            cursor: pointer;
            transition: all 0.2s;
            border-left: 3px solid #3b82f6;
        }
        .example-card:hover {
            background-color: #e2e8f0;
            transform: translateX(4px);
        }
        .conversion-stats {
            font-size: 0.8rem;
            color: #475569;
            border-top: 1px solid #e2e8f0;
            margin-top: 1rem;
            padding-top: 0.75rem;
            text-align: right;
        }
        .error-box {
            background-color: #fee2e2;
            color: #991b1b;
            border-left: 4px solid #dc2626;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            font-family: monospace;
            margin-top: 0.8rem;
        }
        .language-badge {
            font-family: monospace;
            font-weight: 600;
            background: #0f172a;
            color: #38bdf8;
            display: inline-block;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-size: 0.7rem;
        }
        @media (max-width: 768px) {
            .yaml-input, .json-output { min-height: 280px; }
        }