    #elevationView {
            text-align: center;
        }
        .elevation-header {
            margin: 2rem 0;
        }
        .elevation-header h2 {
            font-weight: 300;
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .elevation-header p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }

        .elevation-image-preview {
            position: relative; /* This is crucial for positioning children inside it */
            display: inline-block;
            max-width: 100%;
        }
        .elevation-image-preview img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* --- CSS FIX #1: Corrected Hotspot Styling --- */
        /* Hotspots must be transparent and have no default size.
           Their dimensions and position are set dynamically by the JavaScript. */
        .elevation-hotspot {
            position: absolute;
            background: rgb(0 0 0 / 21%); /* Start transparent */
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        .elevation-hotspot:hover {
            background: rgba(0, 123, 255, 0.25);
            border: 2px dashed #007bff;
        }
        
        /* Unchanged Tooltip Style */
        .elevation-tooltip {
            position: absolute;
            display: none;
            background-color: #333;
            color: #fff;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 1rem;
            white-space: nowrap;
            z-index: 1010;
            pointer-events: none; /* Allows mouse events to pass through */
            line-height: 1.4;
            text-align: left;
        }
        .elevation-tooltip strong {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        /* ── label inside each elevation-hotspot ── */
.elevation-hotspot::before{
    content: attr(data-label);
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 0 3px rgba(0,0,0,.65);
    white-space: nowrap;
    pointer-events: none;               /* ensures clicks reach the link */
}

 
 /* FLOOR PLAN SECTION CSS */

        .plan-header h2 {
            font-weight: 300;
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .plan-header p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }

         .plan-header {
            text-align: center;
        }


 /* FLOOR PLAN SECTION CSS END */
