
/* Tiny circular avatars for "Søger/Sælger" chips */
/* Stak "Søger / Sælger" vertikalt og placer til venstre */
.thing-int {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 8px 0; /* lidt luft under */
}

.thing-int .group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.thing-int .btn {
  font-size: 12px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  cursor: pointer;
}
.thing-int .btn.active {
  background: #e0f2fe;
  border-color: #38bdf8;
}
.thing-int .dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}
.thing-int .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
}
.thing-int .dot img {
  width: 140%;
  height: 140%;
  object-fit: cover;
  object-position: 50% 20%;
  transform: translate(-14%, -14%);
}
.thing-int .overflow {
  font-size: 12px;
  line-height: 1;
  padding-left: 2px;
  padding-right: 4px;
  cursor: default;
}
.thing-int .muted {
  font-size: 12px;
  color: #64748b;
}



