/* Public Styles for LCC Custom Maps */

.lcc-custom-map {
    width: 100%;
    height: 700px;
    overflow: hidden;
    margin-bottom: 0px;
}

/* Style for map pins */
.lcc-map-pin {
    background-color: #000000;
    /* Red color for pins */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.custom-map-label {
    background-color: white;
    padding: 2px 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 921px) {
    .lcc-custom-map {
        height: 525px;
        /* Smaller height for tablet devices */
    }
}
@media (max-width: 700px) {
    .lcc-custom-map {
        height: 400px;
        /* Smaller height for mobile devices */
    }
}