/* 自定义地图标记样式 */
.custom-marker {
    background: transparent;
    border: none;
}

.marker-pin {
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    position: relative;
    animation: pulse 2s infinite;
}

.marker-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.8), 0 0 0 10px rgba(255, 107, 53, 0.1);
    }
    100% {
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    }
}

/* 自定义弹出框样式 */
.custom-popup-container .leaflet-popup-content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 0;
    min-width: 200px;
}

.custom-popup-container .leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-top: none;
    border-right: none;
}

.custom-popup {
    padding: 16px 20px;
    text-align: center;
}

.custom-popup h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.custom-popup .popup-type {
    margin: 0;
    font-size: 14px;
    color: #ff6b35;
    font-weight: 500;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.leaflet-popup-content {
    margin: 0;
}
.leaflet-top, .leaflet-bottom{
    z-index: 999!important;
}