.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(480px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.search-icon {
  width: 14px;
  height: 14px;
  border: 2px solid #b1b6ca;
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: #b1b6ca;
  transform: rotate(45deg);
}

.search-box input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.search-box input::placeholder {
  color: #7f859a;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: #d0d4e3;
}

.active-chip {
  background: rgba(255, 255, 255, 0.08);
}

.top-icon,
.avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0.85;
}

.avatar {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #d1d5e8, #8f98bb);
}