
        /* Panorama Özel Stilleri */
        .panorama-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .panorama-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .panorama-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .panorama-image {
            position: relative;
            overflow: hidden;
            height: 200px;
        }
        
        .panorama-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .panorama-card:hover .panorama-image img {
            transform: scale(1.05);
        }
        
        .panorama-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            display: flex;
            align-items: flex-end;
            padding: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .panorama-card:hover .panorama-overlay {
            opacity: 1;
        }
        
        .panorama-title {
            color: #fff;
            font-weight: 600;
            font-size: 1.2rem;
            margin: 0;
        }
        
        .panorama-content {
            padding: 20px;
        }
        
        .panorama-content h3 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: #2a4365;
        }
        
        .panorama-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .btn-panorama {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 15px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s;
            text-decoration: none !important;
            border: none;
        }
        
        .btn-panorama i {
            margin-right: 5px;
        }
        
        .btn-view {
            background-color: #e74c3c;
            color: white;
        }
        
        .btn-view:hover {
            background-color: #c0392b;
            color: white;
        }
        
        .btn-location {
            background-color: #3498db;
            color: white;
        }
        
        .btn-location:hover {
            background-color: #2980b9;
            color: white;
        }
        
        /* Panorama Modal Stilleri */
        .modal-panorama .modal-dialog {
            max-width: 95%;
            height: 90vh;
        }
        
        .modal-panorama .modal-content {
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .modal-panorama .modal-header {
            background-color: #2a4365;
            color: white;
            border-bottom: none;
            padding: 15px 20px;
        }
        
        .modal-panorama .modal-title {
            font-weight: 600;
        }
        
        .modal-panorama .btn-close {
            filter: invert(1);
        }
        
        .modal-panorama .modal-body {
            padding: 0;
            height: calc(100% - 60px);
        }
        
        .panorama-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Yükleniyor Animasyonu */
        .loading-spinner {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
        }
        
        .spinner-border {
            width: 3rem;
            height: 3rem;
            color: #2a4365;
        }
        
        /* Sayfalama Stilleri */
        .pagination-container {
            margin-top: 40px;
            display: flex;
            justify-content: center;
        }
        
        .page-numbers {
            display: flex;
            gap: 8px;
        }
        
        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            background: white;
            color: #4a5568;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .page-link:hover {
            background: #f7fafc;
            border-color: #cbd5e0;
        }
        
        .page-link.active {
            background: #2a4365;
            color: white;
            border-color: #2a4365;
        }
        
        .page-link.dots {
            border: none;
            background: transparent;
            pointer-events: none;
        }
        
        @media (max-width: 768px) {
            .panorama-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .modal-panorama .modal-dialog {
                max-width: 100%;
                height: 80vh;
                margin: 10px;
            }
            
            .panorama-actions {
                flex-direction: column;
            }
            
            .page-numbers {
                flex-wrap: wrap;
                justify-content: center;
            }
        }