body {
            background-color: #f8f9fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
		.main-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        .order-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .card-header {
            background: #667eea;
            color: white;
            border-radius: 15px 15px 0 0;
            text-align: center;
            padding: 30px 20px;

        }
        .card-body {
            padding: 40px 30px;

        }
        .error-alert {
            border-radius: 10px;
            margin-bottom: 20px;
            border: none;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
        }
        .confirm-btn {
            background: #20c997;
			color: white;
            border: none;
            border-radius: 30px;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
        }
        .confirm-btn:hover {
			background: #28a745;
			color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
        }
        .recaptcha-container {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }
        .error-container {
            text-align: center;
        }
        .error-icon {
            font-size: 60px;
            color: #dc3545;
            margin-bottom: 20px;
        }
        .product-list {
            text-align: left;
            margin: 20px 0;
        }
        .product-item {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            border-left: 4px solid #667eea;
        }
        .product-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }
        .product-details {
            color: #666;
            font-size: 0.9em;
        }
        @media (max-width: 768px) {
            .card-body {
                padding: 30px 20px;
            }
        }