body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#map {
    height: 100vh;
    width: 100%;
    background: #f0f0f0;
}
#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-weight: bold;
    color: #FF4500;
}
.custom-popup .leaflet-popup-content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-left: 5px solid #FF4500;
}
.leaflet-interactive {
    transition: all 0.3s ease;
}