/**
 * MCNRMapKit -- shared POI marker styling for MCNRMapKit.js's buildPoiLayer().
 * Load via MCNRMapKit::styleTag() (see MCNRMapKit.php).
 */

/* Collapsed stand-in for a dense-category POI marker (Boat/Heli/Plane/
   Skimmer Spawn -- 300+ points combined) while zoomed out -- see
   DEFAULT_DENSE_CATEGORIES in MCNRMapKit.js. Swapped for the real icon past
   the zoom threshold, so this only needs to read as "something is here",
   not identify what. */
.poi-dot-marker {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

/* Default popup content (see defaultPopupHtml() in MCNRMapKit.js) -- a
   caller passing its own popupHtml doesn't need these classes at all. */
.mcnrmapkit-poi-popup-name {
    font-size: 0.85rem;
    font-weight: 600;
}
