#map {
  width: 100%;
  height: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.leaflet-popup-content {
  text-align: center;
  font-size: 14px;
}

.leaflet-popup-content a {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.leaflet-popup-content a:hover {
  background-color: #2980b9;
}

.city-name {
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  #map {
    height: 500px;
  }

  h1 {
    font-size: 1.4rem;
  }

  .container {
    padding: 10px;
  }
}
