/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overscroll-behavior-y: contain;
}

/* Map container */
.leaflet-container {
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Bottom sheet */
.bottom-sheet {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}
/* Navbar styles */
custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

custom-navbar .logo {
  font-weight: bold;
  font-size: 18px;
  color: #3B82F6;
}

/* Safe area padding */
@supports (padding: max(0px)) {
    .safe-area {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
}

/* Tap targets */
button, .tap-target {
    min-width: 48px;
    min-height: 48px;
}