.panel {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--panel2);
    height: calc(100% - 2px);
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .panel-title {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
  }
.panel-body {
  padding: 12px;
  overflow: auto;  
  min-height: 0;
}
.inspect-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 100%;
  overflow-y: auto;
}
.inspect-section {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px;
}
.inspect-head {
  font-size: 13px;
  color: #111827;
}
.inspect-item {
  transition: background 0.1s ease;
}
.inspect-item:hover {
  background: #f1f5f9;
}
