
#world-client-map{
    width:100%;
    height:700px;
    border-radius:28px;
    overflow:hidden;
    border:3px solid #F59E0B;
    background:#0B1D3A;
    box-shadow:0 18px 50px rgba(11,29,58,0.35);
}

.leaflet-container{
    background:#0B1D3A;
}

.wcmap-popup{
    min-width:300px;
    font-family:Arial,sans-serif;
    border-radius:16px;
}

.wcmap-popup-inner{
    background:linear-gradient(135deg,#0B1D3A 0%, #102b57 100%);
    color:#fff;
    padding:16px;
    border-radius:16px;
    border:2px solid #F59E0B;
}

.wcmap-popup h3{
    margin:0 0 12px;
    color:#F59E0B;
    font-size:20px;
}

.wcmap-popup .client-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(245,158,11,0.35);
    border-radius:12px;
    padding:12px;
    margin-bottom:12px;
}

.wcmap-popup p{
    margin:6px 0;
    line-height:1.5;
}

.wcmap-popup ul{
    padding-left:18px;
    margin:10px 0 0;
}

.wcmap-popup li{
    margin-bottom:6px;
}

.wcmap-filter-wrap{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
    flex-wrap:wrap;
    background:linear-gradient(135deg,#0B1D3A 0%, #102b57 100%);
    padding:18px;
    border-radius:20px;
    border:2px solid rgba(245,158,11,0.35);
}

.wcmap-filter-wrap label{
    font-family:Arial,sans-serif;
    font-size:16px;
    color:#fff;
}

#wcmap-category-filter{
    min-width:240px;
    padding:12px 14px;
    border:2px solid #F59E0B;
    border-radius:12px;
    font-size:15px;
    background:#fff;
    color:#0B1D3A;
    font-weight:600;
}

.custom-map-marker{
    width:26px;
    height:26px;
    background:#F59E0B;
    border:3px solid #0B1D3A;
    border-radius:50% 50% 50% 0;
    transform:rotate(-45deg);
    box-shadow:0 0 0 5px rgba(245,158,11,0.25);
    position:relative;
}

.custom-map-marker::after{
    content:'';
    width:10px;
    height:10px;
    background:#0B1D3A;
    border-radius:50%;
    position:absolute;
    top:5px;
    left:5px;
}

@media(max-width:767px){
    .wcmap-filter-wrap{
        align-items:flex-start;
        flex-direction:column;
    }

    #wcmap-category-filter{
        width:100%;
    }

    #world-client-map{
        height:500px;
    }
}


/* Remove map tile/grid lines */
.leaflet-tile {
    border: none !important;
    outline: none !important;
}

.leaflet-container img {
    border: none !important;
}

.leaflet-pane,
.leaflet-tile-pane,
.leaflet-overlay-pane {
    transform-style: flat !important;
}

.wcmap-popup-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:14px;
    margin-top:14px;
}

.client-card{
    min-height:120px;
}

.leaflet-popup-content-wrapper{
    border-radius:20px !important;
    padding:0 !important;
    overflow:hidden;
}

.leaflet-popup-content{
    margin:0 !important;
    min-width:320px;
    max-width:700px;
}

.leaflet-popup-tip{
    background:#0B1D3A !important;
}


/* FINAL FIX FOR MAP GRID / SQUARE LINES */
.leaflet-container,
.leaflet-pane,
.leaflet-map-pane,
.leaflet-tile-pane,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-tooltip-pane,
.leaflet-popup-pane {
    background-image:none !important;
}

.leaflet-tile {
    outline:none !important;
    border:none !important;
    box-shadow:none !important;
    image-rendering:auto !important;
}

.leaflet-container svg,
.leaflet-container canvas {
    outline:none !important;
}

.leaflet-tile-container img {
    width:256.5px !important;
    height:256.5px !important;
}

