.topbar {
  min-height: 62px;
  margin-bottom: 16px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--color-surface);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.topbar__menu {
  display: none;
}

.topbar__spacer {
  min-width: 0;
}

.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topbar__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.topbar__action img {
  width: 20px;
  height: 20px;
}

.avatar {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--color-green-soft);
  color: var(--color-green);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding: 8px;
    border-radius: 14px;
  }

  .topbar__menu {
    display: grid;
  }

  .topbar__actions {
    justify-content: flex-end;
    gap: 0;
  }

  .topbar__action {
    display: none;
  }
}
