
/*
 * markerMap styles in unhighlighted state.
 */
.custom-cluster {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 2px solid #6D6D80;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #6D6D80;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

    .custom-cluster .fa {
        margin-right: 5px;
        border-radius: 50%;
    }

.cluster-count {
    font-size: 12px;
    color: #6D6D80;
}
.markerMap {
    align-items: center;
    border-radius: 50%;
    color: #263238;
    display: flex;
    font-size: 14px;
    gap: 15px;
    height: auto;
    justify-content: center;
    padding: 4px;
    position: relative;
    position: relative;
    transition: all 0.3s ease-out;
    width: 30px;
}

    .markerMap::after {
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-top: 9px solid #FFFFFF;
        content: "";
        height: 0;
        left: 50%;
        position: absolute;
        top: 90%;
        transform: translate(-50%, 0);
        transition: all 0.3s ease-out;
        width: 0;
        z-index: 1;
    }

    .markerMap .icon {
        align-items: center;
        display: flex;
        justify-content: center;
        color: #FFFFFF;
    }

        .markerMap .icon svg {
            height: 20px;
            width: auto;
        }

    .markerMap .details {
        display: none;
        flex-direction: column;
        flex: 1;
    }

    .markerMap .address {
        color: #9E9E9E;
        font-size: 10px;
        margin-bottom: 10px;
        margin-top: 5px;
    }

    .markerMap .features {
        align-items: flex-end;
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

        .markerMap .features > div {
            align-items: center;
            background: #F5F5F5;
            border-radius: 5px;
            border: 1px solid #ccc;
            display: flex;
            font-size: 10px;
            gap: 5px;
            padding: 5px;
        }

    /*
 * markerMap styles in highlighted state.
 */
    .markerMap.highlight {
        background-color: #FFFFFF;
        border-radius: 8px;
        box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
        padding: 8px 15px;
        width: auto;
    }

        .markerMap.highlight::after {
            border-top: 9px solid #FFFFFF;
        }

        .markerMap.highlight .details {
            display: flex;
            max-height: 400px;
            overflow-y: auto;
        }

        .markerMap.highlight .icon svg {
            width: 50px;
            height: 50px;
        }
