/* Jeden wiersz odstępu między narzędziami a mapą. */
.map-toolbar {
    margin-bottom: 18px;
}

.public-brand { text-decoration: none; }

.cemetery-map { cursor: grab; user-select: none; }
.cemetery-map.is-dragging { cursor: grabbing; }
.place-number {
    font-size: var(--public-number-size, 6px);
    font-weight: 400;
    color: #fff;
    text-shadow: 0 0 1px #000, 0 0 2px #000;
}
.place-numbers {
    opacity: 0;
    transition: opacity .12s ease;
}
.cemetery-map.show-place-numbers .place-numbers { opacity: 1; }
.hotspot.empty polygon { fill: transparent; }
.grave-arrow-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}
.grave-search-arrow {
    fill: #ffd400;
    stroke: #111;
    stroke-width: 3;
    stroke-linejoin: round;
    pointer-events: none;
    filter: drop-shadow(0 2px 2px #0008);
}
.public-map-tooltip {
    position: fixed;
    z-index: 10000;
    width: max-content;
    max-width: min(390px, calc(100vw - 20px));
    max-height: min(70vh, 520px);
    overflow: auto;
    padding: 13px 15px;
    border: 2px solid #d6b400;
    border-radius: 10px;
    background: #111;
    color: #fff;
    box-shadow: 0 8px 28px #0008;
    white-space: pre-line;
    font-size: 14px;
    line-height: 1.45;
    pointer-events: none;
}
