.api-debug-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.2rem;
}

.api-endpoint-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem;
  margin-bottom: .5rem;
  background: var(--surface2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.api-endpoint-item:hover {
  background: var(--accent);
  transform: translateX(4px);
}

.method-badge {
  padding: .25rem .7rem;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 600;
  white-space: nowrap;
}

.method-get { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.method-post { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.method-put { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.method-delete { background: rgba(239, 68, 68, 0.2); color: #f87171; }

.response-area pre {
  margin: 0;
  color: #cbd5e1;
  font-size: .82rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-all;
}