.hotspot-wrapper {
    position: relative;
    width: 100%;
}

/* Container alleen rond de afbeelding + hotspots */
.hotspot-image-container {
    position: relative;
    display: inline-block;
}

/* De klikbare hotspot zelf */
.hotspot {
    position: absolute;
    display: block;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 0, 255, 0.6);
    border-radius: 50%;
    /* vierkant houden: breedte bepaalt, hoogte volgt */
    aspect-ratio: 1/ 1;
}

/* Debug overlay */
#coord-display {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,255,0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 999;
}
