/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Map Height */
#map {
  height: 100vh;
  width: 100%;
  z-index: 10;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  font-family: sans-serif;
}

.leaflet-popup-content {
  margin: 10px;
}

/* Animations */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fade 0.3s ease-out forwards;
}
