.interactive-hotspot-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.hotspot-image-wrapper {
    position: relative;
    display: inline-block;
}

.hotspot-background-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.hotspot-marker {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.hotspot-marker .hotspot-indicator {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 0.5);
    border: 2px solid #fff;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.hotspot-marker:hover .hotspot-indicator {
    background-color: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.hotspot-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.hotspot-marker:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
}

.hotspot-tooltip h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.hotspot-tooltip p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.hotspot-tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}