html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  touch-action: manipulation;
  overscroll-behavior: none;
}

#map {
  height: 100vh;
  width: 100vw;
}
.leaflet-control-attribution {
  font-size: 9px !important;  /* zmniejsz czcionkę */
  opacity: 0.6;                 /* lekko przeźroczyste */
}
#info {
  position: fixed;
  top: 10px;
  left: 30%;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  z-index: 1000;
}
#infoButton {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1001;
  width: 42px;
  height: 42px;
  background-color: #2e2e2e;
  color: white;
  text-align: center;
  line-height: 42px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  font-family: sans-serif;
  transition: background-color 0.3s;
}

#infoButton:hover {
  background-color: #434343;
}


#myButton {
  font-size: 20px;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 24px 70px;
  background: #f50c0c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;
}
#startupModal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

#closeStartupModal {
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #0cbf2c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
