/* Small, responsive hint for map hotspots */
#mapHint {
    position: absolute;
    top: 50%;
    left: 0.5rem;
    transform: translateY(-50%);
    z-index: 1020; /* Above map controls */
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 0.5rem;
    border-radius: 24px;
    font-size: 1rem;
    display: flex;
    gap: 8px;
    align-items: center;
    backdrop-filter: blur(4px);
    max-width: calc(100% - 48px);
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

@media (min-width: 1400px) {
    #mapHint {
        left: 10% !important;
    }
}

#mapHint .hint-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#mapHint button {
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    padding: 4px 8px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 13px;
}

/* Small pulse helper for visual cue over the image (non-exhaustive) */
.map-pulse {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.95);
    box-shadow: 0 0 0 6px rgba(255,193,7,0.12);
    z-index: 1018;
    pointer-events: none;
    display: none;
}
