/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


 #inari-locator-wrap{
  display: flex;
  gap: 15px;
}

#inari-map{
  width: 65%;
  height: 550px;
  border-radius: 12px;
}

#inari-list{
  width: 35%;
  height: 550px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px;
}

.inari-item{
  padding: 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.inari-item:hover{
  background: #f7f7f7;
}

.inari-item.active{
  background: #e9f5ff;
  border-left: 4px solid #007cba;
}

.inari-direction{
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  font-weight: bold;
  color: #007cba;
}

