/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Map container */
#map {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Ensure Leaflet controls are visible */
.leaflet-control-container {
    z-index: 1000;
}

/* Make sure the zoom control is always visible */
.leaflet-control-zoom {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.4);
}

/* Make sure the location marker is clearly visible */
.leaflet-marker-icon {
    z-index: 1001;
}
