/* Custom Marker Styles */
.custom-div-icon {
    background: transparent;
    border: none;
}

.custom-marker {
    position: relative;
    padding: 8px;
    background: white;
    border: 2px solid #3388ff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    min-width: max-content;
}

.event-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #ff3838;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.marker-icons {
    display: flex;
    flex-direction: row;
    gap: 6px;
    padding: 4px;
    background: #3388ff;
    border-radius: 4px;
}

.marker-icons i {
    color: white;
    font-size: 14px;
}

/* Popup Styles */
.marker-popup {
    padding: 10px;
}

.popup-categories {
    margin-bottom: 10px;
}

.category-item {
    display: inline-block;
    margin: 2px 4px;
    padding: 2px 6px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 12px;
}

.category-item i {
    margin-right: 4px;
    color: #3388ff;
}

.popup-info {
    border-top: 1px solid #eee;
    padding-top: 8px;
}

.popup-info p {
    margin: 4px 0;
    color: #666;
}

/* Cluster Customization */
.marker-cluster {
    background: rgba(51, 136, 255, 0.6);
    border: 2px solid #3388ff;
}

.marker-cluster div {
    background: rgba(51, 136, 255, 0.8);
    color: white;
    font-weight: bold;
}
