* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
}

#map {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
}

#controls {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
}

#info {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

#info h2 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

#location-status {
    font-size: 14px;
    color: #666;
}

#center-location-btn {
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

#center-location-btn:active {
    background: #45a049;
}

@media (max-width: 768px) {
    #controls {
        padding: 12px;
    }
    
    #info h2 {
        font-size: 16px;
    }
    

}

/* Leaflet overrides for better mobile experience */
.leaflet-control-container {
    z-index: 99;
}

.leaflet-control {
    background: white;
    border-radius: 4px;
}
