
/* de rode hotspot */
.hotspot {
    position: relative;
    display: inline-block;
    width: 42px;      /* ← BELANGRIJK */
    height: 22px;     /* ← BELANGRIJK */
    z-index: 0;

    background: rgba(255, 0, 0, 0.0);


    font-size: 20px;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    padding: 0px 10px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: 6px solid blue;
    box-shadow: 0 0 4px rgba(0,0,0,0.4);
}

#coord-display {
    pointer-events: none;
}

/* De tooltip wordt uitsluitend door hotspots.js aangestuurd */
.hotspot::after,
.hotspot:hover::after,
.hotspot.show-tooltip::after {
    display: none !important;
}

/* De rode hotspot voor desktop */
@media (min-width: 768px) {
    .hotspot {
        width: 42px;
        height: 22px;
    }
}




