.entity-dropdown {
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  margin-top: 4px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 9999;
}

.entity-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 13px;
  cursor: pointer;
}

.entity-row:hover {
  background: #f5f7fa;
}

.entity-icon {
  font-size: 14px;
  width: 20px;
  text-align: center;
}

.entity-label {
  color: #333;
}

/* Selected tags */
.entity-tag {
  display: inline-block;
  background: #eef3ff;
  color: #2b4eff;
  padding: 4px 8px;
  border-radius: 14px;
  font-size: 12px;
  margin: 4px 4px 0 0;
  cursor: pointer;
}

.entity-tag b {
  margin-left: 4px;
  font-weight: bold;
}

/*Forms css*/
.entity-tag {
  background: #f1f3f5;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}

.entity-tag:hover {
  background: #dee2e6;
}

.card {
  border: none;
}

@media (max-width: 768px) {
  .card {
    padding: 20px !important;
  }
}