body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #eef;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.placeholder {
  width: 100%;
  height: 600px;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
}

.plaats {
  display: inline-block;
  margin: 10px;
  padding: 8px 12px;
  background-color: #0077be;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  position: relative;
  transition: background-color 0.3s, transform 0.3s;
}

.plaats:hover {
  background-color: #005f99;
  transform: scale(1.1);
  animation: weatherPulse 1s infinite;
}

@keyframes weatherPulse {
  0% { box-shadow: 0 0 5px #00f; }
  50% { box-shadow: 0 0 20px #0ff; }
  100% { box-shadow: 0 0 5px #00f; }
}
