/* ── sidebar.css — Sidebar panel, header, actions ── */

.sidebar-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border-subtle);
  font-size: 13px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 35px;
  padding: 0 8px 0 16px;
  color: var(--text);
  font: 600 11px/1 var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sidebar-actions {
  display: flex;
  gap: 2px;
}

.sidebar-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 4px;
}

.sidebar-action:hover {
  color: var(--text);
  background: var(--hover-overlay);
}

