body {
    scroll-behavior: smooth;
  }
  #map {
    transition: all 0.3s ease-in-out;
    border-radius: 1rem;
  }


.mapboxgl-popup {
  background: transparent !important;
  box-shadow: none !important;
}

.mapboxgl-popup-content {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.building-marker {
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  transition: transform 0s ease;
}
.building-marker:hover {
  transform: scale(1.2);
}

.user-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.marker-label {
    font-size: 12px;
    font-weight: 600;
    color: #007bff;
    background: white;
    padding: 2px 6px;
    border-radius: 6px;
    margin-bottom: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.marker-icon {
    width: 32px;
    height: 32px;
}




