
.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: 11rem;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 10;
  max-height: 200px;
  border-radius: 0.5rem;
  overflow-y: auto;
  overflow-x: hidden; /* prevent horizontal scrolling */
  overflow-y: auto;
}


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

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

.dropdown-search input{
    /* width: 100%; */
    height: 2rem !important;
    flex-shrink: 0;
    border-radius: 0.3125rem;
    background: rgba(255, 255, 255, 0.05);
    /* box-shadow: 0px 4px 4px 0px rgba(0, 128, 215, 0.20); */
    /* border: 1px solid #8EB3CC; */
    /* padding: 0rem 0.5rem; */
}
@media (max-width: 768px) {
  .flag-icon {
    width: 1.8rem;
    height: 1.8rem;
  }
  .country-options {
    width: 16rem;
  }
}