#map {
    height: 650px;
    width: 750px;
}

#info-panel {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1000;
    background: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.custom-popup .leaflet-popup-content-wrapper {
    background: #003A6A;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
}

.custom-popup .leaflet-popup-content-wrapper a {
    color: #1abc9c;
}

.custom-popup .leaflet-popup-tip-container {
    width: 30px;
    height: 15px;
}

.custom-popup .leaflet-popup-tip {
    background: #003A6A;
}

/* img.huechange { filter: hue-rotate(140deg); } */

.marker-pin {
    width: 27px;
    height: 27px;
    border-radius: 50% 50% 50% 0;
    background: #c30b82;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
}

.marker-pin::after {
    content: '';
    width: 21px;
    height: 21px;
    margin: 3px 0 0 3px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
}

.bubble-marker {
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s, height 0.3s;
}

.bubble-marker:hover {
    background-color: #FF4252;
}
