.image-container {
    text-align: center;
    margin: 20px auto;
    position: relative;
    display: inline-block;
}

.zone-indicator {
    position: absolute;
    width: 22px;
    height: 22px;
    background-color: rgba(128, 128, 128, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* So it doesn't interfere with the map interactions */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
    z-index: 10;
}

area:hover + .zone-indicator {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: rgba(100, 100, 100, 0.8);
    transform: translate(-50%, -50%) scale(1.2);
}

.image-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.image-map {
    max-width: 100%;
    height: auto;
}

.tooltip {
    position: absolute;
    background: linear-gradient(135deg, rgba(40, 40, 80, 0.95) 0%, rgba(20, 20, 40, 0.95) 100%);
    color: white;
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    max-width: 280px;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transform: translateY(10px);
}

.tooltip strong {
    display: block;
    font-size: 18px;
    color: #a68ae7;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(166, 138, 231, 0.3);
    padding-bottom: 5px;
}

.tooltip p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.9);
}

.tooltip.visible {
    visibility: visible;
    opacity: 1;
}

area {
    cursor: pointer;
}
