.headers-container {
            margin: 1rem 0;
            padding: 0.5rem;
            background: var(--light-gray, #f8f9fa);
            border-radius: 8px;
            max-height: 250px;
            overflow-y: auto;
        }.author-bio{display:block}
        .header-row {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            align-items: center;
        }
        .header-row input {
            flex: 1;
        }
        .response-area {
            background-color: #f8f9fc;
            border-radius: 8px;
            border: 1px solid var(--border-color, #dee2e6);
            padding: 1rem;
            margin-top: 1rem;
        }
        .response-status {
            font-size: 1.25rem;
            font-weight: 600;
            padding: 0.5rem;
            border-radius: 6px;
            background-color: #e9ecef;
        }
        .response-time {
            font-family: monospace;
            font-size: 0.9rem;
        }
        .curl-command {
            background: #2d2d2d;
            color: #f8f8f2;
            padding: 1rem;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            overflow-x: auto;
            white-space: pre-wrap;
            word-break: break-all;
        }
        .badge-method {
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.35rem 0.65rem;
            border-radius: 30px;
        }
        .method-get { background-color: #28a745; color: white; }
        .method-post { background-color: #007bff; color: white; }
        .method-put { background-color: #ffc107; color: black; }
        .method-patch { background-color: #6f42c1; color: white; }
        .method-delete { background-color: #dc3545; color: white; }
        .copy-icon {
            cursor: pointer;
            transition: opacity 0.2s;
        }
        .copy-icon:hover {
            opacity: 0.7;
        }
        .example-tag {
            background-color: rgba(70, 130, 180, 0.1);
            border: 1px solid rgba(70, 130, 180, 0.2);
            border-radius: 20px;
            padding: 0.2rem 0.75rem;
            font-size: 0.75rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.2s;
        }
        .example-tag:hover {
            background-color: rgba(70, 130, 180, 0.2);
            transform: translateY(-1px);
        }
        .cheat-sheet {
            background: #fff3e0;
            border-radius: 8px;
            padding: 0.75rem;
            font-size: 0.85rem;
            margin-top: 0.5rem;
        }
        .toast-custom {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1100;
            background: #28a745;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: opacity 0.3s ease;
        }