.mobileDropWrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  overflow-y: auto;
  z-index: 9999;
  height: 100vh;
}

.headerside {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  background: white;
  gap: 10px;
  z-index: 9;
}

.headerside h3 {
  flex: 1;
  text-align: center;
  font-size: 18px;
  color: #0678b1;
  margin: 0;
}

.backIcon {
  font-size: 20px;
  cursor: pointer;
  user-select: none;
}

.citySearchBox {
  padding: 10px;
}

.inputBox {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #0678b1;
}

.inputBox i {
  font-size: 18px;
  color: #555;
  cursor: pointer;
}

.inputBox i:first-child {
  margin-right: 10px;
}

.inputBox i:last-child {
  margin-left: 10px;
  color: #0678b1;
}

.inputBox input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #000;
}

.cityListData {
  list-style: none;
  padding: 0;
  height: 300px;
  overflow-y: auto;
  margin: 0 10px;
}

.cityListData li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.cityListData li a {
  text-decoration: none;
  font-size: 15px;
  color: #000;
  font-weight: 400;
}

.cityListData .noMatch {
  text-align: center;
  color: gray;
}

.topCities {
  padding: 0 10px;
}

.topCities h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.topGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topGrid a.cityCard {
  display: block;
  text-decoration: none;
  width: 31%;
  position: relative;
  border: 1px solid #ddd;
  height: 60px;
  border-radius: 5px;
  text-align: center;
  color: white;
  overflow: hidden;
}

.topGrid a.cityCard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.topGrid a.cityCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.topGrid a.cityCard span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 400;
  z-index: 1;
  color: #fff;
}

.otherCities {
  margin-top: 20px;
  padding: 0 10px;
}

.otherCities h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.otherCities ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.otherCities ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.otherCities ul li a {
  text-decoration: none;
  font-size: 15px;
  color: #000;
}
