        .hoa-interactive-map-container {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .hoa-interactive-map-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .hoa-interactive-map-overlay-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .hoa-interactive-map-marker {
            pointer-events: all;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .hoa-interactive-map-marker circle {
            fill: #e74c3c;
            stroke: white;
            stroke-width: 2;
        }
        
        .hoa-interactive-map-marker:hover circle {
            fill: #c0392b;
            r: 8;
        }
        
        .hoa-interactive-map-marker text {
            fill: black;
            font-size: 12px;
            font-weight: bold;
            text-anchor: middle;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease;
			display:none;
        }
        
        .hoa-interactive-map-marker:hover text {
            opacity: 1;
        }
        
        .hoa-interactive-map-tooltip {
            position: absolute;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 14px;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease;
            z-index: 1000;
            white-space: nowrap;
        }
        
        .hoa-interactive-map-tooltip.hoa-interactive-map-visible {
            opacity: 1;
        }
        
        .hoa-interactive-map-info-panel {
            margin-top: 20px;
            padding: 15px;
            background-color: #ecf0f1;
            border-radius: 4px;
            min-height: 60px;
        }
        
        .hoa-interactive-map-info-panel h3 {
            margin-top: 0;
            color: #2c3e50;
        }
        
        .hoa-interactive-map-info-panel p {
            margin: 5px 0;
            color: #555;
        }
        
        .hoa-interactive-map-instructions {
            background-color: #e8f4f8;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            border-left: 4px solid #3498db;
        }
        
        .hoa-interactive-map-instructions h3 {
            margin-top: 0;
            color: #2980b9;
        }
        
        .hoa-interactive-map-instructions code {
            background-color: #fff;
            padding: 2px 6px;
            border-radius: 3px;
            font-family: 'Courier New', monospace;
        }