		* { margin: 0; padding: 0; box-sizing: border-box; }
		
		body {
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			min-height: 100vh;
			display: flex;
			align-items: center;
			justify-content: center;
			color: #333;
		}
		
		.connect-container {
			background: white;
			border-radius: 20px;
			padding: 40px;
			max-width: 700px;
			width: 90%;
			box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
			animation: slideIn 0.4s ease-out;
		}
		
		@keyframes slideIn {
			from { opacity: 0; transform: translateY(20px); }
			to { opacity: 1; transform: translateY(0); }
		}
		
		.header {
			text-align: center;
			margin-bottom: 30px;
		}
		
		.header h1 {
			font-size: 28px;
			color: #2c3e50;
			margin-bottom: 10px;
		}
		
		.header p {
			color: #7f8c8d;
			font-size: 16px;
		}
		
		.business-grid {
			display: grid;
			gap: 20px;
			margin: 30px 0;
		}
		
		.business-card {
			border: 2px solid #e1e8ed;
			border-radius: 12px;
			padding: 25px;
			transition: all 0.3s ease;
			cursor: pointer;
			position: relative;
		}
		
		.business-card:hover {
			border-color: #667eea;
			box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
			transform: translateY(-2px);
		}
		
		.business-card.selected {
			border-color: #667eea;
			background: #f8f9ff;
		}
		
		.business-info h3 {
			font-size: 20px;
			color: #2c3e50;
			margin-bottom: 8px;
		}
		
		.business-info p {
			color: #7f8c8d;
			margin-bottom: 5px;
		}
		
		.business-type {
			background: #e3f2fd;
			color: #1976d2;
			padding: 4px 12px;
			border-radius: 20px;
			font-size: 12px;
			font-weight: 500;
			display: inline-block;
			margin-top: 10px;
		}
		
		.actions {
			text-align: center;
			margin-top: 30px;
			padding-top: 20px;
			border-top: 1px solid #e1e8ed;
		}
		
		.btn {
			padding: 12px 30px;
			border: none;
			border-radius: 8px;
			font-size: 16px;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.3s ease;
			margin: 0 10px;
		}
		
		.btn-primary {
			background: #667eea;
			color: white;
		}
		
		.btn-primary:hover:not(:disabled) {
			background: #5a6fd8;
			transform: translateY(-2px);
		}
		
		.btn-primary:disabled {
			opacity: 0.6;
			cursor: not-allowed;
		}
		
		.btn-secondary {
			background: #f8f9fa;
			color: #6c757d;
			border: 1px solid #dee2e6;
		}
		
		.btn-secondary:hover {
			background: #e9ecef;
		}
		
		.loading {
			display: none;
			text-align: center;
			margin-top: 20px;
		}
		
		.loading.active {
			display: block;
		}
		
		.spinner {
			border: 3px solid #f3f3f3;
			border-top: 3px solid #667eea;
			border-radius: 50%;
			width: 30px;
			height: 30px;
			animation: spin 1s linear infinite;
			margin: 0 auto 10px;
		}
		
		@keyframes spin {
			0% { transform: rotate(0deg); }
			100% { transform: rotate(360deg); }
		}
