/* ── Toolbar ──────────────────────────────────────── */

#toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: var(--bg-toolbar);
  border-bottom: 1px solid var(--border-panel);
}

.toolbar-home {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  z-index: 1;
}

.toolbar-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-secondary);
}

.toolbar-home:hover .toolbar-title {
  color: var(--text-bright);
}

.toolbar-btn {
  background: none;
  border: 1px solid var(--border-btn);
  color: var(--text-secondary);
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.toolbar-btn:hover {
  background: var(--bg-hover);
  border-color: var(--border-btn-hover);
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
