.http-search { max-width: 400px; margin-bottom: 24px; }
.http-group { margin-bottom: 24px; }
.http-group-title { font-size: 16px; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: var(--text); }
.http-badge { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 4px; letter-spacing: 0.5px; }
.http-badge-1 { background: #e3f2fd; color: #1565c0; }
.http-badge-2 { background: #e8f5e9; color: #2e7d32; }
.http-badge-3 { background: #fff3e0; color: #e65100; }
.http-badge-4 { background: #fce4ec; color: #c62828; }
.http-badge-5 { background: #efebe9; color: #bf360c; }
.http-codes { display: flex; flex-direction: column; gap: 6px; }
.http-code-item { display: flex; align-items: center; gap: 16px; padding: 12px 16px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.2s; }
.http-code-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.http-code-num { font-size: 18px; font-weight: 700; min-width: 44px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; color: var(--primary); }
.http-code-name { font-size: 14px; font-weight: 600; color: var(--text); min-width: 180px; }
.http-code-desc { font-size: 13px; color: var(--text-muted); }
@media (max-width: 768px) { .http-code-item { flex-wrap: wrap; gap: 8px; } .http-code-name { min-width: auto; } }