/* ── FWS Custom Map Marker ── */
.fws-marker {
    background: none !important;
    border: none !important;
}

.fws-marker__dot {
    width: 20px;
    height: 20px;
    background: #2e7d32;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.fws-marker__dot:hover {
    transform: scale(1.3);
}
