.icm-map-container {
    position: relative;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.icm-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: #f5f5f5;
    position: relative;
}

.icm-map .leaflet-container {
    font-family: inherit;
    background-color: #f0f0f0;
}

.icm-map-title {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.icm-map-title h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.icm-error {
    background-color: #fff2f2;
    border: 1px solid #e74c3c;
    border-radius: 4px;
    padding: 15px;
    margin: 15px 0;
    color: #c0392b;
    font-weight: 500;
    text-align: center;
}

.icm-map .leaflet-control-zoom {
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.icm-map .leaflet-control-zoom a {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #333;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-decoration: none;
}

.icm-map .leaflet-control-zoom a:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

.icm-map .leaflet-control-attribution {
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    padding: 2px 5px;
}

.icm-map .leaflet-popup-content-wrapper {
    border-radius: 6px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.3);
}

.icm-map .leaflet-popup-content {
    margin: 15px 20px;
    line-height: 1.5;
}

.icm-map .leaflet-popup-tip {
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .icm-map-container {
        margin: 15px 0;
        border-radius: 2px;
    }
    
    .icm-map-title {
        border-radius: 2px;
        padding: 6px 10px;
    }
    
    .icm-map-title h4 {
        font-size: 13px;
    }
    
    .icm-map .leaflet-control-zoom a {
        width: 28px;
        height: 28px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    .icm-map {
        min-height: 250px;
    }
    
    .icm-map-container {
        margin: 10px 0;
    }
}