
  
        .main-content {
            display: flex;
            flex: 1;
            gap: 20px;
            min-height: 0;
        }
        
        .sidebar_sw {
            width: 250px;
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }
        
        .layer-control {
            margin-bottom: 20px;
        }
        
        .layer-control h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
		.layer-control h2 {
		color: #2c3e50;
		margin-bottom: 20px;
		padding-bottom: 10px;
		border-bottom: 1px solid #eee;
		}

		.layer-buttons {
			display: flex;
			flex-direction: column;
			gap: 8px;
			margin-bottom: 10px;
		}

		.layer-btn {
			padding: 14px;
			background-color: #ecf0f1;
			border: none;
			border-radius: 6px;
			color: #34495e;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.3s ease;
			text-align: center;
			font-size: 1rem;
		}

		.layer-btn:hover {
			background-color: #d6dbdf;
			transform: translateY(-2px);
		}

		.layer-btn.active {
			background-color: #4a90e2;
			color: white;
		}
        
   
     
        
        .status-box {
            background-color: #f8f9fa;
            padding: 10px;
            border-radius: 6px;
            margin-bottom: 15px;
            font-size: 13px;
        }
        
        .status-box.loading {
            background-color: #fff3cd;
            border-left: 3px solid #ffc107;
        }
        
        .status-box.error {
            background-color: #f8d7da;
            border-left: 3px solid #dc3545;
        }
        
        .status-box.success {
            background-color: #d1ecf1;
            border-left: 3px solid #17a2b8;
        }
        
        .data-stats {
            background-color: #f0f8ff;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 15px;
            font-size: 13px;
            border: 1px solid #d1e7ff;
        }
        
        .data-stats h4 {
            margin: 0 0 8px 0;
            color: #2c3e50;
            font-size: 14px;
        }
        
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            padding-bottom: 5px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .stat-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .stat-label {
            color: #495057;
        }
        
        .stat-value {
            font-weight: 600;
            color: #2c3e50;
        }
        
        .stat-total {
            background-color: #e7f3ff;
            padding: 5px 8px;
            border-radius: 4px;
            margin-top: 8px;
            font-weight: 600;
            text-align: center;
        }
        
    
      
          
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
            }
            
            #map {
                height: 400px;
                position: relative;
            }
        }