<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.map {
    height: 400px;
    width: 100%;
    background-color: #FFFFFF;
}

.popover {
    width: 300px;
}

/* Custom popup styles for map feature popover */
#popup {
    position: relative;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-size: 12px;
    line-height: 1.4;
    min-width: 200px;
    max-width: 300px;
    display: none; /* Hidden by default */
}

/* Visible state for popup */
#popup.popup-visible {
    display: block;
}

/* Style for links within popup */
#popup a {
    color: #0066cc;
    text-decoration: none;
}

#popup a:hover {
    text-decoration: underline;
}

/* Strong text styling within popup */
#popup strong {
    font-weight: bold;
}</pre></body></html>