/* Base styles and CSS reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Map container */
#map {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* Hide Google Maps UI elements */
.gm-ui-hover-effect {
    display: none !important;
}

.pac-container:after {
    display: none !important;
}

/* Common utility classes */
.hidden {
    display: none !important;
}

.no-scroll {
    overflow: hidden;
}

/* Z-index scale */
:root {
    --z-map: 1;
    --z-controls: 100;
    --z-panels: 200;
    --z-tooltip: 500;
    --z-modal: 1000;
    --z-loading: 10000;
}

/* Google Maps InfoWindow styling - minimal interference */
/* Just ensure it appears above our control panels */
.gm-style-iw {
    z-index: var(--z-tooltip) !important;
}