.topbar {
  height: 68px;
  background: rgba(11, 16, 32, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 90;
}

.topbar__left {
  flex-shrink: 0;
}

.topbar__breadcrumb {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.topbar__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.topbar__center {
  flex: 1;
  max-width: 480px;
}

.topbar__search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 18, 35, 0.88);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 8px 14px;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.topbar__search:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(51, 230, 255, 0.12);
}

.topbar__search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 13px;
}

.topbar__search input::placeholder {
  color: var(--text-tertiary);
}

.topbar__search-icon {
  font-size: 16px;
  color: var(--text-tertiary);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.topbar__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-inverse);
  cursor: pointer;
}
