#map {
    width: 100%;
    height: 100%;
}

.custom-marker {
    width: 25px;
    height: 41px;
    position: relative;
}

.custom-marker svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Ensure leaflet controls are accessible on mobile */
@media (max-width: 768px) {
    .leaflet-control-zoom {
        margin-right: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .leaflet-control-zoom a {
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
        font-size: 18px !important;
    }
    
    .leaflet-bar {
        border: 2px solid rgba(0,0,0,0.2) !important;
    }
}

@media (max-width: 480px) {
    .custom-marker {
        width: 22px;
        height: 36px;
    }
    
    .leaflet-control-zoom {
        margin-right: 8px !important;
        margin-bottom: 8px !important;
    }
    
    .leaflet-control-zoom a {
        width: 28px !important;
        height: 28px !important;
        line-height: 28px !important;
        font-size: 16px !important;
    }
}