/* Base typography */
body {
  font-family: 'Inter', sans-serif;
}

/* Sidebar toggle state */
.collapsed {
  width: 2.5rem !important;
}

/* Marker popup styling */
.marker-callout {
  max-width: 240px !important;
}

.marker-details {
  transition: all 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  transform: scaleY(0.95);
}

.marker-details.expand {
  max-height: 200px;
  opacity: 1;
  transform: scaleY(1);
}

.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none; 
}

@media (max-width: 639px) {
  #sidebar-wrapper, #sidebarToggle {
    display: none !important;
  }
}
