.google_map_on_list_wrapper {
  position: relative;
}

.ve2-map-overlay-container {
  position: absolute;
  top: 20px;
  left: auto;
  right: 20px;
  background: #ffffff;
  padding: 20px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  z-index: 9999;
  width: 460px;
}

.ve2-location-tabs {
  max-width: 360px;
}

.ve2-loc-tabs-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}

.ve2-loc-tab-btn {
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}

.ve2-loc-tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.ve2-loc-tab-btn.active::after {
  background: #d1c48b;
}

.ve2-loc-tab-panel {
  display: none;
}

.ve2-loc-tab-panel.active {
  display: block;
}

.ve2-location-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ve2-location-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ve2-location-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d1c48b;
  margin-top: 6px;
  flex-shrink: 0;
}

.ve2-location-text {
  color: #555;
  font-size: 14px;
}

@media (max-width: 768px) {
  .ve2-map-overlay-container {
    position: static;
    width: 100%;
    margin-bottom: 16px;
  }

  .ve2-location-tabs {
    max-width: 100%;
  }
}

