.rcs-aff-typeahead {
  position: relative;
  z-index: 20;
  margin-top: 4px;
  border: 1px solid var(--border, rgba(148, 163, 184, 0.35));
  border-radius: 8px;
  background: var(--panel, #111827);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.rcs-aff-typeahead__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-bottom: 1px solid var(--border, rgba(148, 163, 184, 0.15));
  background: transparent;
  color: var(--text, #f9fafb);
  text-align: left;
  cursor: pointer;
}

.rcs-aff-typeahead__item:last-child {
  border-bottom: 0;
}

.rcs-aff-typeahead__item:hover,
.rcs-aff-typeahead__item:focus-visible {
  background: color-mix(in srgb, var(--accent, #38bdf8) 12%, transparent);
  outline: none;
}

.rcs-aff-typeahead__label {
  font-size: 0.92rem;
  font-weight: 600;
}

.rcs-aff-typeahead__hint {
  font-size: 0.75rem;
  color: var(--muted, #94a3b8);
}

.rcs-aff-field {
  position: relative;
}

[data-theme="light"] .rcs-aff-typeahead {
  background: var(--panel, #fff);
}
