.panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header h3 {
  flex: 1;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 0.05rem;
  margin: 0;
}

.icon { font-size: 1rem; }

.refreshBtn {
  background: none;
  border: 1px solid #333;
  color: #888;
  border-radius: 4px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.refreshBtn:hover:not(:disabled) { color: #fff; border-color: #555; }
.refreshBtn:disabled { opacity: 0.4; cursor: default; }

.empty, .loading, .error {
  font-size: 0.8rem;
  color: #666;
}
.error { color: #f44; }

.entries {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.entry {
  background: #111;
  border-radius: 6px;
  overflow: hidden;
}

.entryHeader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 0.8rem;
  text-align: left;
}
.entryHeader:hover { background: #1a1a1a; }

.key {
  font-weight: 600;
  color: #0f0;
  font-family: monospace;
}

.value {
  color: #aaa;
  font-family: monospace;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chevron { color: #555; font-size: 0.7rem; }

.json {
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #0f0;
  background: #0a0a0a;
  border-top: 1px solid #222;
  overflow-x: auto;
  font-family: monospace;
}
