.cs-city-selector {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-family: inherit;
}

.cs-selected-city {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 150px;
}

.cs-cities-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  max-height: 200px;
  overflow-y: auto;
  z-index: 9999;
}

.cs-city-option {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cs-city-option:hover {
  background: #f2f2f2;
}
