.dropdown-city-container {
  width: 700px;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 38px;
  left: -150px;
  border-top: solid 2px #ddd;
  border-left: solid 2px #ddd;
  border-bottom: solid 2px #ddd;
  max-height: 0px;
  overflow: hidden;
  border-right: solid 2px #ddd;
  transition: 0.5s;
  border-radius: 5px;
  overflow-y: auto;
  scrollbar-width: none;
}

.dropdown-city-container.drop {
  max-height: 3000px;
  transition: 0.5s ease-in-out;
}

.dropdown-city-container .headerbar {
  margin-bottom: 15px;
  margin-top: 15px;
}

.dropdown-city-container .headerbar h3 {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  text-align: center;
}

.citySearchBox {
  padding: 10px 10px;
  display: block;
}

.citySearchBox .inputBox {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 5px;
  padding: 10px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: solid 1px #0678b1;
}

.citySearchBox .inputBox i {
  font-size: 18px;
  color: #555;
  cursor: pointer;
}

.citySearchBox .inputBox i:first-child {
  margin-right: 10px;
}

.citySearchBox .inputBox i:last-child {
  margin-left: 10px;
  color: #0678b1;
}

.citySearchBox .inputBox input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #000;
}

.dropdownList {
  list-style: none;
  padding: 0px;
  margin: 0 20px 20px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  max-height: 220px;
  overflow-y: auto;
  background: #fafafa;
}

.cityItem {
  padding: 10px 16px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}

.cityItem a {
  text-decoration: none;
  color: #444;
  font-size: 15px;
}

.cityItem:hover {
  background-color: #f1f8ff;
  color: #0071bc;
}

.noMatch {
  padding: 12px 16px;
  text-align: center;
  font-size: 15px;
  color: #888;
}

.topCities {
  margin-top: 20px;
  padding: 0px 20px;
}

.topCities h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0071bc;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.topCities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 20px;
}

.topCityItem {
  flex: 1 1 calc(33.33% - 10px);
  padding: 2px 0px;
  transition: 0.3s ease;
}

.topCityItem a {
  text-decoration: none;
  color: #444;
  font-weight: 400;
  font-size: 15px;
}

.bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding: 20px;
  font-size: 16px;
  color: #0071bc;
  cursor: pointer;
  background: #f6f6f6;
}

.bottomLeft {
  font-weight: 500;
}

.bottomRight {
  font-weight: 500;
}

.bottomRight:hover {
  text-decoration: underline;
}

.allCitiesSection {
  margin-top: 10px;
  padding: 0px 20px;
}

.allCitiesSection h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0071bc;
  font-weight: 500;
}

.allCitiesList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.allCityItem {
  flex: 1 1 calc(25% - 10px);
  transition: background-color 0.3s ease;
}

.allCityItem a {
  font-weight: 400;
  font-size: 15px;
  color: #444;
  text-decoration: none;
}
