html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#map {
  position: relative;
  overflow: hidden;
  touch-action: none;
}

#mapcontainer {
  padding-top: 56px;
  float: right;
}

#footer {
  width: 24px;
  position: absolute;
  bottom: 0;
  padding-left: 5px;
}

.popover-content {
  width: 500px;
  font-size: 0.9rem;
}

.popup-distance {
  color: #17a2b8;
  font-weight: 600;
}
.popup-distance span {
  font-weight: 400;
  color: #555;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-selector {
  position: relative;
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px;
  gap: 4px;
}

.lang-btn {
  padding: 6px 16px;
  border: none;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}
.lang-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.1);
}
.lang-btn.active {
  background-color: rgba(255, 255, 255, 0.95);
  color: #17a2b8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#distance-control {
  position: absolute;
  bottom: 24px;
  right: 16px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 10px 16px 8px 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  min-width: 220px;
  max-width: 270px;
  display: none;
}
#distance-control.visible {
  display: block;
}
#distance-control .dc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 8px;
}
#distance-control .dc-title {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
}
#distance-control .dc-badge {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #17a2b8;
  border-radius: 20px;
  padding: 1px 10px;
  min-width: 52px;
  text-align: center;
}
#distance-control .dc-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #555;
  cursor: pointer;
  margin-bottom: 4px;
}

#rango-distancia {
  width: 100%;
  accent-color: #17a2b8;
  cursor: pointer;
  height: 4px;
  margin: 2px 0 0 0;
}

#geo-status {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #888;
  margin-top: 4px;
  gap: 4px;
}
#geo-status.error {
  color: #dc3545;
}

#geo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a745;
  display: inline-block;
  flex-shrink: 0;
}
#geo-dot.loading {
  background: #ffc107;
  animation: pulse 1s infinite;
}
#geo-dot.error {
  background: #dc3545;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
#dc-municipios {
  display: none;
  margin-top: 7px;
  padding-top: 6px;
  border-top: 1px solid #e0e0e0;
  font-size: 11px;
  color: #555;
  line-height: 1.5;
  overflow: visible;
  transition: height 0.25s ease;
}
#dc-municipios.visible {
  display: block;
}
#dc-municipios .dc-muni-label {
  font-weight: 600;
  color: #17a2b8;
  display: block;
  margin-bottom: 2px;
}
#dc-municipios strong {
  color: #0d6efd;
  font-weight: 700;
}

/*# sourceMappingURL=styles.css.map */
