body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
}

#map {
  height: 100vh;
}

.form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.form-box {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  text-align: center;
}

.form-box input {
  padding: 10px;
  margin: 10px 0;
  width: 100%;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-box button {
  padding: 10px 20px;
  font-size: 16px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.emoji-avatar {
  font-size: 32px;
  line-height: 36px;
  border: 2px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: white;
  text-align: center;
}
.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
  z-index: 999;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.site-footer strong {
  color: #00ffc3;
}
.form-box button:hover {
  background: linear-gradient(45deg, #8c9b91, #3b4745);
  transform: scale(1.05);
}

.form-box .socials {
  margin-top: 20px;
  font-size: 14px;
}

.form-box .socials a {
  color: #000000;
  margin: 0 6px;
  text-decoration: none;
  font-weight: 600;
}

.form-box .socials a:hover {
  text-decoration: underline;
}