.custom-cluster-icon {
    background-color: #7c3aed;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Dark popup styles */
.leaflet-popup-content-wrapper {
    background-color: #262626;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.leaflet-popup-tip {
    background-color: #262626;
}

.leaflet-popup-content {
    margin: 0;
    width: 300px !important;
}

.leaflet-popup-close-button {
    color: #a3a3a3 !important;
    padding: 8px !important;
}

.dark-popup-title {
    font-weight: 700;
    font-size: 14px;
    padding: 16px 16px 12px 16px;
    margin: 0;
    line-height: 1.4;
    color: white;
    border-bottom: 1px solid #404040;
}

.dark-popup-body {
    padding: 12px 16px;
}

.dark-popup-row {
    display: flex;
    margin-bottom: 8px;
    font-size: 13px;
}

.dark-popup-label {
    width: 80px;
    color: #a3a3a3;
}

.dark-popup-value {
    flex: 1;
    color: #e5e5e5;
    font-weight: 500;
}

.dark-popup-divider {
    height: 1px;
    background-color: #404040;
    margin: 12px 0;
}

.dark-popup-action {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #7c3aed;
    color: white !important;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 16px;
    transition: background-color 0.2s;
}

.dark-popup-action:hover {
    background-color: #6d28d9;
}