.custom-select-wrapper {
  position: relative;
  width: 180px;
  margin-right: 8px;
}

.custom-select {
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  background: white;
  position: relative;
  font-family: sans-serif;
}

.custom-select .selected {
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-select .selected img {
  width: 24px;
  height: 16px;
  object-fit: cover;
}

.custom-select .options {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background: white;
  z-index: 10;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.custom-select.open .options {
  display: block;
}

.custom-select .options li {
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.custom-select .options li:hover {
  background-color: #f0f0f0;
}

.custom-select .options img {
  width: 24px;
  height: 16px;
  object-fit: cover;
}

.form-row-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
