.category-picker {
  top: 108%;
  min-width: 200px;
  background-color: #fff;
  border: 1px solid #efefef;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 4px 0px rgba(156, 156, 156, 0.2);
}

.people-picker {
  min-width: 100px;
  position: relative;
}

@media (max-width: 360px) {
  .people-picker {
    min-width: auto;
    width: 100%;
  }
}

.people-picker:hover {
  cursor: pointer;
}

.people-picker-handler {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  color: #000;
}

.people-picker-handler__item {
  white-space: nowrap;
}

.people-picker-handler .people-picker-handler__item:not(:last-child)::after {
  content: "+";
  margin-left: 0.25rem;
}

.people-picker__control {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 21px;
  width: 14px;
}
