        .custom-order-button {
            display: inline-block;
            margin-top: 10px;
            padding: 12px 20px;
            background: #007bff; 
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            border-radius: 8px;
            border: none; 
            outline: none; 
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
            transition: background 0.3s, transform 0.2s;
            cursor: pointer;
        }

        .custom-order-button:hover {
            background: #0056b3; 
            color: white !important;
            transform: scale(1.05);
        }

        .custom-order-button:active {
            background: #004999;
            transform: scale(1);
        }

        .custom-order-button:focus {
            outline: none; 
        }
