
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Inter, sans-serif;
}

#map {
  width: 100%;
  height: 100vh;
  
  background-color: #f0f0f0; 
}

#total-count-display {
 position: absolute;
 top: 55px;
 left: 10px;
 z-index: 1000;
 background-color: rgba(255, 255, 255, 0.8);
 padding: 5px 10px;
 font-size: 14px;
 box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
 border: none;
}

.leaflet-top.leaflet-right {
  top: 50px; 
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  z-index: 1100;
}

.top-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 300;
  font-size: 20px;
  color: #555555;
  padding: 10px 15px;
  margin: 0;
  background-color: transparent;
  transition: color 0.3s ease;
}

.top-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #0056b3;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.top-nav a:hover {
  color: #000000;
}

.top-nav a:hover::after {
  width: 90%;
}

.top-nav a.active {
  color: #0056b3;
  cursor: default;
}


.leaflet-marker-pane .leaflet-div-icon {
    background: transparent; 
    border: none;
    font-size: 24px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5), 0 0 3px white;
}


.leaflet-marker-icon.motion-marker {
  transform-origin: center;
}
