/* Popup Styles */
.ol-popup {
    position: absolute;
    background-color: white;
    padding: 5px 10px;
    border: 1px solid black;
    border-radius: 10px;
    bottom: 12px;
    left: -50px;
    pointer-events: auto;
    width: auto; /* Let the width adjust automatically */
    display: inline-block;
    box-sizing: border-box;
    white-space: nowrap;
    word-wrap: normal;
    word-break: keep-all;
}

/* Arrow for Popups */
.ol-popup:after, .ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.ol-popup:after {
    border-top-color: white; /* Arrow color matches popup background */
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
}

.ol-popup:before {
    border-top-color: black; /* Border color for the arrow */
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
}

/* Popup Heading and Content */
.popup-heading {
    margin: 5px 10px 0px 10px;
    padding: 0;
    font-weight: bold;
}

.popup-content {
    margin: 0;
    padding: 5px 10px 10px 10px;
}
