/* Reset default margins */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #f2f2f2;
}

/* Navbar styling */
nav {
  background: seagreen;
  color: white;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.logo {
  font-weight: bold;
  font-size: 1.3em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffea00;
}

#map {
  width: 100%;
  height: calc(100vh - 60px);
  margin-top: 60px;
  border-top: 2px solid #0078d7;
}
