.toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 60px;
  height: 60px;
  background: #dde3eb;
  z-index: 1000;
  user-select: none;
  transform: translateZ(0);
  contain: layout paint;
  will-change: transform;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.toolbar__inner {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 60px;
  padding: 0 36px 0 110px;
  box-sizing: border-box;
}

.toolbar__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 180px;
  transition: none;
}

.toolbar__logo-link:hover {
  opacity: 0.85;
}

.toolbar__logo {
  height: 36px;
  width: 160px;
  object-fit: contain;
  display: block;
}

.toolbar__nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toolbar__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.toolbar__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.toolbar__nav-item + .toolbar__nav-item {
  margin-left: 6px;
  padding-left: 6px;
}

.toolbar__nav-item + .toolbar__nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(15, 23, 42, 0.2);
}

.toolbar__nav-link {
  padding: 8px 14px;
  border-radius: 6px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: none;
}

.toolbar__nav-link:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #000;
}

.toolbar__nav-link--active {
  color: #000;
  background: rgba(0, 0, 0, 0.1);
}

.toolbar__nav-link--active:hover {
  background: rgba(0, 0, 0, 0.12);
}

.toolbar__nav-link--admin {
  color: #ff006e;
  font-weight: 600;
}

.toolbar__nav-link--admin:hover {
  color: #ff4d9a;
}

.toolbar__nav-link--admin.toolbar__nav-link--active {
  color: #ff4d9a;
}

.toolbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 80px;
  justify-content: flex-end;
}

@media (prefers-reduced-motion: reduce) {
  .toolbar__logo-link,
  .toolbar__nav-link {
    transition: none;
  }
}


.toolbar__user-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 8px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transition: none;
}

.toolbar__user-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #000;
}

.toolbar__user-btn svg {
  width: 22px;
  height: 22px;
}

.toolbar__mobile-nav-link--logout {
  color: #cf222e;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 8px;
  padding-top: 16px;
}

.toolbar__mobile-nav-link--logout:hover {
  color: #a40e26;
  background: rgba(207, 34, 46, 0.08);
}

.toolbar__mobile-nav-link--admin {
  color: #cf222e;
  font-weight: 600;
}

