.assignee-field {
  min-width: 0;
  position: relative;
  color: #4d5b6e;
  font-size: 11.3333px;
  font-weight: 700;
}

.assignee-picker {
  position: relative;
  margin-top: 7px;
}

.assignee-picker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 42px;
  padding: 0 11px;
  border: 1px solid #dce2e9;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-size: 12.3333px;
}

.assignee-picker-trigger:focus-visible {
  border-color: #8197b8;
  outline: 0;
  box-shadow: 0 0 0 3px #edf2fa;
}

.assignee-picker-trigger > span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.assignee-picker-arrow {
  flex: none;
  color: #718096;
  font-size: 18px;
  line-height: 1;
}

.assignee-picker-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #cfd8e5;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 14px 34px #1720332e;
}

.assignee-picker-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: stretch;
  border-top: 1px solid #edf0f4;
}

.assignee-picker-option:first-child {
  border-top: 0;
}

.assignee-picker-option:hover,
.assignee-picker-option.selected {
  background: #f2f6fc;
}

.assignee-picker-user {
  min-width: 0;
  padding: 9px 8px 9px 11px;
  text-align: left;
}

.assignee-picker-user strong,
.assignee-picker-user small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.assignee-picker-user strong {
  color: var(--ink);
  font-size: 12.3333px;
  font-weight: 600;
}

.assignee-picker-user small {
  margin-top: 2px;
  color: #7b8798;
  font-size: 9.33333px;
  font-weight: 400;
}

.assignee-favorite {
  display: grid;
  place-items: center;
  min-width: 44px;
  border-left: 1px solid #edf0f4;
  color: #8b96a5;
  font-size: 24px;
  line-height: 1;
}

.assignee-favorite:hover {
  background: #eaf1ff;
  color: #5176bd;
}

.assignee-favorite.active {
  color: #2f6ed8;
}

.assignee-favorite:focus-visible {
  outline: 3px solid #7ba4ed;
  outline-offset: -3px;
}

.assignee-favorite:disabled {
  cursor: wait;
  opacity: .55;
}

.assignee-picker-empty {
  padding: 14px 11px;
  color: #7b8798;
  font-size: 10.3333px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .assignee-picker-menu {
    max-height: 250px;
  }
}
