#clients-map {
    width: 100%;
    height: 600px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.data-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    z-index: 1000;
}

.client-marker {
    background: #1860A1;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.client-marker .marker-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1860A1;
}

.client-popup {
    padding: 15px;
    max-width: 300px;
}

.client-popup .client-testimonial {
    font-style: italic;
    margin-bottom: 10px;
    color: #333;
}

.client-popup .client-info {
    color: #1860A1;
    font-size: 14px;
}

/* Marker cluster styles */
.marker-cluster {
    background-clip: padding-box;
    border-radius: 20px;
}

.marker-cluster div {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-top: 5px;
    text-align: center;
    border-radius: 15px;
    font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
    color: white;
    font-weight: bold;
}

.marker-cluster span {
    line-height: 30px;
}

.marker-cluster-small {
    background-color: rgba(79, 129, 189, 0.6);
}

.marker-cluster-medium {
    background-color: rgba(79, 129, 189, 0.8);
}

.marker-cluster-large {
    background-color: rgba(79, 129, 189, 0.9);
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.leaflet-popup-tip {
    background: white;
}

.leaflet-popup-close-button {
    display: none;
}

/* Custom map controls */
.map-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1;
}

.map-controls button {
    display: block;
    width: 30px;
    height: 30px;
    margin: 5px 0;
    border: none;
    background: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-controls button:hover {
    background: #e9ecef;
}

.map-controls button.active {
    background: #007bff;
    color: white;
} 