.custom-dropdown,
.custom-dropdown-mobile {
  position: relative;
  display: inline-block;
  min-width: 140px;
}

.custom-dropdown-mobile {
  min-width: auto;
}

.selected-option,
.option {
  min-height: 50px;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
}

.selected-option {
  border: 1px solid white;
}

#selected-option-desktop:hover {
  background-color: #ffffff;
  color: black;
}

/* Set the initial position to right: 0; */
#custom-options-mobile {
  right: 0;
}

/* Specific style for mobile selected option */
#selected-option-mobile {
  padding: 0px;
  border: none;
  justify-content: center;
}

.options {
  min-width: 140px;
  display: none;
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  border: 1px solid white;
  z-index: 10 !important;
  box-sizing: border-box;
}

.option:hover {
  background-color: #ffffff;
  color: black;
}

.flag-icon {
  margin-left: 10px;
}
