/* Venue search map container */
.venue-marker {
    background: transparent;
    border: none;
}

.venue-marker>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Leaflet marker cluster styles */
.marker-cluster-small {
    background-color: rgba(99, 102, 241, 0.6);
}

.marker-cluster-small div {
    background-color: rgba(99, 102, 241, 0.8);
}

.marker-cluster-medium {
    background-color: rgba(79, 70, 229, 0.6);
}

.marker-cluster-medium div {
    background-color: rgba(79, 70, 229, 0.8);
}

.marker-cluster-large {
    background-color: rgba(67, 56, 202, 0.6);
}

.marker-cluster-large div {
    background-color: rgba(67, 56, 202, 0.8);
}

.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-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Leaflet popup customization for venue search */
.leaflet-popup-content-wrapper {
    border-radius: 0.5rem;
    padding: 0;
}

.leaflet-popup-content {
    margin: 0;
    font-family: inherit;
}

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