/* Chips/valgte varer */
.rx-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.rx-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef2ff;
  border: 1px solid #dbeafe;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}
.rx-chip:hover { background: #e0e7ff; }
.rx-chip-x { font-weight: 700; line-height: 1; }

/* Dropdown */
.rx-ac-box {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-top: none;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  display: none;
  max-height: 320px;
  overflow: auto;
}
.rx-ac-list { list-style: none; margin: 0; padding: 4px 0; }
.rx-ac-item { padding: 10px 12px; cursor: pointer; line-height: 1.25; }
.rx-ac-item:hover, .rx-ac-item.is-active { background: #f3f4f6; }

/* Input kan være CF7 sitt standardfelt */
#rx-search { width: 100%; }
