/**
 * Recipient autocomplete dropdown (To/Cc/Bcc)
 */
.recipient-suggest {
  position: fixed;
  z-index: 1100;
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-height: 280px;
  overflow: hidden;
}

.recipient-suggest__list {
  overflow-y: auto;
  max-height: 280px;
  padding: 4px 0;
}

.recipient-suggest__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text, #1f2937);
}

.recipient-suggest__item:hover,
.recipient-suggest__item--selected {
  background: var(--color-bg-secondary, #f3f4f6);
}

.recipient-suggest__avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.recipient-suggest__avatar-initial,
.recipient-suggest__avatar .recipient-suggest__avatar-initial {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.recipient-suggest__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipient-suggest__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.recipient-suggest__name {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recipient-suggest__email {
  font-size: 12px;
  color: var(--color-text-secondary, #6b7280);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
