.gme-map-wrapper {
  margin-bottom: 20px;
}
.gme-map-title {
  margin-bottom: 10px;
}
.gme-map-container {
  width: 100%;
  min-height: 400px;
  border: 1px solid #ddd;
}
.gme-map-container .gm-ui-hover-effect {
  position: absolute !important;
  top: -10px;
  right: -10px;
}
.gme-map-container .gm-ui-hover-effect .gme-info-window {
  position: absolute !important;
  right: 0;
}
.gme-filters {
  padding: 15px;
}
.gme-filters select,
.gme-filters input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.gme-filters .filter-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.gme-filters .filter-column {
  flex: 1;
  padding: 0 5px;
  min-width: 150px;
  align-content: end;
}
.gme-filter-button {
  background-color: #ff8800;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  margin-bottom: 10px;
}
.gme-filter-button:hover {
  background-color: #005177;
}
.gme-map-details {
  background: #0000007a;
  color: white;
  position: absolute;
  bottom: 20px;
  z-index: 1;
  margin: 0;
  width: 100%;
  height: 400px;
  text-align: center;
  align-content: center;
}
.gme-map-details.map-details-none {
  display: none;
}
.gme-map-details .gme-location-count {
  font-weight: bold;
}

/* Estilos para la geolocalización */
.gme-geolocation-button {
  margin: 10px;
  cursor: pointer;
  align-content: center;
  transition: background-color 0.3s;
}
.gme-geolocation-button:hover {
  background-color: #f5f5f5 !important;
}
.gme-info-window {
  min-width: 200px;
  padding: 5px;
}
@media (max-width: 768px) {
  .gme-info-window {
    margin-left: -5px;
    min-width: 100%;
  }
  .gme-info-window p {
    margin-bottom: 0;
    line-height: 1.4;
  }
}

.gme-info-window h4 {
  margin: 0 0 8px 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 768px) {
  .gme-info-window h4 {
    font-size: 18px;
  }
}
.gme-info-window p strong {
  font-weight: bold;
}

/* Agregar estilos para selectores deshabilitados */
.gme-filters select:disabled {
  background-color: #f0f0f0;
  cursor: not-allowed;
}

/* Mejorar el estilo del punto de usuario */
.gme-user-location-marker {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Estilos Street View */
.gm-svpc > div {
  position: unset !important;
  transform: scaleX(var(--pegman-scaleX));
  width: 15px;
  height: auto;
  align-content: center;
  margin: auto;
}
