.ia-image-annotation {
    position: relative;
    display: inline-block;
}

.ia-image-annotation img {
    display: block;
    max-width: 100%;
}

.annotation-point {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

/* Smartphone */
@media only screen and (max-width: 480px) {
    .annotation-point {
        width: 5%; 
        height: 7%;
    }
}

/* Tablet */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .annotation-point {
        width: 7%; 
        height: 9%;
    }
}

/* Tablet Landscape */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .annotation-point {
        width: 9%;
        height: 11%;
    }
}


.annotation-popup {
    position: absolute;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1rem;
    width: 350px;
    white-space: normal;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    z-index: 9999;
    font-size: 0.875rem;
    color: #212529;
}

.annotation-popup::before {
    content: '';
    position: absolute;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}