#mapa_2024 {
  height: 70vh;
  width: 100%;
  background-color: #f2f2f2; /* Fondo gris claro para el mapa */
}

.map-info {
  padding: 6px 8px;
  font: 14px/16px Roboto;
  background: white;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  text-align: center; /* Centrar el contenido */
}

.map-info h4 {
  margin: 0 0 5px;
  color: #777;
}

.legend {
  text-align: left;
  line-height: 18px;
  color: #555;
}

.legend i {
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 8px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .map-info {
    font-size: 12px;
  }
  .legend {
    font-size: 12px;
  }
}

#infoBox {
  position: fixed;
  z-index: 1000;
  background-color: white;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 25px;
  display: none;
  pointer-events: auto;
  width: 300px;
  max-width: 90%;
  text-align: center; /* Centrar el contenido */
}

/* #B9222 ROJO */
/* #661411 ROJO QUEMADO */
/* #008B8B VERDE */
/* #CECECE GRIS BAJO */

.municipio {
  background-color: lightgray; /* Fondo gris BAJO */
  padding: 5px;
  border-radius: 20px 20px 0 0;
  color: black;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 600;
}

#infoBox .direcc_mun {
  font-family: Roboto;
  font-weight: 500;
  font-size: 17px;
  color: #1C1C1C;
  text-align: center;
}

#infoBox .telefono_mun, #infoBox .whatsapp_mun {
  font-weight: bold;
  font-size: 19px;
  color: #1C1C1C;
  text-align: center;
}

#infoBox .da_click {
  font-weight: bold;
  font-size: 20px;
  color: royalblue;
  text-align: center;
  padding-top: 10px;
}

.img-mun {
  padding-bottom: 0px;
}

.btn-primary {
  width: 100%; /* Ocupa todo el ancho */
  font-size: 20px;
  font-family: Roboto;
  font-weight: 700;
  border-radius: 0 0 20px 20px;
  padding-top: 8px;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 15px;
  cursor: pointer;
  font-size: 24px; /* Aumenta el tamaño de la fuente */
}

@media (max-width: 768px) {
  #mapa_2024 {
    height: 300px;
  }
}

/* Estilos para las etiquetas de los municipios */
.municipio-label {
   color: whitesmoke;
  font-weight: bold;
  text-align: center;
  pointer-events: none; /* Hacer que las etiquetas sean no interactivas */
  font-size: 7px; /* Tamaño base de la fuente más pequeño */
}

