.location-picker-container {
  position: relative;
  width: 100%;
  font-family: sans-serif;
  z-index: 990;
}

.location-picker-input-wrapper {
  display: flex;
  align-items: center;
  background: #c4c4c4;
  border-radius: 999px;
  padding: 6px 12px;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
  height: 46px;
  font-size: 20px;
}

.location-picker-input-wrapper--white {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #c3c3c3;
  padding: 6px 12px;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
  height: 46px;
  font-size: 20px;
}

.location-picker-input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 13px;
  cursor: text;
  color: #111;
  width: 100%;
  font-size: 17px;
}

.location-picker-input-wrapper--white .location-picker-input {
  border-right: 1px solid #c3c3c3;
  border-radius: 0;
}

.location-picker-input::-moz-placeholder {
  color: #555;
}

.location-picker-input::placeholder {
  color: #555;
}

.location-picker-icon-location,
.location-picker-icon-action {
  color: #444;
  cursor: pointer;
  flex-shrink: 0;
}

.location-picker-input-wrapper--white .location-picker-icon-action {
  padding: 0 5px;
}

.location-picker-dropdown {
  position: fixed;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow-y: auto;
  padding: 0;
  display: none;
  z-index: 9999;
  margin-top: 0px;
}

.location-picker-empty {
  padding: 12px 16px;
  text-align: center;
  color: #888;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.location-picker-group {
  font-weight: bold;
  background-color: #f5f5f5;
  cursor: pointer;
  border-bottom: 1px solid #c3c3c3;
}

.location-picker-city-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-picker-city {
  font-size: 16px;
  color: #333;
}

.location-picker-state {
  font-size: 14px;
  color: #666;
  background: #e0e0e0;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: normal;
}

.location-picker-option {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.location-picker-option:last-child {
  border-bottom: none;
}

.location-picker-option-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-picker-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f0f0;
}

.location-picker-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.location-picker-details {
  flex: 1;
  min-width: 0;
}

.location-picker-local {
  font-weight: 600;
  color: #333;
  font-size: 15px;
  margin-bottom: 2px;
}

.location-picker-location {
  color: #666;
  font-size: 13px;
}

.location-picker-group:hover,
.location-picker-option:hover {
  background-color: #e8f4fd;
}

.location-picker-group:hover .location-picker-state {
  background: #d0e8f7;
}

.location-picker-option:hover .location-picker-local {
  color: #0066cc;
}

.location-picker-category {
  text-align: left;
  padding: 0.5rem 0 0.5rem 1rem;
  color: white;
  background-color: #4d4d4d;
}

.location-picker-option {
  background-color: #fff;
}

.location-picker-city-info {
  padding: 0.5rem;
}
