      .container-scene {
            display: flex;
            flex-direction: column;
            height: 70vh;
            padding: 0px 5px;
        }
        
        .streetview-container {
            flex: 1;
            display: flex;
            position: relative;
            overflow: hidden;
        }
        
        .panorama-viewer {
            flex: 1;
            background: #333;
            position: relative;
            overflow: hidden;
            cursor: move;
        }
        
        .panorama-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .panorama-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.5) 100%);
            pointer-events: none;
        }
        
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            z-index: 10;
            transition: all 0.2s;
        }
        
        .nav-arrow:hover {
            background: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
            transform: translateY(-50%) scale(1.05);
        }
        
        .nav-arrow.left {
            left: 20px;
        }
        
        .nav-arrow.right {
            right: 20px;
        }
        
        .nav-arrow i {
            font-size: 24px;
            color: #5f6368;
        }
        
 
        
        .zoom-controls {
            position: absolute;
            right: 20px;
            bottom: 20px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 10;
        }
        
        .zoom-btn {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: white;
            cursor: pointer;
            color: #5f6368;
            font-size: 20px;
            transition: background 0.2s;
        }
        
        .zoom-btn:hover {
            background: #f8f9fa;
        }
        
        .zoom-btn:first-child {
            border-bottom: 1px solid #eee;
        }
        
        .info-panel {
            width: 380px;
            background: #F4F5FA;
            border-left: 1px solid #dadce0;
            padding: 20px;
            overflow-y: auto;
            box-shadow: -2px 0 5px rgba(0,0,0,0.1);
            z-index: 5;
        }
        
        .info-section {
            margin-bottom: 25px;
        }
        
        .info-title {
            font-size: 18px;
            font-weight: 500;
            color: #1a73e8;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        
        .info-content {
            font-size: 14px;
            line-height: 1.5;
            color: #5f6368;
        }
        
        .info-item {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }
        
        .info-icon {
            color: #1a73e8;
            margin-right: 10px;
            margin-top: 2px;
        }
        
        .image-thumbnails {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 10px;
        }
        
        .thumbnail {
            border-radius: 4px;
            overflow: hidden;
            height: 80px;
            cursor: pointer;
            position: relative;
            border: 2px solid transparent;
            transition: all 0.2s;
        }
        
        .thumbnail:hover {
            border-color: #1a73e8;
            transform: translateY(-2px);
        }
        
        .thumbnail.active {
            border-color: #1a73e8;
            box-shadow: 0 4px 8px rgba(26, 115, 232, 0.2);
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .thumbnail-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.6);
            color: white;
            padding: 4px;
            font-size: 11px;
            text-align: center;
        }
        
        .navigation-hint {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 10;
        }
        
        .navigation-hint i {
            color: #8ab4f8;
        }

     


            .floating-title {
                position: absolute;
                top: 9px; 
                left: 50%;
                transform: translateX(-50%);
                background: rgba(0,0,0,0.6);
                color: #1a73e8;
                padding: 8px 15px;
                border-radius: 5px;
                text-align: center;
                z-index: 10;  
                font-family: Arial, sans-serif;
                font-weight: bold;
                font-size: 16px;
                pointer-events: none; 
            }
 
            .floating-title .subtitle {
                font-size: 12px;
                opacity: 0.8;
            }

         
        #panoLoader {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: sans-serif;
            font-size: 18px;
            color: #fff;
            background: rgba(0, 0, 0, 0.6);
            padding: 15px 30px;
            border-radius: 8px;
            z-index: 100;
            display: none; /* hidden by default */
        }
        #panoLoader::after {
            content: '';
            display: block;
            width: 24px;
            height: 24px;
            margin: 10px auto 0;
            border: 3px solid #fff;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @media (max-width: 1024px) {
            .info-panel {
                width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .streetview-container {
                flex-direction: column;
            }
            
            .info-panel {
                width: 100%;
                height: 300px;
                border-left: none;
                border-top: 1px solid #dadce0;
            }
            
            .nav-arrow {
                width: 50px;
                height: 50px;
            }
        }
 
