.schema-table th, .schema-table td {
            vertical-align: middle;
        }
        .json-output {
            background: #1e2a3a;
            color: #e2e8f0;
            font-family: 'Courier New', 'Fira Code', monospace;
            font-size: 0.9rem;
            padding: 1rem;
            border-radius: 8px;
            max-height: 400px;
            overflow: auto;
            white-space: pre-wrap;
            word-break: break-word;
        }
        .badge-datatype {
            font-size: 0.7rem;
            padding: 0.3rem 0.6rem;
            border-radius: 20px;
            background-color: #e9ecef;
            color: #2c3e66;
        }
        .action-icon {
            cursor: pointer;
            color: #dc3545;
            transition: 0.2s;
        }
        .action-icon:hover {
            transform: scale(1.1);
            color: #b02a37;
        }
        .mock-url-card {
            background: #f8fafc;
            border-left: 4px solid #0d6efd;
            padding: 0.8rem 1rem;
            font-family: monospace;
        }
        .example-preset {
            cursor: pointer;
            transition: all 0.2s;
        }
        .example-preset:hover {
            background: rgba(13,110,253,0.1);
            transform: translateY(-2px);
        }
        .copy-tooltip {
            cursor: pointer;
        }
        .method-badge {
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            background: #e9ecef;
        }
        .method-get { background: #d1e7fd; color: #084298; }
        .method-post { background: #d1fae5; color: #065f46; }
        .method-put { background: #fff3cd; color: #856404; }
        .method-delete { background: #f8d7da; color: #721c24; }
        hr {
            margin: 1.5rem 0;
        }
        .table-responsive-sm {
            overflow-x: auto;
        }
        .warning-banner {
            font-size: 0.85rem;
            background-color: #fff3cd;
            border-left: 3px solid #ffc107;
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
        }
        .field-name.input-error {
            border-color: #dc3545;
            background-color: #fff8f8;
        }