/* Contest map (assets/js/contest-map.js). Marker geometry follows
   docs/map_formats.md §9.5: a 30x30 teardrop, white border, glyph
   counter-rotated so it sits upright inside the rotated pin. */

.fishy-contest-map-wrap {
    margin-top: 8px;
}

.fishy-contest-map {
    height: 420px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.fishy-map-pin-wrap {
    background: transparent;
    border: none;
}

.fishy-map-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 50% 50% 50% 4px;
    transform: rotate(-45deg);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .45);
}

.fishy-map-pin i {
    transform: rotate(45deg);
    color: #fff;
    font-size: 13px;
}

.fishy-contest-map .leaflet-popup-content {
    font-size: 13px;
}
