.math-result, .geometry-canvas { display: none; }
        .response-area {
            background-color: #1e1e2f;
            color: #f8f8f2;
            border-radius: 6px;
            padding: 1rem;
            font-family: 'Fira Code', 'Courier New', monospace;
            font-size: 0.9rem;
            max-height: 400px;
            overflow: auto;
            white-space: pre-wrap;
            word-break: break-all;
        }
        .response-headers {
            background-color: #2d2d44;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.9rem;
            border-left: 4px solid var(--primary-color);
            margin: 10px 0;color:#efefef
        }
        .key-value-row {
            display: flex;
            gap: 10px;
            margin-bottom: 8px;
            align-items: center;
        }
        .key-value-row .key-value-row .btn-remove {
            flex: 0 0 32px;
        }
        .badge-method {
            font-size: 0.9rem;
            padding: 0.4rem 0.7rem;
            border-radius: 20px;
            font-weight: 500;
        }
        .method-get { background-color: #61affe; color: white; }
        .method-post { background-color: #49cc90; color: white; }
        .method-put { background-color: #fca130; color: white; }
        .method-delete { background-color: #f93e3e; color: white; }
        .method-patch { background-color: #50e3c2; color: white; }
        .example-endpoint {
            background: rgba(70, 130, 180, 0.1);
            border: 1px solid rgba(70, 130, 180, 0.3);
            border-radius: 20px;
            padding: 0.3rem 1rem;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-block;
            margin: 0.25rem;
        }
        .example-endpoint:hover {
            background: var(--primary-color);
            color: white;
        }
        .status-badge {
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-weight: 600;
        }
        .status-2xx { background-color: #49cc90; color: #1e1e2f; }
        .status-4xx { background-color: #f93e3e; color: white; }
        .status-5xx { background-color: #ff7f50; color: white; }
        .privacy-note i { color: var(--primary-color); }
        .curl-hint {
            background: #f0f0f0;
            border-left: 4px solid var(--primary-color);
            padding: 0.7rem;
            font-family: monospace;
            font-size: 0.9rem;
        }