
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0a0f14;
            color: white;
            overflow: hidden;
        }
        
        .container {
            display: flex;
            height: 100vh;
            position: relative;
        }
        

        
        /* Sidebar */
        .sidebar {
            width: 320px;
            background: linear-gradient(180deg, #0d1b2a 0%, #1a2332 100%);
            display: flex;
            flex-direction: column;
            box-shadow: 2px 0 20px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
        }
        
        .sidebar-header {
            padding: 20px;
            background: linear-gradient(135deg, #0d1b2a 0%, #162938 100%);
            border-bottom: 1px solid rgba(46, 213, 115, 0.2);
        }
        
        .sidebar h1 {
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 400;
            background: linear-gradient(135deg, #2ed573 0%, #1e90ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .search-box {
            position: relative;
            margin-bottom: 20px;
        }
        
        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            opacity: 0.6;
            color: #2ed573;
        }
        
        .search-input {
            width: 100%;
            padding: 14px 14px 14px 40px;
            background: rgba(46, 213, 115, 0.1);
            border: 1px solid rgba(46, 213, 115, 0.2);
            border-radius: 12px;
            color: white;
            font-size: 14px;
            outline: none;
            transition: all 0.3s;
        }
        
        .search-input:focus {
            background: rgba(46, 213, 115, 0.15);
            border-color: #2ed573;
            box-shadow: 0 0 0 3px rgba(46, 213, 115, 0.1);
        }
        
        .advanced-options {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            color: #7bed9f;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .advanced-options:hover {
            color: #2ed573;
        }
        
        .search-button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #2ed573 0%, #1e90ff 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(46, 213, 115, 0.3);
        }
        
        .search-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 213, 115, 0.4);
        }
        
        .search-button:active {
            transform: translateY(0);
        }
        
        /* Results */
        .results {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .results::-webkit-scrollbar {
            width: 8px;
        }
        
        .results::-webkit-scrollbar-track {
            background: rgba(46, 213, 115, 0.1);
        }
        
        .results::-webkit-scrollbar-thumb {
            background: rgba(46, 213, 115, 0.3);
            border-radius: 4px;
        }
        
        .result-count {
            font-size: 14px;
            color: #7bed9f;
            margin-bottom: 16px;
            padding: 12px;
            background: rgba(46, 213, 115, 0.1);
            border-radius: 8px;
            text-align: center;
        }
        
        .result-item {
            background: rgba(46, 213, 115, 0.05);
            border: 1px solid rgba(46, 213, 115, 0.1);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            gap: 12px;
        }
        
        .result-item:hover {
            background: rgba(46, 213, 115, 0.1);
            border-color: rgba(46, 213, 115, 0.3);
            transform: translateX(4px);
        }
        
        .result-thumbnail {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(46, 213, 115, 0.2) 0%, rgba(30, 144, 255, 0.2) 100%);
            border-radius: 8px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .result-info {
            flex: 1;
        }
        
        .result-name {
            font-weight: 600;
            margin-bottom: 4px;
            color: #fff;
        }
        
        .result-coords {
            font-size: 13px;
            color: #7bed9f;
            margin-bottom: 4px;
        }
        
        .result-category {
            font-size: 12px;
            color: #57606f;
        }
        
        .result-payment {
            font-size: 11px;
            color: #1e90ff;
            margin-top: 4px;
        }
        
        .result-actions {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .result-action {
            width: 32px;
            height: 32px;
            background: rgba(46, 213, 115, 0.1);
            border: 1px solid rgba(46, 213, 115, 0.2);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: #2ed573;
        }
        
        .result-action:hover {
            background: rgba(46, 213, 115, 0.2);
            border-color: #2ed573;
        }
        
        /* Map */
        .map-container {
            flex: 1;
            position: relative;
            background: #0a0f14;
        }
        
        #map {
            width: 100%;
            height: 100%;
        }
        
        .map-controls {
            position: absolute;
            right: 20px;
            bottom: 100px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .map-control {
            width: 44px;
            height: 44px;
            background: rgba(46, 213, 115, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(46, 213, 115, 0.2);
            border-radius: 12px;
            color: #2ed573;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .map-control:hover {
            background: rgba(46, 213, 115, 0.2);
            transform: scale(1.1);
        }
        
        .view-toggle {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 12px 24px;
            background: rgba(46, 213, 115, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(46, 213, 115, 0.2);
            border-radius: 12px;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        
        .view-toggle:hover {
            background: rgba(46, 213, 115, 0.2);
            border-color: #2ed573;
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 1001;
            width: 44px;
            height: 44px;
            background: rgba(46, 213, 115, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(46, 213, 115, 0.2);
            border-radius: 12px;
            color: #2ed573;
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }
        
        /* Popup customization */
        .mapboxgl-popup-content {
            background: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(46, 213, 115, 0.3);
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        
        .mapboxgl-popup-content h3 {
            color: #2ed573;
            margin: 0 0 8px 0;
        }
        
        .mapboxgl-popup-content p {
            color: #dfe4ea;
            margin: 0;
            font-size: 12px;
        }
        
        .mapboxgl-popup-close-button {
            color: #2ed573;
            font-size: 20px;
            padding: 0 8px;
        }
        
        .mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
            border-bottom-color: rgba(13, 27, 42, 0.95);
        }
        
        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 40px;
            color: #57606f;
        }
        
        .empty-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            opacity: 0.3;
            color: #2ed573;
        }
        
        /* Loading */
        .loading {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(13, 27, 42, 0.95);
            padding: 20px 40px;
            border-radius: 12px;
            border: 1px solid rgba(46, 213, 115, 0.3);
            z-index: 1000;
        }
        
        .loading.active {
            display: block;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            .sidebar {
                position: fixed;
                left: -100%;
                top: 0;
                height: 100vh;
                z-index: 999;
                width: 85%;
                max-width: 320px;
            }
            
            .sidebar.active {
                left: 0;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .map-container {
                width: 100%;
                height: 100vh;
            }
            
            .view-toggle {
                top: 80px;
                right: 10px;
                padding: 10px 16px;
                font-size: 14px;
            }
            
            .map-controls {
                right: 10px;
                bottom: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .sidebar-header {
                padding: 15px;
            }
            
            .sidebar h1 {
                font-size: 24px;
            }
            
            .results {
                padding: 15px;
            }
            
            .result-item {
                padding: 12px;
            }
            
            .result-thumbnail {
                width: 50px;
                height: 50px;
            }
        }
    