/* Custom styles for Leaflet maps */

.leaflet-container {
    font-family: inherit;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}

.leaflet-popup-content {
    margin: 8px 12px;
    line-height: 1.4;
    font-size: 13px;
}

.leaflet-popup-tip {
    background: white;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}

.leaflet-control-zoom {
    border: 2px solid rgba(0,0,0,0.2);
    background: white;
    border-radius: 4px;
}

.leaflet-control-zoom a {
    background: white;
    border-bottom: 1px solid #ccc;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.leaflet-control-zoom a:hover {
    background: #f4f4f4;
}

.leaflet-control-zoom a:last-child {
    border-bottom: none;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    font-size: 18px;
}

/* Ensure map container has proper dimensions */
#map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive design */
@media (max-width: 768px) {
    #map {
        height: 300px;
    }
} 