/* Shared toolbar — keep in sync with src/style.css */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  height: 48px;
  position: relative;
  flex-shrink: 0;
}
.toolbar-left { display: flex; align-items: center; gap: 4px; }
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}
.logo:hover { opacity: 0.88; }
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.logo-icon img { width: 32px; height: 32px; display: block; }
.logo-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.nav-link {
  padding: 6px 12px;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-link:hover { background: #f0f0f0; color: #333; }
.nav-link.active {
  background: #f0f0f0;
  color: #1a1a1a;
  font-weight: 500;
}
.toolbar .nav-link,
.toolbar .logo { text-decoration: none; }
.toolbar .nav-link:hover { text-decoration: none; }
