.custom-dropdown {
  display: inline-block;
  position: relative;
  width: 200px;
  font-family: Arial, sans-serif;
}
.custom-dropdown__input-container {
  display: flex;
  align-items: center;
  border: 1px solid grey;
  border-radius: 5px;
  padding: 4px 5px;
  background-color: #fff; /* Ensure background color matches the list */
  overflow: hidden;
}
.custom-dropdown__flag {
  margin-right: 8px; /* Adjust margin as needed */
}
.custom-dropdown__input {
  flex-grow: 1;
  border: none;
  outline: none;
  cursor: pointer;
  padding-left: 0; /* Remove padding to align with the flag */
}
.custom-dropdown__list-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  border: 1px solid #ccc;
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 5px;
}
.custom-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.custom-dropdown__list li {
  padding: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.custom-dropdown__list li:hover {
  background-color: #f0f0f0;
}
.custom-dropdown__list img {
  margin-right: 8px;
}
.custom-dropdown__list-container.show {
  display: block;
}