/* @import url("./leaflet.css"); */
@import url("https://unpkg.com/leaflet@1.9.4/dist/leaflet.css");

* {
  margin: 0;
  box-sizing: border-box;
}

#map {
  margin: 0 auto;
  min-height: 600px;
  max-height: 800px;
  height: auto;
  width: 100%;
}

.loading-control{
  background-color: black;
  opacity: 0.5;
  color: white;
  padding: 5px;
  margin: 0 ;
  
}
.copy-button {
  /* background-color: red; */
  background-color: #f5f5f5; 
  border: none; 
  border-radius: 5px;
  color: black; 
  padding: 5px 10px; 
  text-decoration: none;
  font-size: 12px;
  margin: 0 auto; 
  cursor: pointer; 
  
}

.copy-button:hover {
  background-color: #555555;
  color: white;
}

.copy-button-container {
  text-align: center;
  margin: 10px 0;
  
}

.popup-coordinates-container{
  text-align: center;
}

.info-row {
  display: flex;
  justify-content: space-between;
}

.label {
  text-align: left;
}

.value {
  text-align: right;
}