/* Header en navigatie */
.bw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  background-color: var(--bw-bg);
  border-bottom: 1px solid var(--bw-border);
}
.bw-header-left .bw-logo img {
  height: 40px;
}
.bw-main-menu {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
.bw-main-menu .bw-menu-item {
  margin-right: 16px;
}
.bw-main-menu .bw-menu-item a {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}
.bw-main-menu .bw-menu-item a:hover {
  background-color: var(--bw-border);
}
.bw-menu-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.bw-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bw-language-switcher {
  display: flex;
  gap: 4px;
}
.bw-language-switcher .bw-lang-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
}
.bw-language-switcher .bw-lang-option img {
  width: 16px;
  height: 12px;
  margin-right: 2px;
}
.bw-auth {
  display: flex;
  gap: 8px;
  align-items: center;
}

.bw-auth a {
  font-size: 14px;
  color: var(--bw-primary);
}
.bw-auth a:hover {
  text-decoration: underline;
}