
.custom-country-dropdown {
  position: relative;
  cursor: pointer;
}

.selected-country {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;

  background: #fff;
}

.flag-icon {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: cover;
  border-radius: 50%;
}

.country-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 7rem;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 10;
  max-height: 150px;
  overflow-y: auto;
}

.country-option {
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.country-option:hover {
  background-color: #f0f0f0;
}

